Skip to content

Commit 378051a

Browse files
committed
Added disques to footer.html
1 parent 7d243f7 commit 378051a

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{{ if .IsPage }}
2+
3+
{{ $menuPrev := $.Scratch.Get "menu.Prev"}}
4+
{{ $menuNext := $.Scratch.Get "menu.Next"}}
5+
6+
<div id="btnv">
7+
{{ with $menuPrev }}
8+
<div class="pull-left">
9+
<a class="navigation prev" href="{{.URL}}">
10+
<i class="fa fa-long-arrow-left"> </i> {{.Name}}
11+
</a>
12+
</div>
13+
{{ end }}
14+
{{ with $menuNext }}
15+
<div class="pull-right">
16+
<a class="navigation next" href="{{.URL}}">
17+
{{.Name}} <i class="fa fa-long-arrow-right"> </i>
18+
</a>
19+
{{ end }}
20+
</div>
21+
</div>
22+
{{ end }}
23+
24+
<div id="disqus_thread"></div>
25+
<script type="text/javascript">
26+
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
27+
var disqus_shortname = 'nodejsmongodbdriver'; // required: replace example with your forum shortname
28+
/* * * DON'T EDIT BELOW THIS LINE * * */
29+
(function() {
30+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
31+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
32+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
33+
})();
34+
</script>
35+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
36+
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
37+
<!-- // disqus code -->
38+
39+
</div>
40+
{{ partial "rightColumn.html" . }}
41+
</div>
42+
</div>
43+
</div>
44+
</section>
45+
</section>
46+
<!--main content end-->
47+
</section>
48+
<!-- container section end -->
49+
<!-- javascripts -->
50+
{{ partial "assets/javascripts.html" . }}
51+
{{ partial "assets/analytics.html" . }}
52+
</body>
53+
</html>

0 commit comments

Comments
 (0)