diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2021-06-06 12:56:44 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2021-06-06 12:56:44 -0600 |
commit | 403bcd7509498638b6e34d38eb29e1c3620917c9 (patch) | |
tree | b10d853a923a85d4bd981a5b301abd3c1f5a8a7f /art/plt/page.html | |
parent | 55cfef7fcaad7a657336b8be62508be9f631ff86 (diff) |
finish base art page and upload first post
Diffstat (limited to 'art/plt/page.html')
-rw-r--r-- | art/plt/page.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/art/plt/page.html b/art/plt/page.html index dbb2734..55a0c90 100644 --- a/art/plt/page.html +++ b/art/plt/page.html @@ -14,15 +14,19 @@ {%block content%} <h1>{{page.title}}</h1> + <a class="zoom-in" href="{{page.image_url}}" alt="See raw."> + <img src="{{page.image_url}}" alt="{{page.summary}}"> + </a> + {{page.content}} + {%import "art_nav.html" as art_nav%} + {{art_nav.print(page, config)}} + <hr> - <div class="article-info"> - <p>By {{page.author}}</p> - <p>Created: {{page.cdate}}</p> - {%if page.mdate is not none%} - <p>Modified: {{page.mdate}}</p> - {%endif%} + <div class="art-info"> + <p>By: {{page.author}}</p> + <p>Posted: {{page.cdate}}</p> {%import "tag_list.html" as tag_list%} {{tag_list.print(page.tags)}} </div> |