Questions
A bookmarklet to help with link blogging
How the tool works: navigate to a website, click the bookmarklet, enter your caption and recieve a text-file. For example, let's say you visit example.com and press the bookmarklet. You'll recieve a text file called Example.txt containing the following: [Example](http://example.com) Your caption here How to install this bookmarklet Make a new bookmark in your browser (right-click on the bookmarks bar and click Add Page...) For the "Name" you might put "Save link". Copy the code block below, paste this into the "URL" or "Location" of the new bookmark. javascript:(function () { var caption = window.prompt("Would you like to add a caption?"); if (caption === null) return; var textToSave = `[${document.title}](${window.location.href})\n\n${caption}`; var textToSaveAsBlob = new Blob([textToSave], { type: "text/plain" }); var textToSaveAsURL = window.URL.createObjectURL(textToSaveAsBlob); var fileNameToSaveAs = document.title + ".txt"; var downloadLink = document.createElement("a"); downloadLink.download = fileNameToSaveAs; downloadLink.innerHTML = "Download File"; downloadLink.href = textToSaveAsURL; downloadLink.onclick = (e) => document.body.removeChild(e.target); downloadLink.style.display = "none"; document.body.appendChild(downloadLink); downloadLink.click(); })();
Add description to tag?
Is there a way to add a description to a tag so that when viewing domain.com/tagged/tagname a block of text could be included?
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: <h1>{(entry.title}}</h1> 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?
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 !
Importing posts from Micro.blog?
Hi. I am on microblog and am interested in finding the easiest way to export my posts and images. Micro.blog offers a markdown export but they also offer a few others like Wordpress WXR. I anticipate the easiest would be the markdown export and then edit the posts especially with images. Has anyone exported microblog posts into blot? Thanks!
Remove certain tagged posts from #next
Hello. I have this block of code in entry.html. Is it possible to not show posts with a certain tag inside of next? {{#next}} <div class="up-next"> <p class="small small-caps last-updated">up next</p> {{#thumbnail.medium}} <div class="up-next-thumbnail"> <img src="{{{url}}}" width="256px"> </div> {{/thumbnail.medium}} <a href="{{{url}}}">{{title}}</a> <p class="up-next-summary">{{summary}}…</p> </div> {{/next}}
Any plans for an iCloud Drive client?
I know a Google Drive sync tool is in the works, but I was wondering if it would be feasible on iCloud and if there are any plans to develop this alternative to Dropbox.
500 Internal Server Error
Is the server down now? New post uploading and template editing keep failing.
Is there a way to embed one text file within another one?
I have a snippet of text I would like to appear in multiple places around my site. Is there a way I can 'include' it in the content of pages or reference it directly from a custom template? I know I could create a partial within my template but I'm trying (for now) to keep content and structure seperate.
Fork unsupported templates?
I am just getting started with Blot and would like to fork an unsupported template. I've previously tinkered around with that but recently with the changes to the blot site, I'm finding myself unable to access the "Fork" button on that Unsupported Templates page. The only button available to me is the "Preview" button. Is anyone experiencing the same? Does anyone know of a workaround? I would like to preview and fork specifically the Essay Old and Essay Two templates.
How to hide 'digital garden' posts from front page?
Hi! Is it possible to hide 'digital garden' posts from my front page? I want to only show blog-style posts, but my 'evergreen' digital garden posts are also appearing on the front page. I want to be able to link to digital garden posts, but not show them on front page or in archive. Thanks!
Error when I save my CSS on the template editor?
There seems to be an issue with modifying stylesheets. Every time I try to save changes to a css file (in any of my themes), I get this: 500 Internal Server Error Any help with this would be appreciated. Thanks!
Useful Shortcuts.app recipes?
Are you willing to share any Shortcuts you use to simplify your publishing workflow?
Use images from custom host instead of thumbnails
I'd love to use blotcdn for all my images for its convenience, but I find it extremely slow and unstable to access in mainland China if internet proxy not used. Therefore, I have to host all my images on a domestic cloud server, and embed them one by one in separate markdown files. For each individual post/entry, it works fine. However, the Portfolio template I'm using, still generates thumbnails from the embedded images and host them on blotcdn for the homepage and archives. I checked the fitted-grid.html file and tried to modify the and but have no idea what property should I refer to. Is there a way to use the original images from my cloud server for all the pages (homepage, archives, etc.)?
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
Embedding the file's updated date?
Is there something I could put into the markdown of an entry to get the Updated date for that entry? I know I could maintain a date in the metadata, but I was wonder if there is some tag or whatever I could use to have that date automatically set with the last save date of the markdown file.
Only show tags with a minimum number of posts?
Is there a way to show a list of tags only if there's a minimum number of posts (say three) tagged as such? I'm looking to do this to show a list of tags without cluttering it up too much and only showing those with a minimum number of tagged posts. Thanks. Ray
Titles of pages in the header
I've set up pages as explained, in a Pages folder, but the titles are not the file names, but rather the first sentence of the files, like a post excerpt.
Recent Entries not working
So I have a markdown file where I want to show some recent entries at the end. According to the reference, this should work: {{#recent_entries}} <p><a href="{{url}}">{{title}}</a><br> {{#date}}<span itemprop="datePublished" content="{{dateStamp}}">{{date}}</span>{{/date}}</p> {{/recent_entries}} But it doesn't, unfortunately. I just get a blank space where the recent entries should be. :( Also, the reference says it shows the 30 most recent posts. That's too many for my needs. Is there a way to limit that to 5? Thanks!
Add dark mode to magazine template?
How can I add dark mode (based on device settings) to the magazine template? I can't figure it out because colors are defined in the template editor settings. Much appreciated, Ray