1) Fixes list display

2) Lets us put links in category descriptions
This commit is contained in:
Christopher Neugebauer 2016-10-05 10:25:44 -07:00
parent 42892ea3c8
commit 99ba4c1770
3 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@
<h2>{{ section.title }}</h2> <h2>{{ section.title }}</h2>
{% if section.description %} {% if section.description %}
<blockquote>{{ section.description }}</blockquote> <blockquote>{{ section.description|safe }}</blockquote>
{% endif %} {% endif %}
<fieldset> <fieldset>

View file

@ -46,7 +46,7 @@
<h2>{{ category.name }}</h2> <h2>{{ category.name }}</h2>
<blockquote>{{ category.description }}</blockquote> <blockquote>{{ category.description|safe }}</blockquote>
<fieldset> <fieldset>

View file

@ -663,7 +663,7 @@ ol {
ul > li, ul > li,
ol > li { ol > li {
list-style-position: inside; list-style-position: outside;
margin-left: 1em; margin-left: 1em;
} }