1 {% extends "base.html" %}
2 {% load comments i18n %}
3 {% load common_tags migdal_tags 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:10 }}{% endblock %}
10 {% block "ogimage" %}{% spaceless %}
12 {{ entry.image.url|build_absolute_uri:request }}
16 {% endspaceless %}{% endblock %}
19 {% block "main_menu" %}
20 {% main_menu 'object' entry %}
21 {% endblock "main_menu" %}
26 {% if not entry.published %}
27 <p class="warning">{% trans "This entry hasn't been published yet." %}</p>
30 <div class="entry entry-detail entry-{{ entry.type }}">
31 <div class="entry-wrapped">
33 {% entry_begin entry 1 %}
38 <div style="clear: both;"></div>
42 {% share object.get_absolute_url object.title %}
46 <div style="clear: both"></div>
48 {% if entry.get_type.commentable %}
49 {% render_comment_list for entry %}
50 <div class="comments">
51 {% entry_comment_form entry %}