|
@@ -4,20 +4,20 @@
|
4
|
4
|
<h1 class="title">{$index.title}</h1>
|
5
|
5
|
{foreach $post in $index.posts}
|
6
|
6
|
<div class="article-meta">
|
7
|
|
- <a class="article-title" href="{$config.domain}/posts/{$post.slug}{$config.pageExt}">{$post.title}</a>
|
|
7
|
+ <a class="article-title" href="{$config.domain}/posts/{$post.slug}.{$config.pageExt}">{$post.title}</a>
|
8
|
8
|
<div class="date"> posted on {$post.date}</div>
|
9
|
9
|
<div class="article">{$post.text |noAutoescape}</div>
|
10
|
10
|
</div>
|
11
|
11
|
{/foreach}
|
12
|
12
|
<div id="relative-nav">
|
13
|
|
- {if $prev} <a href="{$prev}{$config.pageExt}">Previous</a> {/if}
|
14
|
|
- {if $next} <a href="{$next}{$config.pageExt}">Next</a> {/if}
|
|
13
|
+ {if $prev} <a href="{$prev}.{$config.pageExt}">Previous</a> {/if}
|
|
14
|
+ {if $next} <a href="{$next}.{$config.pageExt}">Next</a> {/if}
|
15
|
15
|
</div>
|
16
|
16
|
{if $tags}
|
17
|
17
|
<div id="tagsoup">
|
18
|
18
|
<p>This blog covers
|
19
|
19
|
{foreach $tag in $tags}
|
20
|
|
- <a href="{$config.domain}/tag/{$tag.slug}{$config.pageExt}">{$tag.name}</a>{nil}
|
|
20
|
+ <a href="{$config.domain}/tag/{$tag.slug}.{$config.pageExt}">{$tag.name}</a>{nil}
|
21
|
21
|
{if not isLast($tag)},{sp}{/if}
|
22
|
22
|
{/foreach}
|
23
|
23
|
</div>
|
|
@@ -26,7 +26,7 @@
|
26
|
26
|
<div id="monthsoup">
|
27
|
27
|
<p>View posts from
|
28
|
28
|
{foreach $month in $months}
|
29
|
|
- <a href="{$config.domain}/date/{$month}{$config.pageExt}">{$month}</a>{nil}
|
|
29
|
+ <a href="{$config.domain}/date/{$month}.{$config.pageExt}">{$month}</a>{nil}
|
30
|
30
|
{if not isLast($month)},{sp}{/if}
|
31
|
31
|
{/foreach}
|
32
|
32
|
</div>
|