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 name="title" content="$title" /> |
7 | <meta name="description" content="$summary" /> |
8 | <meta property="og:site_name" content="Josh Stockin" /> |
9 | <meta property="og:title" content="$title" /> |
10 | <meta property="og:description" content="$summary" /> |
11 | <meta property="og:type" content="website" /> |
12 | <meta property="og:image" content="$banner" /> |
13 | <meta property="og:url" content="https://joshstock.in$permalink" /> |
14 | <style>$css</style> |
15 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
16 | </head> |
17 | <body> |
18 | <div class="blog-center"> |
19 | <span><a href="/blog">← Back to archive</a></span> |
20 | <h1>Josh Stockin</h1> |
21 | <img class="blog-banner" style="background-image: url($banner)"/> |
22 | <h2>$title</h2> |
23 | <p><code>$date</code></p> |
24 | $content |
25 | <p><a href="$permalink">Article Permalink</a></p> |
26 | <div id="disqus_thread"></div> |
27 | <script> |
28 | var disqus_config = function () { |
29 | this.page.url = "https://joshstock.in$permalink"; |
30 | this.page.identifier = "https://joshstock.in$permalink"; |
31 | }; |
32 | (function() { |
33 | var d = document, s = d.createElement('script'); |
34 | s.src = 'https://joshstockin.disqus.com/embed.js'; |
35 | s.setAttribute('data-timestamp', +new Date()); |
36 | (d.head || d.body).appendChild(s); |
37 | })(); |
38 | </script> |
39 | <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> |
40 | $copyright |
41 | </div> |
42 | </body> |
43 | </html> |
44 |
|