Browse Source

Fix disqus URLs.

master
Ben Kurtovic 9 years ago
parent
commit
21ffad8c3c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      _layouts/post.html
  2. +1
    -1
      index.html

+ 1
- 1
_layouts/post.html View File

@@ -20,7 +20,7 @@ layout: base
var disqus_shortname = 'earwig';
var disqus_identifier = '{{ page.id }}';
var disqus_title = '{{ page.title }}';
var disqus_url = 'http://earwig.github.com{{ page.url }}';
var disqus_url = '{{ site.url }}{{ page.url }}';
var disqus_developer = 1;
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;


+ 1
- 1
index.html View File

@@ -126,7 +126,7 @@ title: Home
<script>
var disqus_shortname = 'earwig';
var disqus_title = '{{ page.title }}';
var disqus_url = 'http://earwig.github.com{{ page.url }}';
var disqus_url = '{{ site.url }}{{ page.url }}';
var disqus_developer = 1;
(function () {
var s = document.createElement('script'); s.async = true;


Loading…
Cancel
Save