diff options
author | Yuchen Pei <me@ypei.me> | 2018-05-11 17:10:58 +0200 |
---|---|---|
committer | Yuchen Pei <me@ypei.me> | 2018-05-11 17:10:58 +0200 |
commit | db786e35abb644d83f78c21e8c4f10e1d6568a5e (patch) | |
tree | ddbc2df9a7072c86830122a89b7ac683a494c7e5 /templates/barepost.html | |
parent | 08a326a3a2fc423ce498b0d80edecb7e596f1f28 (diff) |
changed layout of blog.html
- cut post length on blog.html to synopsis, defaulted to one paragraph
long
- edited engine accordingly
Diffstat (limited to 'templates/barepost.html')
-rw-r--r-- | templates/barepost.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/barepost.html b/templates/barepost.html index 4a7e2a3..ec4db1a 100644 --- a/templates/barepost.html +++ b/templates/barepost.html @@ -1,5 +1,6 @@ <div class="bodyitem"> <a href="$url$"><h2> $title$ </h2></a> <p>Posted on $date$</p> - $body$ + $synopsis$ + <a href="$url$">Continue reading</a> </div> |