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>  17 <a class="button" href="https://foxide.xyz/articles.html">articles</a>  18 <a class="button" href="https://foxide.xyz/projects.html">projects</a>  19 <a class="button" href="https://foxide.xyz/consulting.html">consulting</a>  20 <a class="button" href="https://git.foxide.xyz/">code</a>  21 <a class="button" href="https://foxide.xyz/rss.xml">RSS Feed</a>  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>