Basic functionality ready.
This commit is contained in:
28
viewer/templates/image_view.html
Normal file
28
viewer/templates/image_view.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html style="height:100%;">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, height=device-height" />
|
||||
<title>
|
||||
Vieweing folder: {{path}}
|
||||
</title>
|
||||
<link href="{% static 'css/styles.css' %}" rel="stylesheet">
|
||||
</head>
|
||||
<body class="background">
|
||||
<div class="centered-container">
|
||||
<a href="/gallery/">
|
||||
<img src="{% static 'imgs/gohome.png' %}">
|
||||
</a>
|
||||
<a href="..">
|
||||
<img src="{% static 'imgs/back.png' %}">
|
||||
</a>
|
||||
</div>
|
||||
<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>
|
Reference in New Issue
Block a user