diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 14:46:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-30 14:46:26 +0300 |
commit | 72f7f01476de1715db939449b034c444207e6f11 (patch) | |
tree | 786d072cca2edc0cc2347f9752ee9d777e149302 /notes | |
parent | add default layouts to _config.yml (diff) | |
download | jekyll-theme-72f7f01476de1715db939449b034c444207e6f11.tar.gz jekyll-theme-72f7f01476de1715db939449b034c444207e6f11.zip |
minor markup & wording fixes
Diffstat (limited to 'notes')
-rw-r--r-- | notes/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/notes/index.html b/notes/index.html index b853332..2cfa42c 100644 --- a/notes/index.html +++ b/notes/index.html @@ -7,13 +7,13 @@ navbar_link: <span class="glyphicon glyphicon-search"></span> Notes navbar_priority: 3 --- <h1>{{ page.title }}</h1> -<hr> +<hr/> {% if site.notes.size != 0 %} - <p>This is a complete list of "notes" I maintain.</p> + <p>This is a complete list of notes I maintain for my personal usage.</p> <ul> - {% for note in site.notes %} - <li><a href="{{ site.baseurl }}{{ note.url }}">{{ note.title }}</a></li> - {% endfor %} + {% for note in site.notes %} + <li><a href="{{ site.baseurl }}{{ note.url }}">{{ note.title }}</a></li> + {% endfor %} </ul> {% else %} <p>No notes have been added yet.</p> |