2012-10-07 11:01:32 -04:00
|
|
|
#!/bin/bash
|
|
|
|
cat <<EOF
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>$subject</title>
|
2013-01-30 22:37:33 -05:00
|
|
|
<style type="text/css">
|
2013-03-15 16:31:52 -04:00
|
|
|
sup { font-size: 0.6em; }
|
2013-01-30 22:37:33 -05:00
|
|
|
:target { background-color: #fce94f; }
|
|
|
|
</style>
|
2012-10-07 11:01:32 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>$subject</h1>
|
|
|
|
<h2>$year-$month-$day</h2>
|
|
|
|
|
|
|
|
<div id="body">
|
|
|
|
$( cat )
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="$path_root#$dategroup">(Return to index)</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
<footer>
|
2012-10-07 16:44:12 -04:00
|
|
|
Copyright © $year $copyright.
|
|
|
|
$license
|
2012-10-07 11:01:32 -04:00
|
|
|
|
|
|
|
<div>$hash</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF
|