Browse Source

Add region and city to meta section

pm2
Luke Childs 8 years ago
parent
commit
9ae8957b0d
  1. 8
      views/node.html

8
views/node.html

@ -106,6 +106,14 @@
<dt>Country</dt>
<dd>{{ node.country_name }}</dd>
{% endif %}
{% if node.region_name %}
<dt>Region</dt>
<dd>{{ node.region_name }}</dd>
{% endif %}
{% if node.city_name %}
<dt>City</dt>
<dd>{{ node.city_name }}</dd>
{% endif %}
</dl>
</section>

Loading…
Cancel
Save