From b61d59400a030ab8d21ba17a6d3a894de1963299 Mon Sep 17 00:00:00 2001 From: Erik Strand <erik.strand@cba.mit.edu> Date: Thu, 9 May 2019 16:22:32 -0400 Subject: [PATCH] Use normal sized text for lists on index pages --- notes.html | 2 +- psets.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notes.html b/notes.html index ff57d2e..bbae9be 100644 --- a/notes.html +++ b/notes.html @@ -6,7 +6,7 @@ title: Notes <ul> {% for note in site.notes %} <li> - <h2><a href="{{ note.url | real_relative_url }}">{{ note.title }}</a></h2> + <a href="{{ note.url | real_relative_url }}">{{ note.title }}</a> </li> {% endfor %} </ul> diff --git a/psets.html b/psets.html index 1efc5d6..218a26b 100644 --- a/psets.html +++ b/psets.html @@ -6,7 +6,7 @@ title: Problem Sets <ul> {% for pset in site.psets %} <li> - <h2><a href="{{ pset.url | real_relative_url }}">{{ pset.title }}</a></h2> + <a href="{{ pset.url | real_relative_url }}">{{ pset.title }}</a> </li> {% endfor %} </ul> -- GitLab