adrdox skeleton file layout

The skeleton file is a html file with two required elements: #page-nav and #page-content. You can put them anywhere and whatever you want around them.

Here is the content of my skeleton.html file:

1 <!DOCTYPE html>
2 <html>
3 <head>
4 	<title>Documentation</title>
5 	<meta charset="utf-8" />
6 	<meta name="viewport" content="width=device-width, initial-scale=1" />
7 	<link rel="stylesheet" href="style.css" />
8 	<script type="text/javascript" src="script.js"></script>
9 </head>
10 <body>
11 	<div id="page-header">
12 		<div id="logotype">
13 		<img src="/d-logo.png" width="54" height="32" />
14 		<span>The D Programming Language's Unofficial Docs</span>
15 		<b style="vertical-align: top; font-family: cursive; font-style:italic;">alpha</b>
16 		<nav>
17 			<a href="http://dlang.org/">Dlang.org</a>
18 			<a href="arsd.docs.adrdoc.help.html">Get Help</a>
19 		</nav>
20 		</div>
21 
22 		<form id="search" action="/search/search">
23 			<input placeholder="Find a symbol name..." type="search" name="searchTerm" />
24 			<input type="submit" value="Go" />
25 		</form>
26 	</div>
27 	<div id="page-body">
28 		<div id="page-content">
29 		</div>
30 		<div id="page-nav">
31 		</div>
32 	</div>
33 	<div id="page-footer">Page generated by <a href="https://github.com/adamdruppe/adrdox">adrdox</a></div>
34 	<a id="suggestion-box" href="mailto:destructionator@gmail.com">Suggestion Box / Bug Report</a>
35 </body>
36 </html>
Suggestion Box / Bug Report