aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: aa5b6ca83d2ebf0b34b142441ce66cf8e5687e41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout: default
---

<div class="post">
    <!-- Header -->
    <h1 class="post-title">
        {{ page.title | smartify | strip_html | normalize_whitespace }}
    </h1>

    <!-- Date -->
    <span class="post-date">{{ page.date | date_to_long_string }}</span>

    <!-- Contents -->
    {{ content | normalize_whitespace }}
</div>

<!-- Comments on the post -->
<div class="comments">
    <div id="disqus_thread"></div>
    <script type="text/javascript" defer>
        var disqus_config = function() {
            this.page.identifier = '{{ page.id | slugify }}';
            this.page.title = '{{ page.title | smartify | strip_html | normalize_whitespace }}';
            this.page.url = '{{ page.url | absolute_url | uri_escape }}';
        };

        (function() {
            var d = document,
                s = d.createElement('script');
            s.src = '//valentineus-link.disqus.com/embed.js';
            s.setAttribute('data-timestamp', +new Date());
            (d.head || d.body).appendChild(s);
        })();
    </script>

</div>