Updated a few things with the Micro.blog publishing backend, including a new āRebuildā button on the Account ā āView logsā page. Useful for doing a slower, complete sync of your blog if anything was accidentally out of date.
Updated a few things with the Micro.blog publishing backend, including a new āRebuildā button on the Account ā āView logsā page. Useful for doing a slower, complete sync of your blog if anything was accidentally out of date.
@manton hi Manton, congrats on the email newsletters rollout recently. Is it possible to show an excerpt at the bottom of a longer post, e.g. so that readers have to click "read more" to view the full post? (like this).
I was thinking might be handy for some of my longer posts, like one I just posted.
@jasraj No, that's not currently possible. If you're using weekly/monthly emails, you could post a summary as a new post and then use categories to exclude the full-length post. In the future, we may want more control over the email template so truncation could be controlled.
@jasraj @frostedechoes @crossingthethreshold Oh yeah, thanks for clarifying. I was just talking about newsletters.
@frostedechoes Thank you Robert. I didn't know about this. Good to know if I 'theme switch.'
@manton @crossingthethreshold @frostedechoes thank you all, I hadn't made it so clear in my original question to Manton, but I was actually asking about the blog itself (not newsletters), so this is very useful to know! I hadn't realised this.
ps. I'm a fan of the theme @pimoore (and others) use, I've asked him about it previously... I hadn't realised he was its developer :)
@jasraj @manton @crossingthethreshold @frostedechoes Thatās correct, Tufte has the option to enter a post summary using a shortcode. This has different font formatting which will show on both the index page and the article page itself. When I have posts with a summary I manually enter the <!--more-->
tag immediately afterward, and that will truncate the post on the index page at that point.
So in Markdown you would have the following:
# Post title
{{< summary >}}Summary (tl;dr) here{{< /summary >}}<!--more-->
Post starts hereā¦
If you donāt include a summary with a titled post, it will truncate after a certain length so long as it doesnāt split a word or html tag.
@pimoore hi Pete, I'm experimenting with the Tufte theme. How might I change the 'reply by email' mail-to address at the bottom of each post, from the custom email provided to my own?
@jasraj Thanks for checking out Tufte! That parameter can be changed in the config.json template, just scroll down to the bottom where you see āmailtoā: and change the email address in the second set of quotes to yours (leave the quotes in). Also right above that is the subtitle parameter which you can also change to be whatever you want.
@pimoore @jasraj Is it possible to make the "reply by email" feature available in other themes? Via a plugin? I don't want to enable comments on my photoblog but want a way for someone to get in touch with me if they need to.
@pimoore @pratik @jasraj I managed to get it to work on my blog, and helped two others do the same. A plug-in would be perfect, as no fiddling would be needed, and Iām not even sure if this trick works on all themes, but Iām willing to share the way I got it to work, if that helps. Itās very VERY much based on Tufteās implementation, and it requires some editing of the layouts, but it works.
@pratik š Here you go: Reply by Email.
Please let me know if itās clear, itās a work in progress, as usual.
@maique Much thanks and looks straightforward. Except I don't have a config.json file in the theme (Kiko) I'm using right now. Am I already obsolete?
@pratik Oops! Thatās one question I donāt know how to reply to, sorry. Iām using a very slightly modified Kiko, and it was there š Maybe some of the others can help here? My knowledge only goes this farā¦
@pratik In your custom theme, you can create a new template called config.json with just the field you want to customize and Micro.blog will automatically merge it into the default config.
@maique Thank you! š Your well-written instructions inspired me to build the plug-in. By the way, you may want to change ?subject=Reply to
to ?subject=Reply%20to%20
in your template. Read here for an explaination. @pratik