71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Basic template configuration; command-line options will override
|
|
|
|
html_external_css=/style.css
|
|
|
|
# additional content in the footer before the copyright (the awkward newline
|
|
# positions are to prevent spaces in the output)
|
|
html_footer=$(cat <<EOM
|
|
<a href="/about/inside/" id="gnuinside">
|
|
<img src="/images/gnulinuxinside.png" alt="GNU/Linux Inside!" />
|
|
</a>
|
|
|
|
<div class="bimgs">
|
|
<a href="http://www.fsf.org/register_form?referrer=5804"
|
|
><img src="/images/fsf-member.png"
|
|
alt="[FSF Associate Member]"
|
|
title="Mike Gerwitz - FSF Associate Member"
|
|
width="88" height="31" border="0"
|
|
/></a>
|
|
|
|
<a href="http://endsoftpatents.org/innovating-without-patents"
|
|
><img src="/images/esp-button.png"
|
|
alt="[ Innovating Without Patents! ]"
|
|
title="Innovating Without Patents"
|
|
width="88" height="31" border="0"
|
|
/></a>
|
|
|
|
<a href="http://www.defectivebydesign.org/join/button"
|
|
><img src="/images/elim-drm.gif"
|
|
alt="[ Eliminate DRM! ]"
|
|
title="Eliminate DRM!"
|
|
width="88" height="30" border="0"
|
|
/></a>
|
|
</div>
|
|
EOM
|
|
)
|
|
|
|
|
|
# index-only footer (we don't want too much spam; the other pages look much
|
|
# cleaner without this)
|
|
html_index_footer=$(cat <<EOM
|
|
<div id="selflinks">
|
|
<a href="http://gitorious.org/~mikegerwitz">
|
|
<img src="/images/gitorious-42.png"
|
|
alt="See me on Gitorious"
|
|
title="See me on Gitorious"
|
|
width="42" height="42" border="0"
|
|
/>
|
|
</a>
|
|
|
|
<a href="http://github.com/mikegerwitz">
|
|
<img src="/images/github-42.png"
|
|
alt="See me on GitHub"
|
|
title="See me on GitHub"
|
|
width="42" height="42" border="0"
|
|
/>
|
|
</a>
|
|
|
|
<a href="http://www.fsf.org/register_form?referrer=5804">
|
|
<img src="/images/fsf-42.png"
|
|
alt="FSF Member #5804"
|
|
title="FSF Member #5804"
|
|
width="42" height="42" border="0"
|
|
/>
|
|
</a>
|
|
</div>
|
|
|
|
EOM
|
|
)
|