You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
883 B
34 lines
883 B
<!DOCTYPE html> |
|
<html> |
|
|
|
{% include head.html %} |
|
|
|
<body> |
|
|
|
{% include header.html %} |
|
|
|
<div class="page-content"> |
|
<div class="wrapper"> |
|
{{ content }} |
|
</div> |
|
</div> |
|
|
|
<div id="disqus_thread"></div> |
|
|
|
{% include footer.html %} |
|
|
|
<script type="text/javascript"> |
|
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ |
|
var disqus_shortname = 'mycapsules'; // required: replace example with your forum shortname |
|
|
|
/* * * DON'T EDIT BELOW THIS LINE * * */ |
|
(function () { |
|
var s = document.createElement('script'); s.async = true; |
|
s.type = 'text/javascript'; |
|
s.src = '//' + disqus_shortname + '.disqus.com/count.js'; |
|
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); |
|
}()); |
|
</script> |
|
</body> |
|
|
|
</html>
|
|
|