about summary refs log tree commit diff
path: root/web/blog (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-08 r/6566 feat(web/blog): add option to disable tagfilter per-postVincent Ambo2-1/+5
Posts can now specify (optionally) tagfilter=true/false to toggle escaping of HTML tags. Change-Id: Ie4a1a45028570fc166fdffba708bf9d0e0c6ae81 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9277 Tested-by: BuildkiteCI Reviewed-by: Mark Shevchenko <markshevchenko@gmail.com>
2022-11-04 r/5243 fix(web/blog): Parameterize renderPost with staticUrlWilliam Carroll1-5/+3
This was broken in my blog for way too long. Change-Id: I03c45c666d67006a4608a4b19d6167ab692e321d Reviewed-on: https://cl.tvl.fyi/c/depot/+/5905 Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
2022-09-28 r/4980 chore(3p/sources): Bump channels & overlayssterni1-2/+2
Upstream nixpkgs removed a lot of aliases this time, so we needed to do the following transformations. It's a real shame that aliases only really become discoverable easily when they are removed. * runCommandNoCC -> runCommand * gmailieer -> lieer We also need to work around the fact that home-manager hasn't catched on to this rename. * mysql -> mariadb * pkgconfig -> pkg-config This also affects our Nix fork which needs to be bumped. * prometheus_client -> prometheus-client * rxvt_unicode -> rxvt-unicode-unwrapped * nix-review -> nixpkgs-review * oauth2_proxy -> oauth2-proxy Additionally, some Go-related builders decided to drop support for passing the sha256 hash in directly, so we need to use the generic hash arguments. Change-Id: I84aaa225ef18962937f8616a9ff064822f0d5dc3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6792 Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: wpcarro <wpcarro@gmail.com>
2022-09-13 r/4835 feat(web/blog): add ability to specify post authorVincent Ambo2-0/+4
Anyone is free to pen a post for tvl.fyi if they want, so being able to attribute the author might be useful. This wasn't originally a feature because I wrote //web/blog only for tazj.in initially. Change-Id: Ibc50b53f92113a82a53ce40bb5defa18e926cc10 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6560 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: grfn <grfn@gws.fyi>
2022-01-31 r/3723 style: format entire depot with nixpkgs-fmtVincent Ambo2-24/+26
This CL can be used to compare the style of nixpkgs-fmt against other formatters (nixpkgs, alejandra). Change-Id: I87c6abff6bcb546b02ead15ad0405f81e01b6d9e Reviewed-on: https://cl.tvl.fyi/c/depot/+/4397 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: Profpatsch <mail@profpatsch.de> Reviewed-by: kanepyork <rikingcoding@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: cynthia <cynthia@tvl.fyi> Reviewed-by: edef <edef@edef.eu> Reviewed-by: eta <tvl@eta.st> Reviewed-by: grfn <grfn@gws.fyi>
2021-12-01 r/3123 fix(web/tvl/blog): Include only published posts in listings & feedVincent Ambo1-0/+3
Change-Id: I76c9c2c5cc82c7d0f59f907b6f1abee92a92cbf7
2021-11-30 r/3117 chore(web): Correct URLs for assets & feeds on TVL blogVincent Ambo1-2/+4
Change-Id: I8720d49f8f3f4010f57a53e763a4f246bf4eb3d8
2021-11-08 r/3025 fix(web/blog): make base URL configurable for atom feedsVincent Ambo2-4/+3
This was previously hardcoded to tazj.in, which is not going to work of course. Instead it now takes the blog config which has a new baseUrl parameter. For ease of use, the configs of my and the TVL blog have been moved into a location that is accessible in the tree for reuse. Change-Id: I94e71aaa7859db4380eb7013740a17f6b6a02620 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3777 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
2021-11-05 r/3001 fix(web/blog): Correctly wrap footer contentVincent Ambo1-2/+2
Name clash went undetected because I called this variable the same thing, oops. Change-Id: Iafa508f26887302b1c256088c50c68cd0ed7eea2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3771 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
2021-11-04 r/3000 refactor(web/blog): Move atom feed creation logic to //web/blogVincent Ambo1-1/+22
This was previously all inside of my personal homepage configuration, but that's not really where it belongs. This moves the blog post -> feed entry logic to //web/blog and moves some other minor logic (like entry order) into the atom feed implementation itself. Change-Id: Idde0241c48e979580de73f2b9afd04e6ca7f4c9a Reviewed-on: https://cl.tvl.fyi/c/depot/+/3770 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
2021-11-03 r/2998 refactor(web/blog): Configurable blog name and footerVincent Ambo2-24/+14
Required for actually using this generically for the TVL blog. Change-Id: I92d8d10341f9ab4f92c90f7976be261b3255a0f0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3768 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
2021-10-22 r/2988 chore(web/blog): Move out of //users/tazjinVincent Ambo2-0/+142
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 Ambo12-1404/+0
Change-Id: I96a2620ffb1d9e98a1d8ce7d97f2c4f58c2dbfd3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/603 Reviewed-by: tazjin <mail@tazj.in>
2020-04-25 r/677 chore(web/blog): Remove draft flag from nixery-layers postVincent Ambo1-1/+0
2020-04-25 r/676 feat(web/blog): Add Nixery layering design as a blog postVincent Ambo2-0/+279
Marked as a draft until I've verified that this looks good.
2020-02-22 r/575 docs(web/blog): Light editing on the unpublished Emacs postVincent Ambo1-24/+25
2020-02-21 r/559 chore: Rename pkgs->depot in all Nix file headersVincent Ambo2-6/+6
2020-02-11 r/539 refactor(web): Let //web/ derivations build static pages onlyVincent Ambo1-1/+9
Removes nginx configuration built by the web targets (with the exception of the includable block used to set up redirects for old blog URLs).
2020-02-10 r/526 docs(web/blog): Add some TODO entries for the draftVincent Ambo1-1/+17
2020-02-10 r/525 docs(web/blog): Rewrite some style issues in the Emacs postVincent Ambo1-35/+35
2020-02-10 r/524 feat(web/blog): Add draft blog post on EmacsVincent Ambo2-0/+223
This post is a draft, i.e. not linked from the index. It's not a secret, but if you do find it through this commit before its publication please don't share it too widely yet.
2020-02-09 r/521 feat(web/blog): Add support for draft & unlisted postsVincent Ambo2-8/+39
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/520 style(web/blog): Minor formatting fixes in Watchguard postVincent Ambo1-4/+4
2020-02-09 r/518 chore(web/blog): Move Watchguard images into static assetsVincent Ambo1-7/+7
Rather than sending user data to imgur ... lets get rid of all the external stuff!
2020-02-09 r/517 chore(web/blog): Remove duplicate CSS fileVincent Ambo1-35/+0
2020-02-09 r/513 style(web/homepage): Use somewhat livelier coloursVincent Ambo1-2/+1
The previous ones looked kind of dull. These are from my gruber-darker rainbow-delimiters theme.
2020-02-09 r/512 feat(web/homepage): Add styling for Cheddar calloutsVincent Ambo1-2/+2
2020-02-09 r/510 docs(web/blog): Update best-tools post with new phoneVincent Ambo1-5/+13
2020-02-09 r/498 feat(web): Add a favicon to homepage & blogVincent Ambo1-0/+1
2020-02-09 r/495 feat(web/blog): Move 'best-tools' doc into a real blog postVincent Ambo2-0/+159
2020-02-09 r/490 refactor(web): Serve static assets to //web/homepageVincent Ambo2-21/+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/487 refactor(web): Move nginx setup to //web/homepageVincent Ambo2-72/+5
The homepage is going to be the landing page for all content, whether it be blog posts or other stuff.
2020-02-08 r/486 refactor(web/blog): Use timestamps for dates instead of stringsVincent Ambo3-10/+13
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/485 feat(web/blog): Check in blog posts that I want to keepVincent Ambo6-0/+564
2020-02-08 r/484 feat(web/blog): Add Nix-based static blog generatorVincent Ambo5-0/+231
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.