diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/category.html | 4 | ||||
-rw-r--r-- | _layouts/note.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/_layouts/category.html b/_layouts/category.html index 066b3dd..efb34db 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -2,8 +2,8 @@ layout: default --- <h1>{{ page.title }}</h1> -<hr> -<p>This is a list of posts in the "{{ page.category }}" category.</p> +<hr/> +<p>This is a list of posts in category "{{ page.category }}".</p> {% if site.categories[page.category].size > 0 %} <ul> {% for post in site.categories[page.category] %} diff --git a/_layouts/note.html b/_layouts/note.html index 45f9b34..090100f 100644 --- a/_layouts/note.html +++ b/_layouts/note.html @@ -2,5 +2,5 @@ layout: default --- <h1>{{ page.title }}</h1> -<hr> +<hr/> {{ content }} |