Remove link to GitHub sponsors
[openssl-web.git] / bin / md-to-html5.tmpl.html5
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <!--#include virtual="/inc/head.shtml" -->
5 $for(header-includes)$
6   $header-includes$
7 $endfor$
8 <style type="text/css">
9   .state {
10       position: fixed;
11       color: rgba(0,0,0,0.025);
12       font-family: sans-serif;
13       font-size: 25vh;
14       transform-origin: right top;
15       transform: rotate(-45deg);
16       z-index: 100;
17   }
18 </style>
19 </head>
20
21 <body>
22 <!--#include virtual="/inc/banner.shtml" -->
23   <div id="main">
24     <div id="content">
25       <div class="blog-index">
26         <article>
27 $if(state)$
28 <span class="state">$state$</span>
29 $endif$
30 $if(title)$
31 <header>
32 <h1 class="title">$title$</h1>
33 $if(subtitle)$
34 <p class="subtitle">$subtitle$</p>
35 $endif$
36 $for(author)$
37 <p class="author">$author$</p>
38 $endfor$
39 $if(date)$
40 <p class="date">$date$</p>
41 $endif$
42 </header>
43 $endif$
44 $body$
45         </article>
46       </div>
47       <!--#include virtual="sidebar.shtml" -->
48     </div>
49   </div>
50
51 <!--#include virtual="/inc/footer.shtml" -->
52 </body>