Replace Font Awesome icons with Material Design

This commit is contained in:
Jeremy Stretch
2020-11-06 14:33:20 -05:00
parent d388472773
commit 867f308027
1820 changed files with 312 additions and 143922 deletions

View File

@@ -5,7 +5,7 @@
<nav>
<ul class="pagination pull-right">
{% if page.has_previous %}
<li><a href="{% querystring request page=page.previous_page_number %}"><i class="fa fa-angle-double-left"></i></a></li>
<li><a href="{% querystring request page=page.previous_page_number %}"><i class="mdi mdi-chevron-double-left"></i></a></li>
{% endif %}
{% for p in page.smart_pages %}
{% if p %}
@@ -15,7 +15,7 @@
{% endif %}
{% endfor %}
{% if page.has_next %}
<li><a href="{% querystring request page=page.next_page_number %}"><i class="fa fa-angle-double-right"></i></a></li>
<li><a href="{% querystring request page=page.next_page_number %}"><i class="mdi mdi-chevron-double-right"></i></a></li>
{% endif %}
</ul>
</nav>