diff options
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | src/index.sh | 1 | ||||
-rw-r--r-- | src/tmpl.html | 1 |
3 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 46919a4..41e0b10 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,11 @@ -.PHONY: all -all: out/index.html out/feed.ass out/feed.atom +.PHONY: all posts index +all: posts index +index: out/index.html out/feed.ass out/feed.atom +posts: \ +out/feeds.html \ +out/our.html \ +out/tui.html \ +# posts end out/index.html: src/index.sh src/feed.ass sh $^ > $@ diff --git a/src/index.sh b/src/index.sh index ee5fc4a..03e300f 100644 --- a/src/index.sh +++ b/src/index.sh @@ -9,6 +9,7 @@ cat <<EOF <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <link href="https://tilde.town/~dzwdz/blog/feed.atom" type="application/atom+xml" rel="alternate"/> <title>dzwdz</title> + <link rel="icon" href="https://tilde.town/~dzwdz/favicon.gif" /> <style> body { max-width: 40ch; diff --git a/src/tmpl.html b/src/tmpl.html index 7f73c4d..a96320a 100644 --- a/src/tmpl.html +++ b/src/tmpl.html @@ -5,6 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <link href="https://tilde.town/~dzwdz/blog/feed.atom" type="application/atom+xml" rel="alternate"/> <title>$pagetitle$</title> + <link rel="icon" href="https://tilde.town/~dzwdz/favicon.gif" /> <style> body { max-width: 70ch; |