diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/templates/index.html b/templates/index.html index 4695387..c275df3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,10 +1,14 @@ {{#articles}} <article> - <h2><a href='{{url}}'>{{title}}</a></h2> - <p>posted {{date}} by {{author}} - {{#lead}} - <p class=lead>{{lead}} - {{/lead}} + <header> + <h2><a href='{{url}}'>{{title}}</a></h2> + <p>posted {{date}}, by {{author}} + </header> + {{&text}} </article> {{/articles}} +{{#next}} +<p><a href='{{archive}}#{{slug}}'>More</a> +{{/next}} + |