refactor: move all HTTP-Website code into www subdirectory
Some checks failed
/ phplint (push) Failing after 4s
Some checks failed
/ phplint (push) Failing after 4s
This commit is contained in:
parent
502ddd1ad9
commit
5bcba0b689
25 changed files with 33 additions and 67 deletions
28
www/templates/gallery/gallery_entry.html
Normal file
28
www/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%}
|
Loading…
Add table
Add a link
Reference in a new issue