diff options
-rw-r--r-- | html/feed.xml | 2 | ||||
-rw-r--r-- | html/index.html | 2 | ||||
-rw-r--r-- | makefile | 8 |
3 files changed, 7 insertions, 5 deletions
diff --git a/html/feed.xml b/html/feed.xml index 5716b68..9d2e9b1 100644 --- a/html/feed.xml +++ b/html/feed.xml @@ -1,2 +1,2 @@ <?xml version='1.0' encoding='UTF-8'?> -<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Fryzek Concepts</title><atom:link href="https://fryzekconcepts.com/feed.xml" rel="self" type="application/rss+xml"/><link>https://fryzekconcepts.com</link><description>Lucas is a developer working on cool things</description><lastBuildDate>Sat, 21 Jan 2023 03:57:34 -0000</lastBuildDate><item><title>Generating Video</title><link>https://fryzekconcepts.com/notes/generating-video</link><description>One thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2D</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/generating-video</guid></item><item><title>N64Brew GameJam 2021</title><link>https://fryzekconcepts.com/notes/n64brew-gamejam-2021</link><description>So this year myself and two others decided to participate together in the N64Brew homebrew where</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/n64brew-gamejam-2021</guid></item><item><title>Baremetal RISC-V</title><link>https://fryzekconcepts.com/notes/baremetal-risc-v</link><description>After re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate what</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/baremetal-risc-v</guid></item><item><title>Digital Garden</title><link>https://fryzekconcepts.com/notes/digital_garden</link><description>After reading Maggie Appleton page on digital gardens I was inspired to convert my own website into</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/digital_garden</guid></item><item><title>Rasterizing Triangles</title><link>https://fryzekconcepts.com/notes/rasterizing-triangles</link><description>Lately I’ve been trying to implement a software renderer following the algorithm described by</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/rasterizing-triangles</guid></item></channel></rss>
\ No newline at end of file +<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Fryzek Concepts</title><atom:link href="https://fryzekconcepts.com/feed.xml" rel="self" type="application/rss+xml"/><link>https://fryzekconcepts.com</link><description>Lucas is a developer working on cool things</description><lastBuildDate>Sat, 21 Jan 2023 04:03:36 -0000</lastBuildDate><item><title>Generating Video</title><link>https://fryzekconcepts.com/notes/generating-video</link><description>One thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2D</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/generating-video</guid></item><item><title>N64Brew GameJam 2021</title><link>https://fryzekconcepts.com/notes/n64brew-gamejam-2021</link><description>So this year myself and two others decided to participate together in the N64Brew homebrew where</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/n64brew-gamejam-2021</guid></item><item><title>Baremetal RISC-V</title><link>https://fryzekconcepts.com/notes/baremetal-risc-v</link><description>After re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate what</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/baremetal-risc-v</guid></item><item><title>Digital Garden</title><link>https://fryzekconcepts.com/notes/digital_garden</link><description>After reading Maggie Appleton page on digital gardens I was inspired to convert my own website into</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/digital_garden</guid></item><item><title>Rasterizing Triangles</title><link>https://fryzekconcepts.com/notes/rasterizing-triangles</link><description>Lately I’ve been trying to implement a software renderer following the algorithm described by</description><pubDate>Sun, 30 Oct 2022 04:00:00 -0000</pubDate><guid>https://fryzekconcepts.com/notes/rasterizing-triangles</guid></item></channel></rss>
\ No newline at end of file diff --git a/html/index.html b/html/index.html index 6ff7569..7e44285 100644 --- a/html/index.html +++ b/html/index.html @@ -38,7 +38,7 @@ </div> <h2 class="main-heading">Notes - <a class="rss" href="/posts.xml"> + <a class="rss" href="/feed.xml"> <img class="rss" src="/assets/rss.svg"> </a> </h2> @@ -33,16 +33,17 @@ $(HTML_DIR)/%.html: $(PAGE_DIR)/%.md -M main_container="main-container-page" \ -o $@ -html/feed.xml: $(META_DOCS) +$(HTML_DIR)/feed.xml: $(META_DOCS) ./tools/rss_gen.py -$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) html/feed.xml +$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) $(HTML_DIR)/feed.xml touch $(HTML_DIR)/.nojekyll pandoc -s --lua-filter=./tools/front_page.lua --template=./templates/main.html main.md \ --metadata=note_list:"$(SOURCE_FILES)" \ -o $@ .PHONY: all clean +.DEFAULT_GOAL := all all: $(HTML_DIR)/index.html @@ -50,5 +51,6 @@ deploy: all git subtree push --prefix html origin gh-pages clean: - rm -r build + rm -rf build find html -name "*.html" -type f -delete + find html -name "*.xml" -type f -delete |