diff --git a/Makefile b/Makefile index 9259b04..98a11ba 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,13 @@ SRC_DIR = src PAGES_DIR = $(SRC_DIR)/pages BLOG_DIR = $(SRC_DIR)/blog DIST_DIR = dist +BUILD_DIR = build PAGES = $(notdir $(wildcard $(PAGES_DIR)/*.html)) BLOG_PAGES = $(wildcard $(BLOG_DIR)/*.md) TARGETS = $(addprefix $(DIST_DIR)/,$(PAGES)) all: $(PAGES_DIR)/blog.html $(TARGETS) - rm -rf $(DIST_DIR)/template.html watch: while sleep 1 ; do \ @@ -18,12 +18,13 @@ watch: | entr -d make -f ./Makefile ; \ done -mkdist: +mkdirs: mkdir -p $(DIST_DIR) + mkdir -p $(BUILD_DIR) -template: $(SRC_DIR)/start.html $(SRC_DIR)/nav.html $(SRC_DIR)/side.html | mkdist +template: $(SRC_DIR)/start.html $(SRC_DIR)/nav.html $(SRC_DIR)/side.html | mkdirs cp -r $(SRC_DIR)/styles $(DIST_DIR) - cat $(SRC_DIR)/start.html $(SRC_DIR)/nav.html $(SRC_DIR)/side.html > dist/template.html + cat $(SRC_DIR)/start.html $(SRC_DIR)/nav.html $(SRC_DIR)/side.html > $(BUILD_DIR)/template.html $(PAGES_DIR)/blog.html: $(BLOG_PAGES) $(BLOG_DIR)/start_blog.html $(BLOG_DIR)/end_blog.html pandoc -f markdown -t html $^ -o $@.tmp @@ -31,8 +32,9 @@ $(PAGES_DIR)/blog.html: $(BLOG_PAGES) $(BLOG_DIR)/start_blog.html $(BLOG_DIR)/en rm $@.tmp $(DIST_DIR)/%.html: $(PAGES_DIR)/%.html | template mkdist - cat $(DIST_DIR)/template.html $(PAGES_DIR)/$*.html $(SRC_DIR)/end.html > $@ + cat $(BUILD_DIR)/template.html $(PAGES_DIR)/$*.html $(SRC_DIR)/end.html > $@ clean: - rm -rf dist + rm -rf $(DIST_DIR) + rm -rf $(BUILD_DIR) rm -rf $(PAGES_DIR)/blog.html diff --git a/src/pages/links.html b/src/pages/links.html index 8b38e02..0925e47 100644 --- a/src/pages/links.html +++ b/src/pages/links.html @@ -1,17 +1,21 @@

mount /dev/links

- A page with my personal categorized awesome list of links. + a page with my personal categorized awesome list of links. -

Link aggregators

+

link aggregators

- Hackernews - Quite common but mostly nice articles of CS/Math related things + hackernews + common but nice articles of cs related things

-

lobste.rs More programming related links.

+

lobste.rs more programming related links

+

lobste.rs meta aggregator of lobsters+hn+mastodon

-

Comics

-

- xkcd The classic -

+

blogs

+

comics

+

+ xkcd classic +

+ + updated: 2025-07-15
diff --git a/src/pages/now.html b/src/pages/now.html index 62f3936..ee22286 100644 --- a/src/pages/now.html +++ b/src/pages/now.html @@ -1,18 +1,32 @@

mount /dev/now

- This page contains all projects I'm working on right now. As a reminder and incentive to keep going! + things i currently work on (maybe)

Projects

Education

+ +

old projects

+

finished

+

on-hold

+ - Last updated: 01.05.2024 + +

gone

+ + + updated: 2025-07-15

diff --git a/src/side.html b/src/side.html index 24754e9..a561b09 100644 --- a/src/side.html +++ b/src/side.html @@ -1,34 +1,15 @@ diff --git a/src/styles/aside.css b/src/styles/aside.css index 420e107..f2caf16 100644 --- a/src/styles/aside.css +++ b/src/styles/aside.css @@ -7,9 +7,9 @@ aside { max-width: 20%; height: 100%; overflow: hidden; - margin-right: 1vw; - margin-top: 3vh; - //width: 18%; + margin-right: 2vw; + margin-top: 2.5vh; + width: 13vw; border-right: solid; position: fixed;