summaryrefslogtreecommitdiffstatshomepage
path: root/templates (unfollow)
Commit message (Collapse)AuthorLines
2021-06-24templates: Simplify Tera blocksWolfgang Müller-4/+4
We don't need to reference the block name in the 'endblock' statement if blocks are not nested.
2021-06-24templates: Add "about" link to the first postWolfgang Müller-0/+1
The first post has information on what to expect from this site. Since it will scroll further and further down, make sure we reference it for quick access.
2021-06-16Use CSS to hide titles on single post pagesWolfgang Müller-1/+1
This removes a branch from the template and also makes sure that screen readers and similar software still get access to the post title even if we want to hide it on the presentational layer.
2021-06-16Use "title" class for the header in the bannerWolfgang Müller-1/+1
This improves the readability and consistency of the CSS.
2021-06-16templates: Make page titles mandatoryWolfgang Müller-3/+3
Currently we allow empty post titles, gracefully falling back to a default value. This increases complexity somewhat. Since we think we'll always be able to think of a title for a post, make it mandatory for now to provide one.
2021-06-16templates: Pass article class in render_post macroWolfgang Müller-9/+5
Instead of using boolean arguments to control the article class (and which parts of the article are rendered), accept a class string that is used directly. For now, check for the right class before rendering a title - an upcoming commit will change this to be cleaner.
2021-06-16Remove special handling for draft postsWolfgang Müller-1/+0
This feature was only used once for testing.
2021-06-16templates: Only render post title in the feedWolfgang Müller-3/+3
We can get rid of the post title in the banner since the base template now renders it in the main banner whenever we show a single post.
2021-06-16templates: Fix up some issues with whitespace controlWolfgang Müller-4/+4
This makes the HTML source slightly nicer.
2021-06-16Use CSS to add spacersWolfgang Müller-7/+16
Currently, we pad certain elements with manual interpunct spacers that are defined in the templates themselves. This is suboptimal for a number of reasons. Templates should be used for textual or semantic data, not presentation. Additionally, we have no good control over how whitespace characters will end up being rendered. Adding or deleting spacers is a nightmare. To fix this, use CSS to render spacers instead. To that end, introduce a couple of HTML elements in the top banner and keep supplementary links in a list inside a <nav> element. Add a spacer mixin that can be applied to any element that needs it.
2021-06-16templates: Do not show slogan on all pagesWolfgang Müller-6/+5
Currently we show the slogan both on the index as well as all sub-pages. This needs some special handling in the template, since the page description for the index is empty (the slogan takes its place). Simplify the template further by making sure description is always set, and set it to the slogan only on the index page.
2021-06-16templates: Consolidate blocks into base templateWolfgang Müller-38/+26
This is the first in a series of commits that will attempt to clean up and simplify the templates, most of which were put together hastily. One particular egregious example of this is how Tera blocks are employed to set per-page titles, provide banner descriptions and links, and include additional RSS feeds. These elements are all outside the normal 'content' block provided by the base template. Almost always they contain only one line of text. This solution was chosen because there did not seem to be a cleaner way of having per-page variables in the base template. This is a problem especially for the 'single' and list' taxonomy pages which do not even have front matter (and therefore cannot carry additional metadata). Furthermore, we want to keep each page's front matter as minimal as possible and avoid hard-coding a post description of "post № <X>". Instead rely on the fact that each type of page is identifiable in the base template by the variables that are set in it. The index carries the 'section' variable, pages carry 'page', a single taxonomy term carries 'term', and a single taxonomy carries 'terms'. Using this information we can consolidate all these blocks into the base template in a simple and clean way.
2021-06-12templates: Set mute class on banner's <h2>Wolfgang Müller-1/+1
This way we do not have to specify the color in its selector.
2021-06-12Put post titles in the bannerWolfgang Müller-5/+3
Post titles are currently only visible in the feed, or on the post page itself. Since people may remember posts by their titles rather than their number, display the titles on each post's banner as well for easier searching. This means we can now get rid of the extra item in the post page's description. A neat side effect is that we now have a header element for each <article>, making W3C a bit happier.