1 {% extends "base.html" %}
2 {% load comments i18n %}
3 {% load fnp_common migdal_tags fnp_share %}
6 {% block "titleextra" %}{{ entry.title }} :: {% endblock %}
7 {% block "ogtitle" %}{{ entry.title }}{% endblock %}
8 {% block "ogtype" %}article{% endblock %}
9 {% block "ogdescription"%}{{ entry.lead|striptags|truncatewords:16 }}{% endblock %}
10 {% block "ogimage" %}{% spaceless %}
12 {{ entry.image.url|build_absolute_uri:request }}
16 {% endspaceless %}{% endblock %}
18 {% block "headextra" %}
19 {% if entry.canonical_url %}<link rel="canonical" href="{{ entry.canonical_url }}"/>{% endif %}
25 {% if not entry.published %}
26 <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
29 <div class="entry entry-detail entry-{{ entry.type }}">
30 <div class="entry-wrapped">
32 {% entry_begin entry 1 %}
36 {% for inline_html in entry.inline_html %}
37 <div class="inline_html">
38 {{ inline_html|safe }}
44 <div style="clear: both;"></div>
48 {% share object.get_absolute_url object.title %}
52 <div style="clear: both"></div>
54 {% if entry.get_type.commentable %}
55 {% render_comment_list for entry %}
56 <div class="comments">
57 {% entry_comment_form entry %}