		{% spaceless %}
			{% if paginator.has_previous_page %}
				<a class="paginator arrow" href="{{ paginator.previous_link }}">&#171; Previous</a>
			{% else %}
				<span class="paginator disabled arrow">&#171; Previous</span>
			{% endif %}
			<!-- {{ paginator.start_index }} - {{ paginator.end_index }} of {{ paginator.hits }} -->
			{% for set in paginator.windowed_page_links %}
				{% if not forloop.first %}...{% endif %}
				{% for p in set %}
					{% if p.2 %}
						<span class="paginator current_page">{{ p.0 }}</span>
					{% else %}
						<a class="paginator" href ="{{ p.1 }}">{{ p.0 }}</a>
					{% endif %}
				{% endfor %}
			{% endfor %}
			{% if paginator.has_next_page %}
				<a class="paginator arrow" href="{{ paginator.next_link }}">Next &#187;</a>
			{% else %}
				<span class="paginator disabled arrow">Next &#187;</span>
			{% endif %}
		{% endspaceless %}