1
0
Fork 0

Added my trademark (but not really trademarked) ``GNU/Linux Inside!'' page fold

This also corrects image paths in manual subdirs.
website
Mike Gerwitz 2013-12-24 19:31:57 -05:00
parent 3f1a9c3607
commit 1119b46e58
6 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,7 @@
The ``GNU Inside'' page fold and its source file, authored by Mike Gerwitz, are
licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
Image Credits
=============
dvsup.png, rough_diagonal.png and cross_scratches.png authored by "Cody L.",

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

View File

@ -1,6 +1,9 @@
</div>
<div class="footer">
<a href="http://www.gnu.org/" id="gnuinside">
<img src="images/gnu-inside.png" alt="GNU/Linux Inside!" />
</a>
<p class="copyright">
Copyright &copy; 2011, 2012, 2013 <a href="http://mikegerwitz.com">Mike Gerwitz</a>
</p>

View File

@ -509,3 +509,15 @@ pre .chunk {
pre .tex .formula {
opacity: 0.5;
}
/* GNU/Linux page fold */
#gnuinside {
position: absolute;
display: block;
top: 0px;
right: 0px;
width: 50px;
height: 50px;
}

View File

@ -68,7 +68,8 @@ webify()
# if necessary, rewrite links to point to the proper directory (we do not use
# absolute paths, as that is not friendly to viewing the documentation on a
# filesystem)
shref='sed \"s#href=\\\"\\([^\\\"]\\+\\)\\\"#href=\\\"'"$root"'\\1\\\"#g\"'
shref='sed \"s#\\(src\\|href\\)=\\\"\\([^\\\"]\\+\\)\\\"#'
shref="$shref"'\\1=\\\"'"$root"'\\2\\\"#g\"'
shref="$shref | sed 's#//\\\"#\\\"#g'"
echo "Styling $path..."