add: prev and next button template
This commit is contained in:
parent
a106770769
commit
c92fc36b40
@ -4,6 +4,14 @@
|
||||
<link rel="stylesheet" href="../page.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="navigation">
|
||||
{% if prev %}
|
||||
<a href={{ prev }}>Prev</a>
|
||||
{% endif %}
|
||||
{% if next %}
|
||||
<a class="next" href={{ next }}>Next</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if readme %}
|
||||
<div class="readme">
|
||||
<div class="readme-content">
|
||||
@ -15,10 +23,12 @@
|
||||
<div class="image-container">
|
||||
<div class="image-container-element">
|
||||
<img src='{{ image[1] }}'>
|
||||
<a href="{{ image[0] }}">Large</a>
|
||||
{% if image|length > 2 %}
|
||||
<a class="export" href="{{ image[2] }}">export file</a>
|
||||
{% endif %}
|
||||
<div class="meta-image">
|
||||
<a href="{{ image[0] }}">Large</a>
|
||||
{% if image|length > 2 %}
|
||||
<a class="export" href="{{ image[2] }}">export file</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user