24 lines
598 B
Bash
Executable file
24 lines
598 B
Bash
Executable file
#!/bin/sh
|
|
PAGE=$1
|
|
ROOT=$2
|
|
|
|
sed "s,<head>,<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />,i;s,<body\([^>]*\)>,<body\1><div id=\"body\">,i;/<\/body>/,//d" $PAGE
|
|
|
|
cat <<-FOOT
|
|
</div>
|
|
|
|
<div id="hdr">
|
|
<p class="none"></p>
|
|
<hr/>
|
|
<div id="hdrNav">
|
|
<a href="https://www.sfconservancy.org/">Conservancy's website</a> ·
|
|
<a href="mailto:elections@sfconservancy.org">Email problems to: <elections@sfconservancy.org></a> ·
|
|
<a href="https://gitorious.org/conservancy/voting/">Source code for this site</a>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
FOOT
|