1) Fixes list display
2) Lets us put links in category descriptions
This commit is contained in:
parent
42892ea3c8
commit
99ba4c1770
3 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
<h2>{{ section.title }}</h2>
|
||||
|
||||
{% if section.description %}
|
||||
<blockquote>{{ section.description }}</blockquote>
|
||||
<blockquote>{{ section.description|safe }}</blockquote>
|
||||
{% endif %}
|
||||
|
||||
<fieldset>
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
|
||||
<h2>{{ category.name }}</h2>
|
||||
<blockquote>{{ category.description }}</blockquote>
|
||||
<blockquote>{{ category.description|safe }}</blockquote>
|
||||
|
||||
<fieldset>
|
||||
|
||||
|
|
|
@ -663,7 +663,7 @@ ol {
|
|||
|
||||
ul > li,
|
||||
ol > li {
|
||||
list-style-position: inside;
|
||||
list-style-position: outside;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue