Index

joshstock.in / 304588f

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
3131 Dec 2019 15:47010e8a4Update OpenGraph propertiesJosh Stockin113N

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

text/html2097 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 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="article" />
12 <meta property="og:image" content="$banner" />
13 <meta property="og:url" content="https://joshstock.in$permalink" />
14 <link rel="stylesheet" href="/blog.css">
15 <meta name="viewport" content="width=device-width, initial-scale=1.0">
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 <div class="blog-banner" style="background-image: url($banner)"></div>
22 <h1 class="blog-top-1">$title</h1>
23 <p class="blog-top-2"><code>$date</code></p>
24 $content
25 <p><a href="$permalink">Article Permalink</a></p>
26 <script>
27 let blog_center = document.getElementsByClassName("blog-center")[0];
28 let headers = blog_center.getElementsByTagName("h2");
29 for (let i = 0; i < headers.length; i++) {
30 let header = headers[i];
31 console.log(header);
32 let inner = header.innerHTML;
33 let id = inner.replace(/[^a-z0-9]/gi,"-").toLowerCase();
34 header.id = id;
35 header.innerHTML = "<a href=\"#" + id + "\">" + inner + "</a>";
36 }
37 </script>
38 <div id="disqus_thread"></div>
39 <script>
40 var disqus_config = function () {
41 this.page.url = "https://joshstock.in$permalink";
42 this.page.identifier = "https://joshstock.in$permalink";
43 };
44 (function() {
45 var d = document, s = d.createElement('script');
46 s.src = 'https://joshstockin.disqus.com/embed.js';
47 s.setAttribute('data-timestamp', +new Date());
48 (d.head || d.body).appendChild(s);
49 })();
50 </script>
51 <noscript><p>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</p></a></noscript>
52 $copyright
53 </div>
54 </body>
55</html>
56