about summary refs log tree commit diff
path: root/web/blog/fragments.nix (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-02-09 r/521 feat(web/blog): Add support for draft & unlisted postsVincent Ambo1-7/+31
Posts with either `draft = true;` or `listed = false;` will no longer be included in index generation and will have a warning callout inserted at the top of the page urging people not to share the links to them.
2020-02-09 r/498 feat(web): Add a favicon to homepage & blogVincent Ambo1-0/+1
2020-02-09 r/490 refactor(web): Serve static assets to //web/homepageVincent Ambo1-19/+5
Shuffles around the nginx locations that are served to ensure that all static content will be served from tazj.in/static (including for the blog).
2020-02-08 r/486 refactor(web/blog): Use timestamps for dates instead of stringsVincent Ambo1-2/+6
This lets me easily create an ordered list of entries if the homepage is designed to list both blog posts and other content.
2020-02-08 r/484 feat(web/blog): Add Nix-based static blog generatorVincent Ambo1-0/+81
This introduces a derivation which builds an instance of nginx statically serving my blog posts, though as of now no indexes are being generated and no XML feed is available. This is just the initial draft of this setup and not yet what shall be yielded in the end.