Skip to content

Commit

Permalink
Move the closing div inside the block
Browse files Browse the repository at this point in the history
Fixes #1619. Move the closing div inside the block since it's defined
in the block anyway.
  • Loading branch information
Nigel Babu committed Mar 31, 2014
1 parent aebc52c commit d64cf3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/templates/package/resource_read.html
Expand Up @@ -68,8 +68,8 @@ <h3>{{ _('From the dataset abstract') }}</h3>
<blockquote>{{ h.markdown_extract(c.package.get('notes')) }}</blockquote>
<p>{% trans dataset=c.package.title, url=h.url_for(controller='package', action='read', id=c.package['name']) %}Source: <a href="{{ url }}">{{ dataset }}</a>{% endtrans %}
{% endif %}
{% endblock %}
</div>
</div>
{% endblock %}
</div>
{% block data_preview %}
{{ h.resource_preview(c.resource, c.package) }}
Expand Down

0 comments on commit d64cf3d

Please sign in to comment.