about summary refs log tree commit diff
path: root/layouts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* layout: improve readability and remove /notesFranck Cuny2022-02-164-16/+48
| | | | | | | | | | The notes will be moved to a different site/repository, with their own style. Update the index page to make it more readable. Make the header more visible with fewer links. Add a footer, with links using SVG icons.
* CSS: switch from class to idFranck Cuny2022-01-231-5/+5
| | | | These elements are unique on each page.
* layout: no need for a class to element 'article'Franck Cuny2022-01-233-3/+3
|
* layout: proper TOCFranck Cuny2022-01-231-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.
* layout: wrap content in an "article" tagFranck Cuny2022-01-232-0/+8
|
* layout: drop the div 'main'Franck Cuny2022-01-231-6/+4
| | | | | The div 'main' is not needed, we are creating an element named 'named' in the main block.
* nav: use 'fcuny.net' instead of template variableFranck Cuny2022-01-211-1/+1
| | | | | Otherwise it's the name of the site, which is not what I'm looking for here.
* nav: align the menu items to the rightFranck Cuny2022-01-211-2/+7
|
* post: change formatting for the dateFranck Cuny2022-01-211-4/+4
|
* index: rephraseFranck Cuny2022-01-101-1/+1
|
* index: update current jobFranck Cuny2022-01-081-1/+1
|
* RSS: fix the templateFranck Cuny2021-12-291-3/+5
| | | | | Generate correctly the content of the RSS feed. I only want the blog articles, not the notes.
* index: re-organize the main pageFranck Cuny2021-12-201-9/+11
| | | | Add a "contact" header with my information under it.
* menu: simplify the menuFranck Cuny2021-12-201-9/+3
|
* blog: sort pages in reverse orderFranck Cuny2021-08-241-1/+1
|
* index: drop the main headerFranck Cuny2021-08-231-2/+0
| | | | It's ugly.
* CSS: use decoration on headers only for articlesFranck Cuny2021-08-231-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.
* CSS: makes the menu more readableFranck Cuny2021-08-231-8/+6
| | | | Move the title to the left and the menu items to the right.
* layout: don't use header tag in listFranck Cuny2021-08-151-1/+1
|
* CSS: support table of contentFranck Cuny2021-08-151-0/+7
| | | | | If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page.
* CSS: use a class for the menuFranck Cuny2021-08-151-1/+1
| | | | | We will have more use of the tag `nav` and we will need different styles for it.
* blog: replace github with git.fcuny.netFranck Cuny2021-08-141-1/+1
|
* css: bigger font and highlight colorsFranck Cuny2021-08-051-0/+2
| | | | | Increase the font size and change some of the colors used for highlighting code.
* blog: update descriptionFranck Cuny2021-08-051-1/+1
|
* blog: add SSH public keysFranck Cuny2021-08-051-0/+1
|
* blog: add humans.txtFranck Cuny2021-08-051-0/+1
| | | | See humanstxt.org for more information.
* layout: add a navbarFranck Cuny2021-04-226-35/+19
| | | | | | | | | | | | | 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.
* taxonomy: add pages for tagsFranck Cuny2021-04-112-0/+36
| | | | | | | We want to have pages that list all the articles related to a given tag. Update the configuration to add support for tags and the permalink structure.
* layout: add date and tags to single pagesFranck Cuny2021-04-061-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.
* layout: fix format for the dateFranck Cuny2021-04-061-1/+1
|
* layout: clean up empty spaceFranck Cuny2021-04-061-1/+1
|
* initial site with hugoFranck Cuny2021-03-076-0/+91
Start my website from scratch once more, using hugo to generate it. For now the layout is pretty simple: - an index page that will list future notes - notes should be created under the "content" directory The theme is custom and I'll try to keep this simple.