Log in Sign up

Questions

Ask question

Link to latest post

Hello! I have a page with an image. How can I add a link that always points to the latest post?

How to manage files after switching from Drive to Dropbox

I've moved my site's synced folder from Google Docs stored in Google Drive to markdown files in Dropbox. Putting markdown files into Dropbox is working just fine - they are rendering on the site. And our old posts are also still rendering on the site, which is also great. However I can't figure out how we might edit / delete those old posts - the Drive folder is disconnected, but they aren't in the Dropbox folder either. How can we do some file management there? Ideally I'd be able to replace the GDoc originally published with a markdown file with the same url slug metadata into Dropbox.

Org-mode links to other Org files?

In emacs, I can auto-fill the [[file:...]] style link from a set of known files. The problem is when linking to org-mode files, it looks something like [[file:foo.org]] but this doesn't work with blot's internal linking system. So I have to remove the .org to something like [[file:foo]] which does work with blot. The problem now is that org-follow-link does not resolve without the missing extension.

Adding a tag-based indictor after {{Previous}} and {{Next}}

I use the following on the archives page to put a unicode arrow after a linkpost: <div class="column left"> <a href="{{{url}}}">{{title}} {{#tagged.linkpost}} ⇾ {{/tagged.linkpost}} </a> </div> I tried to use the same method within the Next and Previous sections shown below, but it showed the unicode arrow next to every post. My guess is that it's getting the Next/Previous values at pageload, but may not have visiblity to the tags for those entries to be able to handle what I'm trying to accomplish in the Previous and Next area. Is it possible? <div class="column rightpostfooter"> {{#tags}} <a class="small tag" href="/tagged/{{slug}}">{{name}}  </a> {{/tags}}<br> {{#date}} <span class="small">{{date}}</span> {{/date}}<br> {{#next}} <a class="link" href="{{{url}}}"><span class="smalllink">{{title}}</span></a> {{/next}}<br> {{#previous}} <a class="link" href="{{{url}}}"><span class="smalllink">{{title}}</span></a> {{/previous}}<br> </div>

Previous 1 35 36 37