Questions
How to activate SSL certificate
Hi everyone. New user here. I tried searching but couldn't find this. My blog with custom domain does not have HTTPS. How can I enable this? Thanks !
How to display post title on home / entries page
I was able to get the title to display on the entry itself by adding this line to the top of the entry.html template: {(entry.title}} However, on the home page where all entries are shown, there's no titles, which makes it hard to tell one post from another. How can I add the titles to the entries page too? Thanks!
rss defined by YAML front matter?
I have been trying various ways to have an rss feed defined by a YAML category holding the information about the language in which the post is written. Is there a way to achieve this? I got it to work with tags but would prefer that category not to show as a tag. Any pointers will be much appreciated.
Google blocked Blot?
Google blocked blot so I cant connect to my drive and update my site. has this happened to anyone else and how did you get around it?
How can I connect Blot to a Codeberg repo?
Codeberg is an alternative to Github and can also be linked to Github. I would like to make my Blot website based on a Codeberg repo. How can I do that?
Incoming links from Medium rendering source files?
I created an "About" page on Medium (https://medium.com/@lev.lc/about) with several inline links back to my Blot site notes. However, I noticed that all the links render as .md files, including the landing page of my site, which has never happened before. Is this a feature of how Medium handles outbound links, or is it a feature of Blot? I notice that medium adds ?source=parameters to the links... Has anyone linked to their Blot sites from Medium or perhaps had a similar experience with other platforms?
Sort pages by modified data / custom metadata
Hi! Is there a way to sort entries by modified date, or by some custom numeric metadata field in posts? For example, if I have something like: {{#allEntries}} {{#tagged.Home}} <li><a href="{{url}}">{{title}}</a></li> {{/tagged.Home}} {{/allEntries}} Can I specify the order in which these entries appear? Even the ability to sort by modified date might be enough, since I can "touch" each file to put them in the correct order. Thank you!
Link format ignores settings?
I can't seem to make Blot use the filename (both {{name}} or {{name-without-extension}}) as default link — it keeps processing the file title. My folder has markdown files with yaml front-matter titles, I wish to use title: for page metadata, but I don't want the longer URLs or filling the parameters for link: for every file. Is this a bug? I tried to reset the folder - it didn't work.
Bluesky Embedding Support?
Hello, I'm an avid Blot user. I currently find the Twitter/X post embedding feature very useful for my writing on Blot. As I've recently started using Bluesky alongside Twitter, I was wondering if it would be possible to add support for embedding Bluesky posts, similar to how Twitter posts can be embedded. Given the steady growth in Bluesky's user base, I believe adding Bluesky post embedding functionality would be beneficial for many users. I would greatly appreciate it if you could consider this feature request. Thank you for your time.
How to edit templates locally?
Hey everyone, where can I find the option to edit locally? I duplicated several templates to try to find that option, even went through the site source to try to find it.
Three months without support
I'm sorry after three months without support and a broken site, I've decided to cancel the subscription and to try and look for an alternative. It's a pity because I like the unique simplicity of this publishing model—this is how the web should be for ordinary folks. Good luck.
KaTeX server side rendering?
Hey! I remember that it was possible to enable TeX server side rendering, but now I can't find this option under Publishing settings. Is this still available? Blot uses KaTeX on the server side and does not require the visitor to enable JavaScript
Rearranging Site Pages?
On the old Blot.im site it was easy to rearrange the order of our website's pages as they appeared at the top of our template. I'm struggling to find out where/how to do this on the new Blot.im site. Any help appreciated
Issue editing site menu?
I see to edit the menu it's not under editing your template the website. However the section does not seem to be usable in the browser. Everything is all over the place and it's hard to click things because of odd alignments. Is there a way to edit menus when just editing a template locally?
List 5 most recent entries
I am working on a static homepage and part of that I would like to have a section where It just lists the 5 most recent posts with no summary. Output would be something like: TITLE posted on DATE I tried just getting list of all entries as a start but just showing blank area {{#recent_entries}} <p><a href="{{url}}">{{title}}</a></p> {{/recent_entries}}
Template colors reverting?
I changed the 3 colors (background, nav background, accent) in the template on the web, but anytime I publish a change to a page it reverts. Any help?
Fallback thumbnail?
Is there a way to set a default thumbnail image that will be used for posts without an image attached?
Sitemap not getting fetched on Search Console.
When I'm trying to add sitemap to my search console, it's not fetching it. URL: https://deeeen.xyz/sitemap.xml
Creating a Drop Cap in the Blog Template
Just thought I would share what worked for me for those looking to do the same thing. Add to your CSS file. /* Drop Cap */ .entry > p:first-of-type::first-letter { color: #A52A2A; float: left; font-size: 3em; margin: .1em .1em .1em .1em; line-height: 0.85; }