added titles to previous/next links in default template

This commit is contained in:
p4bl0 2011-05-31 17:06:58 +02:00
parent 5154b86f6e
commit 5dfb982bdc
2 changed files with 8 additions and 4 deletions

View File

@ -3,12 +3,14 @@
<ul class="nav">
<?fugitive ifset:article_previous_file ?>
<li>
<a href="<?fugitive article_previous_file ?>.html">« previous</a>
<a href="<?fugitive article_previous_file ?>.html"
title="<?fugitive article_previous_title ?>">« previous</a>
</li>
<?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?>
<li>
<a href="<?fugitive article_next_file ?>.html">next »</a>
<a href="<?fugitive article_next_file ?>.html"
title="<?fugitive article_next_title ?>">next »</a>
</li>
<?fugitive endifset:article_next_file ?>
</ul>

View File

@ -27,12 +27,14 @@
<ul class="nav">
<?fugitive ifset:article_previous_file ?>
<li>
<a href="<?fugitive article_previous_file ?>.html">« previous</a>
<a href="<?fugitive article_previous_file ?>.html"
title="<?fugitive article_previous_title ?>">« previous</a>
</li>
<?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?>
<li>
<a href="<?fugitive article_next_file ?>.html">next »</a>
<a href="<?fugitive article_next_file ?>.html"
title="<?fugitive article_next_title ?>">next »</a>
</li>
<?fugitive endifset:article_next_file ?>
</ul>