git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/www/update
blob: b118e70280e4f5f7ce9e7f09f03f0ee7dd4c42c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

php head.php > head.html

# style.css
# This will be included in the cgit head itself, so... well. Let's wrap it.
echo '<style type="text/css">' > lirionnet.css
cat "/wherever/lirionnet.css" >> lirionnet.css
echo '</style>' >> lirionnet.css
for i in "/fonts/telex-ht-regular.css" "/fonts/alte-din.css" "/fonts/elusive-icons.css"
do
	echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"$i\"/>" >> lirionnet.css
done