39 lines
930 B
HTML
39 lines
930 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/hybrid.min.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
|
|
|
|
<script>hljs.highlightAll();</script>
|
|
$for(author-meta)$
|
|
<meta name="author" content="$author-meta$" />
|
|
$endfor$
|
|
$if(date-meta)$
|
|
<meta name="dcterms.date" content="$date-meta$" />
|
|
$endif$
|
|
<title>$pagetitle$</title>
|
|
<link rel="stylesheet" href="/index.css" />
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
<a href="/about">About</a>
|
|
<a href="/blog">Blog</a>
|
|
<a href="/contact">Contact</a>
|
|
</nav>
|
|
$if(title)$
|
|
<h1 class="title">$title$</h1>
|
|
$endif$
|
|
$if(subtitle)$
|
|
<p class="subtitle">$subtitle$</p>
|
|
$endif$
|
|
$for(author)$
|
|
<p class="author">$author$</p>
|
|
$endfor$
|
|
$if(date)$
|
|
<p class="date">$date$</p>
|
|
$endif$
|
|
$body$
|
|
</body>
|
|
</html>
|