blob: 0d8715535be6209f9e4241564d4813ad6f204dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
all: openring
hugo --minify
serve: openring
hugo serve
openring:
openring -n 10 \
-s https://blog.codeberg.org/feeds/all.atom.xml \
-s https://rosenzweig.io/feed.xml \
-s https://sourcehut.org/blog/index.xml \
-s https://bitfehler.srht.site/index.xml \
-s https://andrewkelley.me/rss.xml \
-s https://ziglang.org/devlog/index.xml \
-s https://ziglang.org/news/index.xml \
-s https://drewdevault.com/blog/index.xml \
-s https://mazzo.li/rss.xml \
-s https://blog.golang.org/feed.atom \
-s https://emersion.fr/blog/atom.xml \
< webring.template \
> themes/flamingo/layouts/partials/openring.html
|