1
0
Fork 0
mirror of https://git.ludikovsky.name/git/fugitive.git synced 2024-05-18 14:35:32 +02:00

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"> <ul class="nav">
<?fugitive ifset:article_previous_file ?> <?fugitive ifset:article_previous_file ?>
<li> <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> </li>
<?fugitive endifset:article_previous_file ?> <?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?> <?fugitive ifset:article_next_file ?>
<li> <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> </li>
<?fugitive endifset:article_next_file ?> <?fugitive endifset:article_next_file ?>
</ul> </ul>

View file

@ -27,12 +27,14 @@
<ul class="nav"> <ul class="nav">
<?fugitive ifset:article_previous_file ?> <?fugitive ifset:article_previous_file ?>
<li> <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> </li>
<?fugitive endifset:article_previous_file ?> <?fugitive endifset:article_previous_file ?>
<?fugitive ifset:article_next_file ?> <?fugitive ifset:article_next_file ?>
<li> <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> </li>
<?fugitive endifset:article_next_file ?> <?fugitive endifset:article_next_file ?>
</ul> </ul>