about summary refs log tree commit diff
path: root/gen
blob: a486b1276bdb73fa77c7118433263db55eea76a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

rm -r dest || true
mkdir dest

cat > wpisy/kronika.html << EOF
<h2>Ostatnie wpisy</h2>

<a href="rss.xml"><img alt="" src="/assets/rss.svg" style="height:1em">RSS</a>
<div>
EOF

for f in `find wpisy/20* -name '*.md' | sort -r`; do
  path=`echo $f | sed 's/wpisy\///;s/.md//'`
  echo "<a href=\"$path\"><div>$path</div></a>" >> wpisy/kronika.html
done
echo "</div>" >> wpisy/kronika.html

./ssg5 wpisy dest "19pdh" "https://19.niedzwiedzinski.cyou"