diff options
Diffstat (limited to 'notes/index.html')
-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> |