I made an attempt at programatically generating blogposts to put on the SoN website. Here's the control flow:
1) User pushes to https://github.com/ngi-nix/ngi_website_content
2) Github workflow uses pandoc + nix to generate HTML from markdown.
3) HTML files are pushed to separate branch (pandoc)
4) nixos-summer repo references ngi_website_content/pandoc's HTML files as a submodule
I've added a index_blog.html as a landing page. Note: this only works with the bleeding edge nix compiler that has git submodule support (I've been testing off master). We'd need to edit the github workflows for this repo as well to use bleeding edge nix (I have not done this yet).
I made an attempt at programatically generating blogposts to put on the SoN website. Here's the control flow:
1) User pushes to https://github.com/ngi-nix/ngi_website_content 2) Github workflow uses pandoc + nix to generate HTML from markdown. 3) HTML files are pushed to separate branch (
pandoc
) 4) nixos-summer repo references ngi_website_content/pandoc's HTML files as a submoduleI've added a index_blog.html as a landing page. Note: this only works with the bleeding edge
nix
compiler that has git submodule support (I've been testing off master). We'd need to edit the github workflows for this repo as well to use bleeding edge nix (I have not done this yet).