1 // just docs: adrdox skeleton file layout
2 /++
3 	The skeleton file is a html file with two required elements:
4 	`#page-nav` and `#page-content`. You can put them anywhere
5 	and whatever you want around them.
6 
7 	Here is the content of my skeleton.html file:
8 
9 	```html
10 	<!DOCTYPE html>
11 	<html>
12 	<head>
13 		<title>Documentation</title>
14 		<meta charset="utf-8" />
15 		<meta name="viewport" content="width=device-width, initial-scale=1" />
16 		<link rel="stylesheet" href="style.css" />
17 		<script type="text/javascript" src="script.js"></script>
18 	</head>
19 	<body>
20 		<div id="page-header">
21 			<div id="logotype">
22 			<img src="/d-logo.png" width="54" height="32" />
23 			<span>The D Programming Language's Unofficial Docs</span>
24 			<b style="vertical-align: top; font-family: cursive; font-style:italic;">alpha</b>
25 			<nav>
26 				<a href="http://dlang.org/">Dlang.org</a>
27 				<a href="arsd.docs.adrdoc.help.html">Get Help</a>
28 			</nav>
29 			</div>
30 
31 			<form id="search" action="/search/search">
32 				<input placeholder="Find a symbol name..." type="search" name="searchTerm" />
33 				<input type="submit" value="Go" />
34 			</form>
35 		</div>
36 		<div id="page-body">
37 			<div id="page-content">
38 			</div>
39 			<div id="page-nav">
40 			</div>
41 		</div>
42 		<div id="page-footer">Page generated by <a href="https://github.com/adamdruppe/adrdox">adrdox</a></div>
43 		<a id="suggestion-box" href="mailto:destructionator@gmail.com">Suggestion Box / Bug Report</a>
44 	</body>
45 	</html>
46 	```
47 +/
48 module adrdox.skeleton;
Suggestion Box / Bug Report