memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

template.html (1412B)


      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="generator" content="pandoc" />
      6   <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
      7 $for(author-meta)$
      8   <meta name="author" content="$author-meta$" />
      9 $endfor$
     10 $if(date-meta)$
     11   <meta name="dcterms.date" content="$date-meta$" />
     12 $endif$
     13 $if(keywords)$
     14   <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
     15 $endif$
     16   <title>$pagetitle$$if(sitetitle)$ – $sitetitle$$endif$</title>
     17   <style>
     18     $styles.html()$
     19   </style>
     20 $for(css)$
     21   <link rel="stylesheet" href="$css$" />
     22 $endfor$
     23 $if(math)$
     24   $math$
     25 $endif$
     26 $for(header-includes)$
     27   $header-includes$
     28 $endfor$
     29 </head>
     30 <body>
     31 $for(include-before)$
     32 $include-before$
     33 $endfor$
     34 <header id="title-block-header">
     35 <nav class="breadcrumb" aria-label="Breadcrumb">
     36 <ol>
     37 $crumbs$
     38 </ol>
     39 </nav>
     40 $if(title)$
     41 <h1 class="title">$title$</h1>
     42 $endif$
     43 $if(subtitle)$
     44 <p class="subtitle">$subtitle$</p>
     45 $endif$
     46 $for(author)$
     47 <p class="author">$author$</p>
     48 $endfor$
     49 $if(date)$
     50 <p class="date">$date$</p>
     51 $endif$
     52 </header>
     53 $if(toc)$
     54 <nav id="$idprefix$TOC" role="doc-toc">
     55 $if(toc-title)$
     56 <h2 id="$idprefix$toc-title">$toc-title$</h2>
     57 $endif$
     58 $table-of-contents$
     59 </nav>
     60 $endif$
     61 $body$
     62 $for(include-after)$
     63 $include-after$
     64 $endfor$
     65 </body>
     66 </html>