about summary refs log tree commit diff
path: root/web/blog/fragments.nix
AgeCommit message (Collapse)AuthorFilesLines
2021-10-22 r/2988 chore(web/blog): Move out of //users/tazjinVincent Ambo1-0/+101
This will also be used for the TVL blog, with status updates of projects like Tvix. Note that while this commit evaluates, there are still some things specific to my blog in this code which I'll untangle in a future commit. Change-Id: If59431161b165d7249cbb856073a4cae84a1bfbf Reviewed-on: https://cl.tvl.fyi/c/depot/+/3732 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
2020-06-26 r/1087 chore(tazjin): Move //web/blog & //web/homepage to my userdirVincent Ambo1-96/+0
Change-Id: I96a2620ffb1d9e98a1d8ce7d97f2c4f58c2dbfd3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/603 Reviewed-by: tazjin <mail@tazj.in>
2020-02-21 r/559 chore: Rename pkgs->depot in all Nix file headersVincent Ambo1-3/+3
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.