Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/brycematheson/allegiant.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeichi Takahashi <keichi.t@me.com>2015-07-17 18:25:27 +0300
committerKeichi Takahashi <keichi.t@me.com>2015-07-17 18:25:27 +0300
commit0698e89a422ad8533f1891d877d170330f2b2780 (patch)
treee21f8001bb2a4d59d1c0b381ce38d1ac393dca29
parent46610182d64d902b6724d34dbecbc686732db6dc (diff)
Move disqus above the author section
-rw-r--r--layouts/_default/single.html25
1 files changed, 13 insertions, 12 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 0713e46..5dbe531 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -21,6 +21,19 @@
{{ .Content }}
</section>
<footer>
+ {{ with .Site.Params.disqus }}
+ <hr/>
+ <div id="disqus_thread"></div>
+ <script type="text/javascript">
+ var disqus_shortname = '{{ . }}';
+ (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">comments powered by Disqus.</a></noscript>
+ {{ end }}
<section class="author-info row">
<div class="author-avatar col-md-2">
{{ with .Site.Params.avatar }}
@@ -56,18 +69,6 @@
<li class="next disabled"><a href="#">Newer <span aria-hidden="true">&rarr;</span></a></li>
{{ end }}
</ul>
- {{ with .Site.Params.disqus }}
- <div id="disqus_thread"></div>
- <script type="text/javascript">
- var disqus_shortname = '{{ . }}';
- (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">comments powered by Disqus.</a></noscript>
- {{ end }}
</footer>
</article>