blob: af919c778e5dae969fb27966d74bf067e34e1a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
rm -r dest || true
mkdir dest
export PATH="$PWD/.jekyll-cache:$PATH"
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/kronika/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
./tools/compile
./ssg5 wpisy dest "19 PDH Puszcza" "https://19.niedzwiedzinski.cyou"
|