d1c8b2fee1
* Added Staicman support * Corrected template for staticman.yml * Edit for coherence with _includes/disqus.html * Updated documentation for Staticman * Updated License to give credits to Michale Rose * Update LICENSE * add more staticman details to readme * Clearer instructions about reCAPTCHA in YML * Nest reCAPTCHA param inside Staticman * Prepend all css selectors with .staticman-comments Edit suggested by theme owner to avoid CSS rules overriding. * Add myself to the change log * Update _config.yml
23 lines
509 B
HTML
23 lines
509 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
{% include header.html type="page" %}
|
|
|
|
<div class="container" role="main">
|
|
<div class="row">
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
|
{{ content }}
|
|
{% if page.comments %}
|
|
<div class="disqus-comments">
|
|
{% include disqus.html %}
|
|
</div>
|
|
{% include fb-comment.html %}
|
|
<div class="staticman-comments">
|
|
{% include staticman-comments.html %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|