aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-12ref: some CSS tweaks to make the site more readableFranck Cuny1-6/+4
Set the color to something lighter, closer to white. Increase the size of the font. Add a small border with color for h2 headers.
2022-10-29ref(style): simplify further the style of the siteFranck Cuny1-2/+2
Get rid of the footer and the icons. Set a light background color, and simplified the listing of the pages.
2022-01-23CSS: switch from class to idFranck Cuny1-5/+5
These elements are unique on each page.
2022-01-23layout: no need for a class to element 'article'Franck Cuny1-1/+1
2022-01-23layout: proper TOCFranck Cuny1-4/+13
There's a need for two TOCs in the layout: one for when the page is on mobile; one for non mobile. When we are on mobile, we display the first TOC, before the article. When we're not on mobile, we hide that TOC and display one after the document. We restructure a bit the layout so that's it's a bit more readable too, and close tags properly.
2022-01-21post: change formatting for the dateFranck Cuny1-4/+4
2021-08-23CSS: use decoration on headers only for articlesFranck Cuny1-2/+6
Add an element "article" to the single page template, and change the CSS to use the decoration for headers only for that kind of content. Having decoration for all headers is distracting, it's more suited for actual content. We also don't need decoration for h1, only smaller headers.
2021-08-15CSS: support table of contentFranck Cuny1-0/+7
If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page.
2021-04-22layout: add a navbarFranck Cuny1-2/+0
I want to differentiate blog's entries from more general notes. For this, we create two menu entries, and add a navbar at the top. The nav bar let us select between the two kind of articles: blogs or notes. For now we have a single blog entry, and no notes. The page to list entries is simplified: we use the same layout for all lists (tags, notes, blogs). The CSS is updated to support the new nav bar.
2021-04-06layout: add date and tags to single pagesFranck Cuny1-1/+26
We want to show the tags and the published/updated date for the articles. Add to the CSS the classes for these new elements.