Index

joshstock.in / 44ee482

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
811 Nov 2019 18:50fd93ec3OpenGraph description tagsJosh Stockin110N

Blob @ joshstock.in / resources / templates / blog-article.html

text/html887 bytesdownload raw
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Josh Stockin - $title</title>
6 <meta property="og:title" content="Josh Stockin - $title" />
7 <meta property="og:description" content="$summary" />
8 <meta property="og:type" content="website" />
9 <meta property="og:image" content="$banner" />
10 <meta property="og:url" content="https://joshstock.in$permalink" />
11 <style>$css</style>
12 <meta name="viewport" content="width=device-width, initial-scale=1">
13 </head>
14 <body>
15 <div class="blog-center">
16 <span><a href="/blog">← Back to archive</a></span>
17 <h1>Josh Stockin</h1>
18 <img class="blog-banner" style="background-image: url($banner)"/>
19 <h2>$title</h2>
20 <p><code>$date</code></p>
21 $content
22 <p><a href="$permalink">Permalink</a></p>
23 <code id="copyright">$copyright</code>
24 </div>
25 </body>
26</html>
27