spec / default.html5on commit add to cheatsheet (9ff87d7)
   1<!DOCTYPE html>
   2<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
   3<head>
   4  <meta charset="utf-8" />
   5  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
   6$for(author-meta)$
   7  <meta name="author" content="$author-meta$" />
   8$endfor$
   9$if(date-meta)$
  10  <meta name="dcterms.date" content="$date-meta$" />
  11$endif$
  12$if(keywords)$
  13  <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
  14$endif$
  15  <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ &middot;</title>
  16  <style type="text/css">
  17      code{white-space: pre-wrap;}
  18      span.smallcaps{font-variant: small-caps;}
  19      span.underline{text-decoration: underline;}
  20      div.column{display: inline-block; vertical-align: top; width: 50%;}
  21      span.sitenav{float:right;}
  22      p.navbar{padding: 1em 0em;}
  23$if(quotes)$
  24      q { quotes: "“" "”" "‘" "’"; }
  25$endif$
  26  </style>
  27$if(highlighting-css)$
  28  <style type="text/css">
  29$highlighting-css$
  30  </style>
  31$endif$
  32$for(css)$
  33  <link rel="stylesheet" href="$css$">
  34$endfor$
  35$if(math)$
  36  $math$
  37$endif$
  38  <!--[if lt IE 9]>
  39    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  40  <![endif]-->
  41$for(header-includes)$
  42  $header-includes$
  43$endfor$
  44</head>
  45<body>
  46$for(include-before)$
  47$include-before$
  48$endfor$
  49<header>
  50$if(title)$
  51<h1 class="title">$title$</h1>
  52$if(subtitle)$
  53<p class="subtitle">$subtitle$</p>
  54$endif$
  55<hr />
  56</header>
  57$endif$
  58$if(toc)$
  59<nav id="$idprefix$TOC">
  60$table-of-contents$
  61</nav>
  62$endif$
  63$body$
  64$for(include-after)$
  65$include-after$
  66$endfor$
  67<hr />
  68</body>
  69</html>