OSDN Git Service

トップページの整理まで。 / To Rearrange top page.
[hengband/web.git] / src / make.sh
1 #!/bin/bash
2
3 list="index web_update"
4
5 for v in $list; do
6         echo ${v}
7         asciidoctor --no-header-footer --out-file=tmp.txt \
8                 --backend=html5 -a linkcss -a stylesheet=hengband.css \
9                 ${v}.adoc 
10         cat template.html | sed '/<!--main contents-->/r tmp.txt' > ${v}.html
11 done
12