24 lines
465 B
HTML
24 lines
465 B
HTML
|
|
{% extends "pathed_content.html" %}
|
|
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" href="/static/imagestyle.css">
|
|
{%endblock%}
|
|
|
|
{% block opengraph_tags %}
|
|
{{ parent() }}
|
|
|
|
<meta property="og:type" content="image" />
|
|
{%endblock %}
|
|
|
|
{%block content_article%}
|
|
<figure>
|
|
<a target="_blank" href="{{page.media_url}}">
|
|
<img id="gallery_image" src="{{page.media_url}}"></img>
|
|
</a>
|
|
|
|
<figcaption>
|
|
{{ page.html|raw }}
|
|
</figcaption>
|
|
</figure>
|
|
{%endblock%}
|