diff options
-rw-r--r-- | zurb-F5-basic/templates/article.html.isso | 20 | ||||
-rw-r--r-- | zurb-F5-basic/templates/comments.html.isso | 5 | ||||
l--------- | zurb-F5-basic/templates/embed.min.js | 1 |
3 files changed, 26 insertions, 0 deletions
diff --git a/zurb-F5-basic/templates/article.html.isso b/zurb-F5-basic/templates/article.html.isso new file mode 100644 index 0000000..cd7f157 --- /dev/null +++ b/zurb-F5-basic/templates/article.html.isso @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{% endblock %} +{% block content %} +<article> + <header> + <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" + title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h3> + {% include 'twitter.html' %} + </header> + + {% include 'article_infos.html' %} + {{ article.content }} + {% include 'article_infos_bottom.html' %} + + {% if article.status != "draft" %} + <h4>Comments</h4> + {% include 'comments.html' %} + {% endif %} +</article> +{% endblock %} diff --git a/zurb-F5-basic/templates/comments.html.isso b/zurb-F5-basic/templates/comments.html.isso new file mode 100644 index 0000000..25e8eb2 --- /dev/null +++ b/zurb-F5-basic/templates/comments.html.isso @@ -0,0 +1,5 @@ +<script data-isso="/isso" src="{{ SITEURL }}/theme/js/embed.js"></script> +<section class="comments" id="comments"> + <h2 class="panel">Comments</h2> + <section id="isso-thread"></section> +</section> diff --git a/zurb-F5-basic/templates/embed.min.js b/zurb-F5-basic/templates/embed.min.js new file mode 120000 index 0000000..f54f36e --- /dev/null +++ b/zurb-F5-basic/templates/embed.min.js @@ -0,0 +1 @@ +/tmp/isso/lib/python2.7/site-packages/isso/js/embed.min.js
\ No newline at end of file |