-
Notifications
You must be signed in to change notification settings - Fork 5
/
page.tmpl
47 lines (41 loc) · 1.37 KB
/
page.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="EN">
$if(title)$<title>R. S. Doiel, Software Engineer/Analyst - $title$</title>$else$<title>R. S. Doiel, Software Engineer/Analyst</title>$endif$
<link rel="stylesheet" type="text/css" href="/printfonts/print.css" media="print" />
<link rel="stylesheet" type="text/css" href="/webfonts/fonts.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/css/site.css" media="screen" />
<link title="RSS feed for rsdoiel's blog" rel="alternate" type="application/rss+xml" href="https://rsdoiel.github.io/rss.xml" />
$if(sourcefile)$<link title="markdown source for page" rel="alternative" type="application/markdown" href="$sourcefile$">$endif$
</head>
<body>
<nav>
$if(include-before)$
$for(include-before)$
$include-before$
$endfor$
$else$
<ul>
<li><a href="/">Home</a></li>
<li><a href="./">README</a></li>
<li><a href="user_manual.html">User Manual</a></li>
<li><a href="LICENSE">LICENSE</a></li>
<li><a href="about.html">About</a></li>
<li><a href="INSTALL.html">Install</a></li>
<li><a href="https://github.com/rsdoiel/scripttool">GitHub</a></li>
</ul>
$endif$
</nav>
<section>
<!-- $for(title)$<h1>$title$</h1>$endfor$ -->
$body$
</section>
<footer>
$for(include-after)$
$include-after$
$endfor$
</footer>
</body>
</html>