diff options
Diffstat (limited to 'gum')
-rw-r--r-- | gum/templates/article.html | 15 | ||||
-rw-r--r-- | gum/templates/base.html | 1 | ||||
-rw-r--r-- | gum/templates/disqus_script.html | 11 | ||||
-rw-r--r-- | gum/templates/index.html | 2 | ||||
-rw-r--r-- | gum/templates/sidebar.html | 4 | ||||
-rw-r--r-- | gum/templates/tag.html | 2 | ||||
-rw-r--r-- | gum/templates/tags.html | 2 |
7 files changed, 32 insertions, 5 deletions
diff --git a/gum/templates/article.html b/gum/templates/article.html index e43e48e..15188d0 100644 --- a/gum/templates/article.html +++ b/gum/templates/article.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{% endblock %} {% block content %} <section id="content" class="body"> @@ -26,6 +27,20 @@ <div class="entry-content"> {{ article.content }} </div><!-- /.entry-content --> + {% if DISQUS_SITENAME %} + <div class="comments"> + <h3>Comments</h3> + <div id="disqus_thread"></div> + <script type="text/javascript"> + var disqus_identifier = "{{ article.url }}"; + (function() { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + })(); + </script> + </div> + {% endif %} </div><!-- /.eleven.columns --> diff --git a/gum/templates/base.html b/gum/templates/base.html index 61a38d1..afae24d 100644 --- a/gum/templates/base.html +++ b/gum/templates/base.html @@ -146,6 +146,7 @@ </div> +{% include 'disqus_script.html' %} <script src="{{ SITEURL }}/theme/js/libs/jquery-1.9.1.min.js"></script> <script src="{{ SITEURL }}/theme/js/libs/gumby.min.js"></script> <script src="{{ SITEURL }}/theme/js/plugins.js"></script> diff --git a/gum/templates/disqus_script.html b/gum/templates/disqus_script.html new file mode 100644 index 0000000..c4f442c --- /dev/null +++ b/gum/templates/disqus_script.html @@ -0,0 +1,11 @@ +{% if DISQUS_SITENAME %} +<script type="text/javascript"> + var disqus_shortname = '{{ DISQUS_SITENAME }}'; + (function () { + var s = document.createElement('script'); s.async = true; + s.type = 'text/javascript'; + s.src = 'http://' + disqus_shortname + '.disqus.com/count.js'; + (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); + }()); +</script> +{% endif %} diff --git a/gum/templates/index.html b/gum/templates/index.html index 83abf70..aae5ea5 100644 --- a/gum/templates/index.html +++ b/gum/templates/index.html @@ -28,7 +28,7 @@ {% if article.tags %} <span>Tagged as : </span> {% for tag in article.tags %} - <a class="danger label" href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> + <a class="danger label" href="{{ SITEURL }}/{{ tag.url }}">{{ tag|e }}</a> {% endfor %} {% endif %} </div> diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html index 43ed62a..442549e 100644 --- a/gum/templates/sidebar.html +++ b/gum/templates/sidebar.html @@ -33,7 +33,7 @@ {% if tags %} <ul> {% for tag in tag_cloud %} - <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0|string|replace(" ", "-" )|lower }}.html">{{ tag.0 }}</a></li> + <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0|e }}</a></li> {% endfor %} </ul> {% endif %} @@ -50,4 +50,4 @@ </nav> {% endif %} -</div>
\ No newline at end of file +</div> diff --git a/gum/templates/tag.html b/gum/templates/tag.html index 68cdcba..dc697fe 100644 --- a/gum/templates/tag.html +++ b/gum/templates/tag.html @@ -1,2 +1,2 @@ {% extends "index.html" %} -{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %} +{% block title %}{{ SITENAME }} - {{ tag|e }}{% endblock %} diff --git a/gum/templates/tags.html b/gum/templates/tags.html index 862eff6..ec380b7 100644 --- a/gum/templates/tags.html +++ b/gum/templates/tags.html @@ -5,7 +5,7 @@ {% for tag in tag_cloud %} <li class="tag-{{ tag.1 }}"> <a href="{{ SITEURL }}/{{ tag.0.url }}"> - <i class="icon-tag icon-large"></i>{{ tag.0 }} + <i class="icon-tag icon-large"></i>{{ tag.0|e }} </a> </li> {% endfor %} |