Added headline (which just happens to be floated to the right)

master
Mike Gerwitz 2013-05-25 18:10:44 -04:00
parent 3cb200878d
commit cd93dcb796
5 changed files with 36 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
images/win7sins.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -76,6 +76,22 @@ h2.desc {
border-left: none;
}
#headline {
text-align: center;
float: right;
}
#headline a {
display: block;
margin-top: 2em;
clear: left;
}
#headline a:first-child {
margin-top: 0;
}
#headline img {
margin-left: 2em;
}
p#ref-0 {
margin-top: 2em;
}

View File

@ -32,7 +32,26 @@ html_pre_index="$(
printf '<li><a href="/%s">%s</a></li>' "$name" "${words[*]^}"
done
echo '</ul>'
# the remainder will appear below the menu, above the index
cat <<EOH
</ul>
<div id="headline">
<a href="http://upgradefromwindows8.com">
<img src="/images/win8-close.png"
alt="Close Windows, Open Doors" />
</a>
<a href="http://defectivebydesign.org/no-drm-in-html5">
<img src="/images/hollywebshare.jpg"
alt="Stop the Hollyweb! No DRM in HTML5." />
</a>
<a href="http://windows7sins.org">
<img src="/images/win7sins.png"
alt="Windows 7 Sins" title="Windows 7 Sins" />
</a>
</div>
EOH
)"