about summary refs log tree commit diff
path: root/deploy.sh
blob: dd55d69d467f23dfddb8ce9822a0c63bb48e76c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

mkdir -p dest

cp logo-* style.css dest

cat _index_header.html > dest/index.html
for f in $(find itemy -name '*.md'); do
  file=$(basename $f .md)
  title=$(grep '^# ' $f | head -n 1 | cut -c 3-)
  echo "<li><a href=\"$file.html\">$title</a></li>" >> dest/index.html
  cat _header.html > dest/$file.html
  sed 's/^# \(.*\)/<h2>\1<\/h2>/' $f >> dest/$file.html
  echo "</div></main>
 <footer>
  <hr>
  <a href=\"https://zhr.niedzwiedzinski.cyou/harcdzielnia\">Harcdzielnia</a> |
  <a href=\"https://git.niedzwiedzinski.cyou/zhr/harcdzielnia\">Współtwórz harcdzielnię</a>
</footer>
 </body></html>" >> dest/$file.html
done

echo "</ul></main>
<footer>
  <hr>
  <a href=\"https://zhr.niedzwiedzinski.cyou/harcdzielnia\">Harcdzielnia</a> |
  <a href=\"https://git.niedzwiedzinski.cyou/zhr/harcdzielnia\">Współtwórz harcdzielnię</a>
</footer>
</body></html>" >> dest/index.html