mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-05-10 02:26:45 -07:00
update templates for webdog
This commit is contained in:
parent
f1d3d44ebf
commit
bb8c8a725f
5 changed files with 31 additions and 31 deletions
|
@ -1,14 +1,14 @@
|
|||
{% extends "base.tera" %}
|
||||
{% block content %}
|
||||
<div class="image-full">
|
||||
<h1 class="title">{{title}}</h1>
|
||||
<span class="timestamp">published {{timestamp}}</span>
|
||||
<img class="image-actual" src="{{cdn_file}}" alt="{{alt}}">
|
||||
{{ content | safe }}
|
||||
<p><a href="{{cdn_file}}">view full size image</a></p>
|
||||
<h1 class="title">{{ data.title }}</h1>
|
||||
<span class="timestamp">published {{ data.timestamp }}</span>
|
||||
<img class="image-actual" src="{{data.cdn_file}}" alt="{{data.alt}}">
|
||||
{{ data.content | safe }}
|
||||
<p><a href="{{data.cdn_file}}">view full size image</a></p>
|
||||
<h3 class="tags-title">tags</h3>
|
||||
<div class="image-tags">
|
||||
{% for tag in tags %}
|
||||
{% for tag in data.tags %}
|
||||
<a class="tag" href="/i/tag/{{tag}}/">{{tag}}</a>{% if not loop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue