GenGo

Static site generator written in Golang using Pandoc.
Log | Files | Refs | README | LICENSE

template.html (1257B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3     <head>
      4         <meta charset="utf-8" />
      5         <meta name="viewport" content="width=device-width, initial-scale=1" />
      6         <link rel="icon" type="image/png" href="/favicon.png" />
      7         <link rel="stylesheet" type="text/css" href="/style.css" />
      8         <title>Tyler's website</title>
      9     </head>
     10 
     11     <body>
     12         <header>
     13             <h1>Tyler's Site</h1>
     14         </header>
     15         <nav>
     16             <a class="button" href="https://foxide.xyz/">home</a>&emsp;
     17             <a class="button" href="https://foxide.xyz/articles.html">articles</a>&emsp;
     18             <a class="button" href="https://foxide.xyz/projects.html">projects</a>&emsp;
     19             <a class="button" href="https://foxide.xyz/consulting.html">consulting</a>&emsp;
     20             <a class="button" href="https://git.foxide.xyz/">code</a>&emsp;
     21             <a class="button" href="https://foxide.xyz/rss.xml">RSS Feed</a>&emsp;
     22         </nav>
     23         <article>
     24             $body$
     25         </article>
     26         <footer>
     27             <p>
     28                 Comments or suggestions?<br />
     29                 Contact me: <a href="mailto:tyler.clark@foxide.xyz">tyler.clark@foxide.xyz</a>
     30             </p>
     31         </footer>
     32         </article>
     33     </body>
     34 </html>