{% extends 'base.html' %}
{% load typogrify_tags %}
{% load html5_datetime %}
{% load pagination_tags %}
{% block pagetitle %} Publications | Resume{% endblock %}
{% block metadescription %} {% endblock %}
{%block bodyid%}class="resume" id="publications-archive"{%endblock%}
{% block primary %}
Publications
By Publication
{% regroup object_list|dictsort:"publisher_id" by publisher.name as pub_list %}{% for pub in pub_list %}{%if forloop.counter < 15 %}
-
{{ pub.grouper }}
{% for object in pub.list %}
-
{% endfor %}
View all articles published by {{pub.grouper}}
{% endif %}{% endfor %}
{% endblock %}