diff --git a/styles/less/main.less b/styles/less/main.less index 9ea2c58..1b9433b 100644 --- a/styles/less/main.less +++ b/styles/less/main.less @@ -344,3 +344,11 @@ ul.form-pager { span.uuid { font-family: monospace; } +span.coords { + font-family: monospace; +} + +.single-photo-map span.coords { + text-align: center; + display: block; +} diff --git a/templates/photo.html b/templates/photo.html index 419d177..f2a9f74 100644 --- a/templates/photo.html +++ b/templates/photo.html @@ -14,8 +14,12 @@ {% endblock %} -{% block body %} +{% block head %} + + +{% endblock %} +{% block body %}
@@ -23,10 +27,38 @@
- {% if image.description %} -
-

Description

-

{{ image.description }}

+ {% if image.lat and image.lon %} +
+
+ +
+ {{ image.lat }}, {{ image.lon }} +
{% endif %} + {% if image.description %} +
+

Description

+

{{ image.description }}

+
+ {% endif %}

Versions

    @@ -106,5 +139,4 @@
- {% endblock %}