hallelujah: ✨ it's back, that's all that matters
This commit is contained in:
parent
4575ca9bfc
commit
54a16cc77e
23 changed files with 1382 additions and 8 deletions
28
templates/gallery/gallery_entry.html
Normal file
28
templates/gallery/gallery_entry.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
{% extends "root.html" %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="stylesheet" href="/static/gallerystyle.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block second_title %}
|
||||
<h2> Gallery </h2>
|
||||
{% endblock %}
|
||||
|
||||
{%block main_content%}
|
||||
<figure>
|
||||
|
||||
<a href="{{ image_url }}" target="_blank">
|
||||
<img id="gallery_image" src="{{ image_url }}"> </img>
|
||||
</a>
|
||||
|
||||
<article>
|
||||
<figcaption id="gallery_title"> {{ image_title }} </figcaption>
|
||||
<span> {{ image_desc }} </span>
|
||||
<br>
|
||||
<a href="{{ artist_src_link }}"> Artist: {{ artist_name }} </a>
|
||||
<br>
|
||||
<a href="{{ image_src_link }}"> Source link </a>
|
||||
</article>
|
||||
</figure>
|
||||
{%endblock%}
|
18
templates/gallery/gallery_overview.html
Normal file
18
templates/gallery/gallery_overview.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
{% extends "root.html" %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="stylesheet" href="/static/gallerystyle.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block second_title %}
|
||||
<h2> Gallery </h2>
|
||||
{% endblock %}
|
||||
|
||||
{%block main_content%}
|
||||
<div id="gallery_root_grid">
|
||||
{% for key,value in array_path %}
|
||||
<div class=""
|
||||
{% endfor %}
|
||||
</div>
|
||||
{%endblock%}
|
Loading…
Add table
Add a link
Reference in a new issue