84da41dffc
Signed-off-by: Valentin Popov <valentineus@gmail.com>
32 lines
886 B
HTML
32 lines
886 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<!-- Content of the post -->
|
|
<div class="post">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<span class="post-date">{{ page.date | date_to_long_string }}</span>
|
|
{{ content }}
|
|
</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.url | relative_url }}';
|
|
this.page.title = '{{ page.title }}';
|
|
this.page.url = '{{ page.url | absolute_url }}';
|
|
};
|
|
|
|
(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>
|