Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
102 lines (97 sloc)
2.57 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="generator" content="pandoc" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> | |
$for(author-meta)$ | |
<meta name="author" content="$author-meta$" /> | |
$endfor$ | |
$if(date-meta)$ | |
<meta name="dcterms.date" content="$date-meta$" /> | |
$endif$ | |
$if(keywords)$ | |
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> | |
$endif$ | |
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> | |
<link rel="stylesheet" href="../style.css"> | |
<style type="text/css"> | |
code{background: rgba(255, 187, 85, 0.15);padding: 0.1em 0.2em;border-radius: 0.3em;white-space: pre-wrap;} | |
pre code{background: none;} | |
span.smallcaps{font-variant: small-caps;} | |
span.underline{text-decoration: underline;} | |
div.column{display: inline-block; vertical-align: top; width: 50%;} | |
$if(quotes)$ | |
q { quotes: "“" "”" "‘" "’"; } | |
$endif$ | |
</style> | |
$if(highlighting-css)$ | |
<style type="text/css"> | |
$highlighting-css$ | |
</style> | |
$endif$ | |
$for(css)$ | |
<link rel="stylesheet" href="$css$" /> | |
$endfor$ | |
$if(math)$ | |
$math$ | |
$endif$ | |
<!--[if lt IE 9]> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script> | |
<![endif]--> | |
$for(header-includes)$ | |
$header-includes$ | |
$endfor$ | |
</head> | |
<body> | |
$for(include-before)$ | |
$include-before$ | |
$endfor$ | |
<div class="content"> | |
$if(title)$ | |
<header> | |
<h1 id="fancyboi" class="title">$title$</h1> | |
$if(subtitle)$ | |
<p class="subtitle">$subtitle$</p> | |
$endif$ | |
$if(author)$ | |
<p>authors:</p> | |
$for(author)$ | |
<p class="author"><a href="/~$author$/">~$author$</a></p> | |
$endfor$ | |
$endif$ | |
$if(date)$ | |
<p class="date">$date$</p> | |
$endif$ | |
</header> | |
$endif$ | |
<br> | |
<div class="grid"> | |
<div class="row"> | |
<div class="col"> | |
$if(toc)$ | |
$if(toc-title)$ | |
<h2>$toc-title$</h2> | |
$endif$ | |
<nav id="$idprefix$TOC"> | |
$table-of-contents$ | |
</nav> | |
<hr> | |
$endif$ | |
<!-- unindent body so that code blocks don't have extra indents. See | |
https://stackoverflow.com/questions/42773587/code-block-formatting-issues-with-bootstrap-and-pandoc --> | |
$body$ | |
$for(include-after)$ | |
$include-after$ | |
$endfor$ | |
</div> | |
</div> | |
</div> | |
</div> | |
<br> | |
<footer class="text-center"> | |
<p>ECDSA fingerprint: SHA256:duamOATgnGcfRFFkotCwrAWzZtRjwxm64WAhq5tQRwE</p> | |
<a href="https://github.com/tildeclub/site">page source</a> | |
</footer> | |
</body> | |
</html> |