Skip to content
Snippets Groups Projects
Commit b61d5940 authored by Erik Strand's avatar Erik Strand
Browse files

Use normal sized text for lists on index pages

parent 753a61d7
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ title: Notes ...@@ -6,7 +6,7 @@ title: Notes
<ul> <ul>
{% for note in site.notes %} {% for note in site.notes %}
<li> <li>
<h2><a href="{{ note.url | real_relative_url }}">{{ note.title }}</a></h2> <a href="{{ note.url | real_relative_url }}">{{ note.title }}</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
...@@ -6,7 +6,7 @@ title: Problem Sets ...@@ -6,7 +6,7 @@ title: Problem Sets
<ul> <ul>
{% for pset in site.psets %} {% for pset in site.psets %}
<li> <li>
<h2><a href="{{ pset.url | real_relative_url }}">{{ pset.title }}</a></h2> <a href="{{ pset.url | real_relative_url }}">{{ pset.title }}</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment