mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
As it is done when reading the file, we need to remove html tags for the permalink and the slug (this is done here for the notmyidea and simple themes). While modifying the themes I also replaced the `pagename` template tag with `article.url` (`pagename` was an empty variable, no more used ?).
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title|striptags }}{% endblock %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<article>
|
|
<header>
|
|
<h1 class="entry-title">
|
|
<a href="{{ article.url }}" rel="bookmark"
|
|
title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h1>
|
|
{% include 'twitter.html' %}
|
|
</header>
|
|
|
|
<div class="entry-content">
|
|
{% include 'article_infos.html' %}
|
|
{{ article.content }}
|
|
</div><!-- /.entry-content -->
|
|
{% if DISQUS_SITENAME %}
|
|
<div class="comments">
|
|
<h2>Comments !</h2>
|
|
<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 %}
|
|
|
|
</article>
|
|
</section>
|
|
{% endblock %}
|