1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- layout: default
- ---
- <article class="post">
- <h1 class="post-title">{{ page.title }}</h1>
- <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
- {{ content }}
- </article>
- <div id="disqus_thread"></div>
- <script type="text/javascript">
- /* * * CONFIGURATION VARIABLES * * */
- var disqus_shortname = 'nobodyhere';
- /* * * DON'T EDIT BELOW THIS LINE * * */
- (function() {
- var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
- })();
- </script>
- <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
- {% if site.related_posts != empty %}
- <aside class="related">
- <h3>Related posts</h3>
- <ul class="related-posts">
- {% for post in site.related_posts limit:3 %}
- <li>
- <a href="{{ site.baseurl }}{{ post.url }}">
- {{ post.title }}
- <small><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></small>
- </a>
- </li>
- {% endfor %}
- </ul>
- </aside>
- {% endif %}
|