diff options
author | P. J. McDermott <pjm@nac.net> | 2012-05-26 22:19:51 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-05-26 22:19:51 (EDT) |
commit | 9927c57e087e9052bffaa5941f560d5c36846aa0 (patch) | |
tree | a43ea94472297c442cdd1849ce2cbf8fa4012bd9 /includes | |
parent | 9555ef901b02310de51b31061e7186df4a16eed9 (diff) |
Write "includes" files.
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/footer.html | 9 | ||||
-rwxr-xr-x | includes/header.html | 55 | ||||
-rw-r--r-- | includes/news.html | 3 |
3 files changed, 67 insertions, 0 deletions
diff --git a/includes/footer.html b/includes/footer.html new file mode 100755 index 0000000..ec33826 --- /dev/null +++ b/includes/footer.html @@ -0,0 +1,9 @@ + </div> + <div class="footer"> + <p class="copyright"> + Copyright © 2011-2012 Patrick "P. J." M<span class="super">c</span>Dermott. + <a href="legal">Legal</a> + </p> + </div> + </body> +</html> diff --git a/includes/header.html b/includes/header.html new file mode 100755 index 0000000..efdc189 --- /dev/null +++ b/includes/header.html @@ -0,0 +1,55 @@ +<!doctype html> + +<html> + <head> + <title></title> +<!--#if expr="${title} = /^$/" --> + <title>Embedded Operating System Distribution</title> +<!--#else --> + <title><!--#echo var="title" --> - Embedded Operating System Distribution</title> +<!--#endif --> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <link rel="stylesheet" type="text/css" href="/main.css"> + </head> + <body> + <a href="#body" class="skip">Skip to body</a> + <header> + <div class="logo">?</div> + <div class="nav"> + <ul> + <li> + <a href="http://wiki.os.pehjota.net/">Wiki</a> + <ul> + <li><a href="http://wiki.os.pehjota.net/">Wiki</a></li> + <li><a href="http://wiki.os.pehjota.net/doc/">Documentation</a></li> + </ul> + </li> + <li> + <a href="http://os.pehjota.net/contact.html">Contact Us</a> + <ul> + <li><a href="http://os.pehjota.net/lists.html">Mailing Lists</a></li> + <li><a href="http://os.pehjota.net/irc.html">IRC Channels</a></li> + </ul> + </li> + <li> + <a href="http://os.pehjota.net/dev.html">Development</a> + <ul> + <li><a href="http://packages.os.pehjota.net/">Package Archive</a></li> + <li><a href="http://bugs.os.pehjota.net/">Bug Tracker</a></li> + <li><a href="http://git.os.pehjota.net/">Source Repositories</a></li> + </ul> + </li> + </ul> + </div> + </header> +<div style="clear: both;"></div> + <div class="wrapper sidebar"> + <div> + <h3>News</h3> + <ul> +<!--#include file="includes/news.html" --> + </ul> + </div> + </div> + <div class="wrapper main"> + <a id="body"></a> diff --git a/includes/news.html b/includes/news.html new file mode 100644 index 0000000..d0b96ae --- /dev/null +++ b/includes/news.html @@ -0,0 +1,3 @@ +<li>System version 1.0 under development</li> +<li><a href="http://www.pehjota.net/projects/opkhelper/">opkhelper</a> version 1.0.0 released</li> +<li><a href="http://specs.os.pehjota.net/source-package-format-1.0.html">Source package format version 1.0</a> to enter "candidate" state soon</li> |