Crib style from Nos oignons
authornicoo <nicoo@realraum.at>
Thu, 17 Dec 2015 21:40:09 +0000 (22:40 +0100)
committernicoo <nicoo@realraum.at>
Thu, 17 Dec 2015 21:42:50 +0000 (22:42 +0100)
doc/assets/logo.png [new file with mode: 0644]
doc/local.css [new file with mode: 0644]
doc/templates/page.tmpl [new file with mode: 0644]

diff --git a/doc/assets/logo.png b/doc/assets/logo.png
new file mode 100644 (file)
index 0000000..f5770e2
Binary files /dev/null and b/doc/assets/logo.png differ
diff --git a/doc/local.css b/doc/local.css
new file mode 100644 (file)
index 0000000..26a03ec
--- /dev/null
@@ -0,0 +1,346 @@
+/* vim: set ts=4 sts=4 sw=4 isk+=-,. fen fcl=all fdm=marker fmr={{{,}}} fml=2 : */
+
+html {
+       overflow: auto;
+}
+
+body {
+       margin: 0;
+       padding: 0;
+       font-size: 10pt;
+       font-family: "Source Sans Pro", sans-serif;
+       color: #ccc;
+       background: #111;
+}
+
+a {
+       color: #acfe24;
+       text-decoration: none;
+}
+
+a:hover { text-decoration: underline; }
+/*a:visited { color: #aa00bb; }*/
+
+em {
+       font-family: serif;
+}
+
+code {
+       font-family: "Source Code Pro", "Courier 10 Pitch", "Courier New", Courier;
+       color: #00CCFF;
+}
+
+dd {
+       margin-bottom: 1em;
+}
+
+p, dd, li {
+       text-align: justify;
+}
+
+p>code, dd>code, li>code {
+       white-space: nowrap;
+}
+
+.page {
+       overflow: hidden;
+       min-width: 50em;
+       max-width: 80em;
+       margin: 2em auto 0 auto;
+       border-radius: 16px 16px 0 0;
+       background: black;
+}
+
+/* {{{ .pageheader */
+.pageheader {
+       position: relative;
+       min-height: 95px;
+       padding: 0 1em;
+       color: black;
+       background: #ffa430;
+       border-radius: 16px 16px 0 0;
+}
+.pageheader #logo {
+       display: block;
+       position: relative;
+       height: 100px;
+       width: 100px;
+       background: url(assets/logo.png) left center no-repeat;
+       float: left;
+       margin-left: -125px;
+       margin-top: 5px;
+       text-indent: -9999px;
+}
+
+.pageheader .header {
+       font-size: 10pt;
+       margin-left: 12em;
+}
+
+.pageheader .header > span {
+       display: block;
+       margin: auto;
+       min-width: 30em;
+       padding: 1em;
+}
+
+.pageheader .parentlinks {
+       display: block;
+       min-height: 1.5em;
+       margin-top: 0.75em;
+}
+
+.pageheader a,
+.pageheader .parentlinks a {
+       color: black;
+       text-decoration: none;
+}
+
+.pageheader a:hover {
+       text-decoration: underline;
+}
+
+.pageheader .title {
+       line-height: 1.5em;
+       font-size: 16pt;
+}
+
+/* {{{ .actions */
+.actions {
+       text-align: right;
+}
+
+.actions ul li {
+       background: #ffa430;
+       border-radius: 0.8em 0.8em 0 0;
+}
+
+.actions ul li a {
+       padding: 0 0.8em;
+       color: black;
+}
+/* .actions }}} */
+/* {{{ #otherlanguages */
+#otherlanguages,
+#otherlanguages ul li a {
+       color: #012345;
+       background: white;
+}
+
+#otherlanguages ul li {
+       margin-left: 1em;
+}
+
+.pageheader #otherlanguages {
+       border: none;
+}
+/* #otherlanguages }}} */
+/* .pageheader }}} */
+
+#pagebody {
+       position: relative;
+       min-width: 32em;
+       min-height: 48em;
+       margin: 0 0 0 12em;
+       padding: 1em 2em;
+       color: #ccc;
+/*     background: black no-repeat bottom right url(assets/background.png); */
+       background-attachment: fixed;
+       border-left: #333 solid 1px;
+       z-index: 110;
+}
+
+/* {{{ .sidebar */
+.sidebar {
+       position: absolute;
+       top: 14em;
+       overflow: hidden;
+       width: 12em;
+       margin: 0;
+       padding: 0;
+       border: none;
+       z-index: 100;
+       background: black;
+}
+
+.sidebar ul {
+       margin: 0;
+       padding: 0;
+       list-style: none;
+       background: transparent;
+}
+
+.sidebar li {
+       text-align: left;
+}
+
+.sidebar ul li .selflink {
+       color: white;
+       font-weight: bold;
+}
+
+.sidebar ul li > span,
+.sidebar ul li > a {
+       display: block;
+       padding: 0.5em;
+       font-size: 11pt;
+       font-weight: bold;
+       text-decoration: none;
+       color: #aaaaaa;
+       background: transparent;
+}
+
+.sidebar ul ul {
+       margin-left: 1em;
+}
+
+/* .sidebar }}} */
+/* {{{ #content */
+#content {
+       line-height: 1.5em;
+       overflow: auto;
+       font-size: 12pt;
+}
+
+#content p {
+       margin: 1em 0 1em 0;
+}
+
+#content hr {
+       border: none;
+       border-bottom: dotted 2px #bbbbbb;
+       margin: 2em auto;
+}
+
+#content h1 {
+       display: inline;
+       font-size: 18pt;
+       font-weight: normal;
+       line-height: 2.5em;
+       color: white;
+       border-bottom: solid 1px #333;
+}
+
+#content h2 {
+       font-size: 16pt;
+       font-weight: normal;
+       margin-top: 1.5em;
+       margin-bottom: 0;
+}
+
+#content h2 + p {
+       margin-top: 0.75em;
+}
+
+#content h3 {
+       font-size: 12pt;
+       margin-bottom: 0;
+       padding-bottom: 0;
+}
+
+#content h3 + p {
+       margin-top: 0.5em;
+}
+
+#content table {
+       border-top: solid 1px #aaa;
+       border-bottom: solid 1px #aaa;
+       border-collapse: collapse;
+}
+
+#content table th {
+       background: #fafafa;
+       padding: 0.1em 0.5em;
+       border-bottom: solid 1px #aaaaaa;
+       color: #555555;
+}
+
+#content table td {
+       padding: 0.1em 0.5em;
+       border-top: solid 1px #ccc;
+}
+
+#content .feedlink a {
+       text-decoration: none;
+}
+/* #content }}} */
+
+.recentchanges .pagelinks a {
+       color: #ffa430;
+}
+
+.recentchanges .committer a {
+       color: #000000;
+}
+
+/* {{{ #footer */
+#footer {
+       position: relative;
+       margin: 0;
+       padding: 1em 0;
+       text-align: center;
+       color: #aaa;
+       background: black;
+       border-top: #333 solid 1px;
+}
+
+#footer #pageinfo {
+       position: relative;
+       min-width: 30em;
+       margin: auto;
+       padding: 0.1em 2em;
+       border-top: none;
+}
+
+#footer a {
+       color: #ccc;
+}
+
+#footer a:hover {
+       text-decoration: underline;
+}
+
+#backlinks {
+       font-size: 8pt;
+       margin-top: 0;
+}
+
+#footer #pageinfo div {
+       font-size: 8pt;
+       margin-top: 0.5em;
+       margin-bottom: 0;
+}
+/* #footer }}} */
+
+/* {{{ @media print */
+@media print {
+       .sidebar,
+       .actions,
+       .feedlink,
+       #backlinks,
+       #otherlanguages {
+               display: none;
+       }
+
+       #footer,
+       #footer #pageinfo,
+       .page,
+       .pageheader,
+       #pagebody {
+           margin: 0;
+           padding: 0;
+           border: none;
+           box-shadow: none;
+       }
+
+       .page,
+       .pageheader {
+               border-radius: 0;
+       }
+
+       #footer {
+               padding: 0.5em;
+       }
+}
+/* @media print }}} */
+
diff --git a/doc/templates/page.tmpl b/doc/templates/page.tmpl
new file mode 100644 (file)
index 0000000..b3ea888
--- /dev/null
@@ -0,0 +1,227 @@
+<TMPL_IF HTML5><!DOCTYPE html>
+<html>
+<TMPL_ELSE><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+</TMPL_IF>
+<head>
+<TMPL_IF DYNAMIC>
+<TMPL_IF FORCEBASEURL><base href="<TMPL_VAR FORCEBASEURL>" /><TMPL_ELSE>
+<TMPL_IF BASEURL><base href="<TMPL_VAR BASEURL>" /></TMPL_IF>
+</TMPL_IF>
+</TMPL_IF>
+<TMPL_IF HTML5><meta charset="utf-8" /><TMPL_ELSE><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></TMPL_IF>
+<title><TMPL_VAR TITLE></title>
+<TMPL_IF FAVICON>
+<link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" />
+</TMPL_IF>
+<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
+<TMPL_IF LOCAL_CSS>
+<link rel="stylesheet" href="<TMPL_VAR BASEURL><TMPL_VAR LOCAL_CSS>" type="text/css" />
+<TMPL_ELSE>
+<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
+</TMPL_IF>
+
+<TMPL_UNLESS DYNAMIC>
+<TMPL_IF EDITURL>
+<link rel="alternate" type="application/x-wiki" title="Edit this page" href="<TMPL_VAR EDITURL>" />
+</TMPL_IF>
+<TMPL_IF FEEDLINKS><TMPL_VAR FEEDLINKS></TMPL_IF>
+<TMPL_IF RELVCS><TMPL_VAR RELVCS></TMPL_IF>
+<TMPL_IF META><TMPL_VAR META></TMPL_IF>
+<TMPL_LOOP TRAILLOOP>
+<TMPL_IF PREVPAGE>
+<link rel="prev" href="<TMPL_VAR PREVURL>" title="<TMPL_VAR PREVTITLE>" />
+</TMPL_IF>
+<link rel="up" href="<TMPL_VAR TRAILURL>" title="<TMPL_VAR TRAILTITLE>" />
+<TMPL_IF NEXTPAGE>
+<link rel="next" href="<TMPL_VAR NEXTURL>" title="<TMPL_VAR NEXTTITLE>" />
+</TMPL_IF>
+</TMPL_LOOP>
+</TMPL_UNLESS>
+
+</head>
+<body>
+
+<TMPL_IF HTML5><article class="page"><TMPL_ELSE><div class="page"></TMPL_IF>
+
+<TMPL_IF HTML5><section class="pageheader"><TMPL_ELSE><div class="pageheader"></TMPL_IF>
+
+<TMPL_IF HTML5><header class="header"><TMPL_ELSE><div class="header"></TMPL_IF>
+<a id="logo" href="<TMPL_VAR BASEURL>"><TMPL_VAR WIKINAME></a>
+<span>
+<span class="parentlinks">
+<TMPL_LOOP PARENTLINKS>
+<a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a> > 
+</TMPL_LOOP>
+</span>
+<span class="title">
+<TMPL_VAR TITLE>
+<TMPL_IF ISTRANSLATION>
+&nbsp;(<TMPL_VAR PERCENTTRANSLATED>%)
+</TMPL_IF>
+</span>
+</span>
+<TMPL_UNLESS DYNAMIC>
+<TMPL_IF SEARCHFORM>
+<TMPL_VAR SEARCHFORM>
+</TMPL_IF>
+</TMPL_UNLESS>
+<TMPL_IF HTML5></header><TMPL_ELSE></div></TMPL_IF>
+
+<TMPL_IF HAVE_ACTIONS>
+<TMPL_IF HTML5><nav class="actions"><TMPL_ELSE><div class="actions"></TMPL_IF>
+<ul>
+<TMPL_IF EDITURL>
+<li><a href="<TMPL_VAR EDITURL>" rel="nofollow">Edit</a></li>
+</TMPL_IF>
+<TMPL_IF RECENTCHANGESURL>
+<li><a href="<TMPL_VAR RECENTCHANGESURL>">RecentChanges</a></li>
+</TMPL_IF>
+<TMPL_IF HISTORYURL>
+<li><a href="<TMPL_VAR HISTORYURL>">History</a></li>
+</TMPL_IF>
+<TMPL_IF GETSOURCEURL>
+<li><a href="<TMPL_VAR GETSOURCEURL>">Source</a></li>
+</TMPL_IF>
+<TMPL_IF PREFSURL>
+<li><a href="<TMPL_VAR PREFSURL>">Preferences</a></li>
+</TMPL_IF>
+<TMPL_IF ACTIONS>
+<TMPL_LOOP ACTIONS>
+<li><TMPL_VAR ACTION></li>
+</TMPL_LOOP>
+</TMPL_IF>
+<TMPL_IF COMMENTSLINK>
+<li><TMPL_VAR COMMENTSLINK></li>
+<TMPL_ELSE>
+<TMPL_IF DISCUSSIONLINK>
+<li><TMPL_VAR DISCUSSIONLINK></li>
+</TMPL_IF>
+</TMPL_IF>
+</ul>
+<TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+
+<TMPL_IF OTHERLANGUAGES>
+<TMPL_IF HTML5><nav id="otherlanguages"><TMPL_ELSE><div id="otherlanguages"></TMPL_IF>
+<ul>
+<TMPL_LOOP OTHERLANGUAGES>
+<li>
+<a href="<TMPL_VAR URL>"><TMPL_VAR LANGUAGE></a>
+<TMPL_IF MASTER>
+(master)
+<TMPL_ELSE>
+&nbsp;(<TMPL_VAR PERCENT>%)
+</TMPL_IF>
+</li>
+</TMPL_LOOP>
+</ul>
+<TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+
+<TMPL_UNLESS DYNAMIC>
+<TMPL_VAR TRAILS>
+</TMPL_UNLESS>
+
+<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
+
+<TMPL_UNLESS DYNAMIC>
+<TMPL_IF SIDEBAR>
+<TMPL_IF HTML5><aside class="sidebar"><TMPL_ELSE><div class="sidebar"></TMPL_IF>
+<TMPL_VAR SIDEBAR>
+<TMPL_IF HTML5></aside><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+</TMPL_UNLESS>
+
+<div id="pagebody">
+
+<TMPL_IF HTML5><section id="content"><TMPL_ELSE><div id="content"></TMPL_IF>
+<TMPL_VAR CONTENT>
+<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
+
+<TMPL_IF ENCLOSURE>
+<TMPL_IF HTML5><section id="enclosure"><TMPL_ELSE><div id="enclosure"></TMPL_IF>
+<a href="<TMPL_VAR ENCLOSURE>">Download</a>
+<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+
+<TMPL_UNLESS DYNAMIC>
+<TMPL_IF COMMENTS>
+<TMPL_IF HTML5><section id="comments"><TMPL_ELSE><div id="comments"></TMPL_IF>
+<TMPL_VAR COMMENTS>
+<TMPL_IF ADDCOMMENTURL>
+<div class="addcomment">
+<a href="<TMPL_VAR ADDCOMMENTURL>">Add a comment</a>
+</div>
+<TMPL_ELSE>
+<div class="addcomment">Comments on this page are closed.</div>
+</TMPL_IF>
+<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+</TMPL_UNLESS>
+
+</div>
+
+<TMPL_IF HTML5><footer id="footer" class="pagefooter"><TMPL_ELSE><div id="footer" class="pagefooter"></TMPL_IF>
+<TMPL_UNLESS DYNAMIC>
+<TMPL_IF HTML5><nav id="pageinfo"><TMPL_ELSE><div id="pageinfo"></TMPL_IF>
+
+<TMPL_VAR TRAILS>
+
+<TMPL_IF TAGS>
+<TMPL_IF HTML5><nav class="tags"><TMPL_ELSE><div class="tags"></TMPL_IF>
+Tags:
+<TMPL_LOOP TAGS>
+<TMPL_VAR LINK>
+</TMPL_LOOP>
+<TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+
+<TMPL_IF BACKLINKS>
+<TMPL_IF HTML5><nav id="backlinks"><TMPL_ELSE><div id="backlinks"></TMPL_IF>
+Links:
+<TMPL_LOOP BACKLINKS>
+<a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a>
+</TMPL_LOOP>
+<TMPL_IF MORE_BACKLINKS>
+<span class="popup">...
+<span class="balloon">
+<TMPL_LOOP MORE_BACKLINKS>
+<a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a>
+</TMPL_LOOP>
+</span>
+</span>
+</TMPL_IF>
+<TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF>
+</TMPL_IF>
+
+<TMPL_IF COPYRIGHT>
+<div class="pagecopyright">
+<a name="pagecopyright"></a>
+<TMPL_VAR COPYRIGHT>
+</div>
+</TMPL_IF>
+
+<TMPL_IF LICENSE>
+<div class="pagelicense">
+<a name="pagelicense"></a>
+License: <TMPL_VAR LICENSE>
+</div>
+</TMPL_IF>
+
+<div class="pagedate">
+Last edited <TMPL_VAR MTIME>
+<!-- Created <TMPL_VAR CTIME> -->
+</div>
+
+<TMPL_IF HTML5></nav><TMPL_ELSE></div></TMPL_IF>
+<TMPL_IF EXTRAFOOTER><TMPL_VAR EXTRAFOOTER></TMPL_IF>
+</TMPL_UNLESS>
+<!-- from <TMPL_VAR WIKINAME> -->
+<TMPL_IF HTML5></footer><TMPL_ELSE></div></TMPL_IF>
+
+<TMPL_IF HTML5></article><TMPL_ELSE></div></TMPL_IF>
+
+</body>
+</html>