35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html style="height:100%;">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, height=device-height" />
|
|
<title>
|
|
File: {{image_path.name}}
|
|
</title>
|
|
<link href="{% static 'css/styles.css' %}" rel="stylesheet">
|
|
</head>
|
|
<body class="background">
|
|
<table class="fc mauto">
|
|
<tr>
|
|
<td>
|
|
<a href="/gallery/">
|
|
<img src="{% static 'imgs/gohome.png' %}" class="small-nav-icon">
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="..">
|
|
<img src="{% static 'imgs/back.png' %}" class="small-nav-icon">
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="centered-container">
|
|
<div class="image-container">
|
|
<a href="{{image_path}}" target="_blank">
|
|
<img src="{{image_path}}" class="image">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|