aboutsummaryrefslogtreecommitdiff
path: root/config.toml (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-01simplify even more!Franck Cuny1-3/+1
2024-12-26add back the resume and generate it with nixFranck Cuny1-5/+3
2024-12-25add support for tagsFranck Cuny1-4/+2
2024-12-06get rid of sectionsFranck Cuny1-2/+1
I use tags to organize things.
2024-12-02basic setup for tagsFranck Cuny1-1/+5
2024-09-22simplify the CSSFranck Cuny1-1/+1
Stop playing with fonts, just use what ever is the default from the user. Make the width of the page a bit more tight. Improve readability of tables.
2024-09-21fix configuration to generate the feedFranck Cuny1-2/+2
2024-07-04add the feed and a few more fixesFranck Cuny1-3/+11
2024-07-04migrate to zolaFranck Cuny1-34/+10
2024-07-03simplify the layoutFranck Cuny1-37/+0
Get rid of the navigation bar, remove a number of elements, put more things on the main page. Clean up the CSS.
2023-12-03add `treefmt` and `pre-commit-hooks`Franck Cuny1-49/+49
I can now run `nix fmt` or `nix flake check` to check the syntax for various files in this repository. Fixed a deprecation warning for `hugo`: ``` > WARN The author key in site configuration is deprecated. Use params.author.email instead. > WARN The author key in site configuration is deprecated. Use params.author.name instead. ```
2023-12-01fix URL to git repositoriesFranck Cuny1-1/+1
2023-03-03fix: correct URL for my various repositoriesFranck Cuny1-1/+1
2022-11-28ref(style): use a nicer font, change the menuFranck Cuny1-0/+14
2022-10-29ref(style): simplify further the style of the siteFranck Cuny1-3/+3
Get rid of the footer and the icons. Set a light background color, and simplified the listing of the pages.
2022-10-26content: add the notes backFranck Cuny1-0/+14
2022-10-07ref(build): build and deploy with nixFranck Cuny1-1/+1
Refactored the build of the docker image to be done with nix: the flake knows how to build the docker image, using caddy as a HTTP server. It generates a small image, with the configuration for caddy and the site generated by hugo (`nix build`). Deleted the Dockerfile since the creation is done with nix. Got rid of the deployment script since this is also done via the flake (`nix run .#deploy`).
2022-05-01config: remove the link to the feedFranck Cuny1-8/+1
It's already in the footer.
2022-02-16layout: improve readability and remove /notesFranck Cuny1-20/+2
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.
2022-01-21nav: drop one item from the menuFranck Cuny1-7/+0
2021-12-29config: add author informationFranck Cuny1-0/+4
2021-12-29layout: add a link to the RSS feed in the menuFranck Cuny1-1/+10
Specify the weight so that the items in the menu are listed in the order I want.
2021-12-20menu: simplify the menuFranck Cuny1-0/+7
2021-08-05hugo: enable git information againFranck Cuny1-1/+1
Now that we're using a more recent version of the Docker image for hugo that comes with git, we can enable again git information.
2021-07-19hugo: TLS by defaultFranck Cuny1-1/+1
2021-06-20hugo: don't enable git infoFranck Cuny1-1/+1
The docker image used by fly.io to deploy a static website with hugo does not come with git, which prevents us to use the option `enableGitInfo`. This is not critical for now, so let's disable it so we can deploy.
2021-04-22layout: add a navbarFranck Cuny1-2/+16
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-13toml: re-configure markupFranck Cuny1-1/+18
2021-04-11taxonomy: add pages for tagsFranck Cuny1-20/+12
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.