Index

joshstock.in / 3a3d956

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
2729 Dec 2019 17:033a3d956Update blog formattingJosh Stockin1132N

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

text/html2065 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="website" />
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">
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 <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 <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><p>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</p></a></noscript>
40 $copyright
41 </div>
42 <script>
43 let blog_center = document.getElementsByClassName("blog-center")[0];
44 let headers = blog_center.getElementsByTagName("h2");
45 for (let i = 0; i < headers.length; i++) {
46 let header = headers[i];
47 console.log(header);
48 let inner = header.innerHTML;
49 let id = inner.replace(/[^a-z0-9]/gi,"-");
50 header.id = id;
51 header.innerHTML = "<a href=\"#" + id + "\">" + inner + "</a>";
52 }
53 </script>
54 </body>
55</html>
56