Questions
Does my draft have a URL I can share?
Setting Draft: true in the metadata gets me a rendered HTML file as a sibling of the source. Is the draft article also exposed at a URL I can share?
Scope of tag names
I'm a bit confused about the scope of tag names from the Reference page: For example, the reference lists blog.title and entry.title, but on the entries.html they don't seem to work for me. However the unqualified title does work.
Show a random post?
Along with {{#previous}}{{/previous}} and {{#next}}{{/next}}, is there a way to show a random post / entry from the blog?
Change chronological order of posts?
Currently the way things seem to be set up for showing entries (i.e. #all_entries) is they're in reverse chronological order. Is there a way to sort by chronological order? Thanks! Ray
Custom heading IDs?
Does Blot support Markdown’s custom heading IDs? For example, using iA Writer it is possible to change the ID assigned to a heading when it's turned into HTML like so: ### This is a heading with a lot of text [short-id] You'll then be able to link to #short-id instead of the full heading title.
Hide tags on the header of the Diary template
I use the Diary theme and between the blog title on the left and the header menu on the right, it shows tags from my posts. How can I turn this off? I don't want the tags to be there. If they are under the post, that's perfectly fine with me.
Commento not showing up
Hi! I just signed up for Commento, added my URL (https://russbonchu.site) and checked off the box here in the services page, but it's not showing up. i also put their code snippet at the end of my post. Does it take some time?
What files are expected in a template?
As the title says, I've looked at some of the templates but they have different number of files and I didn't see anything about this in the documentation (but I'm sure that I've missed something).
How to install a third-party script on a template?
Can you give an example of how to add a javascript library to a site?
A way to ignore markdown processing
Is there a way to flag a section of markdown to not be processed by blot? For example, let's I wanted to include a section of pure HTML inside the markdown, so it might look like this: regular markdown <div class="do-not-process"> Line </div> more regular markdown As it is currently, blot will process the following and spit out: <p>regular markdown</p> <div class="do-not-process"> <p>Line</p> </div> <p>more regular markdown</p> The extra <p> inside the div is causing problems for the mermaid diagram tool. It looks for a div with the class of mermaid, and inside that div does not expect any <p> tags. When it encounters them, it throws a syntax error. A workaround right now is uploading pages as HTML files but that isn't a desired workflow. Thanks!
Sidenotes instead of footnotes
Is there any way to make footnotes appear at the side of where they're being referenced instead of at the bottom of the post?
Archives for specific tags or metadata
I'd like to generate archives for a specific tag (i.e. memories for which archives would be perfect because of calendaring). Since {{#tagged.memories}} only seems to work inside {{entries}} in the example below (it generates empty headers for months without tagged entries), is there another way to tweak this to make it so? Or at least hide the empty months, years, etc. that show up? Thanks! Ray {{#archives}} <h2>{{year}}</h2> {{#months}} <h3>{{month}}</h3> {{#entries}} <a href="{{url}}">{{title}}</a> {{/entries}} {{/months}}
CSS and JS files in folders not working
Hi there, I'm building a custom template and am trying to point link css and js files within folders but they are not being picked up. I've triple-checked the link e.g href="css/main.css" but it doesn't work. It does work when I delete the "css/" and move the file to the same directory as the rest of the files. Am I missing something? I'm wondering whether it's a limitation of the platform. Thanks in advance!
Hide specific tags from search results
Hi, is there a way we can hide specific tagged entries showing up in search results? I tried this: {{#query}} {{^entries}} <p>Sorry, nothing found for “{{query}}”</p> {{/entries}} {{/query}} {{#entries}} {{^tagged.jotfeed}} <a href="{{url}}">{{title}}</a> <span class="small">{{date}}</span> <br /> {{/tagged.jotfeed}} {{/entries}} ..and it doesn't seem to work? Thanks! Ray
Where does the local development version of blot point to?
Hey, I want to develop my theme locally. I followed the directions on setting up a local dev environment but when I load the site it's pointing to a blank "Example" install. This seems wrong since an empty install isn't userful for theme development. Where do I need to put some files to show content in my theme so I can actually see stuff to develop against?
Where's the dropbox template folder?
Hey there, I want to develop my own theme locally, not in the blot online template editor. But I can't find the theme in my Dropbox folders at all - those only appear to be the posts. Suggestions?
How create a second blog?
I would like to know how create a second blog using the same domain. E.g. : www.mysite.com.br (domain main) and blog.mysite.com.br would be the second blog. It is possible?
Latest update date
Hello, is it possible to have a message on the homepage saying something like "Latest update on: " and have the date of the latest blog entry displayed there? Thanks!
How to have a custom 404 page?
Currently if the page doesn't exist, I am shown: `Error with your template Blot failed to render your template. Please try again or contact support if this problem continues: contact@blot.im`