Developers
132 questions tagged ‘Developers’
What does it mean to 'fork' a template?
On the templates page of the dashboard – what does 'fork' mean under each template?
Linking a citation to the bibliography
How difficult would it be to have this feature? When I enter [@citation] in my post, the resultant text is a link within the page that sends you down to the bibliography.
Center display equations rather than left-aligned?
I would like for display formulas to float at the centre of the column, rather than stick to the left. Is there an easy fix for this?
Keeping footnotes?
I am using the Magazine template of which I love the Bignotes. But I would also like the footnotes to be visible at the bottom of the page. Is this possible? Thanks in advance
Applying CSS to PDF embeds?
I'd like to change the width of PDF iframe embeds – would it be possible to add a class to these so I can target them?
Adding a membership site?
Is there a way to add a members-only paywall for a Blot blog? Thanks! Hani
Prevent hyphenated titles?
I’m using the Magazine template but many of my titles now appear with hyphenated words on the main page. Is there a way to stop this from happening? Thanks in advance
Different styles for different pages?
I was wondering if it would be possible to use the 'Blog' template for most of my website, whilst also having some pages on my website using the 'Portfolio' template. Is this possible? How can it be done if so?
Can I make one or more posts “sticky” at the top of the homepage?
I’m using the Blog template. Thanks!
Page with Tag
I'm trying to make a custom page that includes a list of posts with a certain tag. I've tried following the instructions on this page, but without success. Here's my code for now.html: <!DOCTYPE html> <html> {{> head}} <body> {{#allEntries}} {{#tagged.Now}} <p><a href="{{{url}}}">{{title}}</a></p> {{/tagged.Now}} {{/allEntries}} </body> </html> I also added this to package.json; { "now.html": { "partials": { "title": "Now - {{{title}}}", "description": "What's up right now." } } } And sitemap.xml: <url> <loc>{{blogURL}}/now/</loc> </url> But heydingus.net/now still leads to a 404. Am I doing something wrong?