#!/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