-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (25 loc) · 825 Bytes
/
index.html
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
---
layout: default
title: Elsewhere Blog
---
{% assign post = site.posts.first %}
<!-- Post -->
<div class="post">
<h1>{{ post.title }}</h1>
{{ post.content }}
</div>
<!-- Disqus Comments Count -->
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'elsewheregames';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<div class="menu">
<a href="{{ post.url }}#disqus_thread">Comments</a>
</div>