-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
32 lines (29 loc) · 1.04 KB
/
Copy pathguide.html
File metadata and controls
32 lines (29 loc) · 1.04 KB
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
---
layout : default
---
<h3><a href="/">Home</a> >> <a href="/guides/">Guides</a> >> Article</h3>
<hr class="soften-small"/>
<article>
<h1>{{ page.title }}</h1>
{{ content }}
</article>
<ul class="unstyled pagnav">
{% if page.next %}
<li class="prev">Next post: <a href="{{ page.next.url }}">{{ page.next.title }}</a></li>
{% endif %}
{% if page.previous %}
<li class="next">Previous post: <a href="{{ page.previous.url }}">{{ page.previous.title }}</a></li>
{% endif %}
</ul>
<a name="comments"></a>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'stackgeek';
var disqus_developer = 1;
var disqus_url = 'http://stackgeek.com{{ page.url }}';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>