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 %}
21 {% if not entry.published %}
22 <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
25 <div class="entry entry-detail entry-{{ entry.type }}">
26 <div class="entry-wrapped">
28 {% entry_begin entry 1 %}
32 {% for inline_html in entry.inline_html %}
33 <div class="inline_html">
34 {{ inline_html|safe }}
40 <div style="clear: both;"></div>
44 {% share object.get_absolute_url object.title %}
48 <div style="clear: both"></div>
50 {% if entry.get_type.commentable %}
51 {% render_comment_list for entry %}
52 <div class="comments">
53 {% entry_comment_form entry %}