From efb623af0bcb47d510501c282e1326b11343a29c Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 22 Sep 2012 22:27:04 -0400 Subject: site reorg --- design/templates/archives/guide.html | 51 +++++++++++++++++++++++++++++++++ design/templates/archives/homepage.html | 31 ++++++++++++++++++++ design/templates/archives/map.html | 35 ++++++++++++++++++++++ design/templates/archives/photos.html | 32 +++++++++++++++++++++ design/templates/archives/projects.html | 29 +++++++++++++++++++ design/templates/archives/writing.html | 38 ++++++++++++++++++++++++ 6 files changed, 216 insertions(+) create mode 100644 design/templates/archives/guide.html create mode 100644 design/templates/archives/homepage.html create mode 100644 design/templates/archives/map.html create mode 100644 design/templates/archives/photos.html create mode 100644 design/templates/archives/projects.html create mode 100644 design/templates/archives/writing.html (limited to 'design/templates/archives') diff --git a/design/templates/archives/guide.html b/design/templates/archives/guide.html new file mode 100644 index 0000000..27ac756 --- /dev/null +++ b/design/templates/archives/guide.html @@ -0,0 +1,51 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% load pagination_tags %} + +{% block pagetitle %}Luxagraf | {% if region %}Travel Guide {{region.name|title|smartypants|safe}}{%else%} Travel Guides, Tips, Tricks and Recommendations {%endif%} Page {{page}}{% endblock %} +{% block metadescription %}{% if region %}A Travel Guide, Tips, Tricks and Recommendations for {{region.name|title|smartypants|safe}}{%else%}Travel Guides, Tips, Tricks and Recommendations {%endif%} Page {{page}}{% endblock %} +{%block bodyid%}id="guide-archive" class="guide"{%endblock%} + + +{% block primary %} + +
+

Travel Guides

+

What I Know About Where I've Been

+
+

The essays on luxagraf rarely offer much travel advice. I don't often write about places I stay, where I eat, the gear I carry or even how to get from here to there. At the same time I always save business cards and write down addresses almost everywhere I go. + Until now I haven't really done anything with that information, save tell a few friends headed in similar directions. So I decided to created this, the travel guide section, so you can know what I know. I even busted out the video camera for a few of these. Just bear in mind that this is my experience, yours may be very different. That's okay.

+
+ + +
{% autopaginate object_list 10 %} {% for object in object_list %} + {% endfor %} +
+ +{% endblock %} + + + +{% block js %}{% endblock%} + + + +{% if object.location %}

{% if object.country_name == "United States" %}{{object.location_name|smartypants|safe}}, {{object.state_name}}{%else%}{{object.location_name|smartypants|safe}}, {{object.country_name}}{%endif%} + +

{%endif%} diff --git a/design/templates/archives/homepage.html b/design/templates/archives/homepage.html new file mode 100644 index 0000000..11cbf4b --- /dev/null +++ b/design/templates/archives/homepage.html @@ -0,0 +1,31 @@ +{% extends 'base.html' %} +{% load typogrify %} +{%block bodyid%}id="home"{%endblock%} + +{% block primary %}
+ +
+ {%comment%}
+

5x5

Interviews From The Road

Lorem sit amet, consectetur adipiscing elit. Duis cursus sodales eros – William Brandon III

+
{%endcomment%} +
+

From the Archive

+ {% include 'includes/recent_entries.html' %} +
+{% endblock %} + +{% block js %}{% endblock%} diff --git a/design/templates/archives/map.html b/design/templates/archives/map.html new file mode 100644 index 0000000..effe150 --- /dev/null +++ b/design/templates/archives/map.html @@ -0,0 +1,35 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% load truncateletters %} +{% load slugify_under %} + +{% block pagetitle %}Luxagraf | Map and Trips{% endblock %} +{% block metadescription %}Browse luxagraf by map, see trip routes and discover essays and dispatches from around the world{% endblock %} + +{#============================================== +Google Maps code +==============================================#} +{% block extrahead %} + + + + + +{% endblock %} +{%block bodyid%}id="map" {%endblock%} +{% block bodyevents %}onload="initialize()"{% endblock %} + + + + + +{% block primary %} +
+

Browse luxagraf by map

+
+ {% include 'includes/map_sidebar.html' %} +
+{% endblock %} diff --git a/design/templates/archives/photos.html b/design/templates/archives/photos.html new file mode 100644 index 0000000..bc06f5c --- /dev/null +++ b/design/templates/archives/photos.html @@ -0,0 +1,32 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% load pagination_tags %} + +{% block pagetitle %}Luxagraf | {% if region %}Photo Galleries: Images from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%} Page {{page}}{% endblock %} +{% block metadescription %}{% if region %}Photo Galleries from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%} Page {{page}}{% endblock %} + + +{%block bodyid%}id="photo-archive"{%endblock%} + +{% block primary %} +
+

{% if region %}Photographs from {{region.name|title|smartypants|safe}}{%else%}Photographs from Around the World {%endif%}

+ +
+ +{% endblock %} diff --git a/design/templates/archives/projects.html b/design/templates/archives/projects.html new file mode 100644 index 0000000..f266c08 --- /dev/null +++ b/design/templates/archives/projects.html @@ -0,0 +1,29 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% block pagetitle %}Luxagraf | Projects {% endblock %} +{% block metadescription %}Travel Themes and Experiments {% endblock %} + +{%block bodyid%}id="projects-page"{%endblock%} + +{% block primary %} +
+

These are a few of the things that I use to inspire myself to do more. The truth is, just about everything is amazing when viewed from the proper perspective.

+

The projects on luxagraf are more or less goals I've created in effort to get my body in motion, because the difference between the mundane and the amazing is often simply motion. To move is to do, and to do is to live.

+
+
+

Projects

{%for object in object_list %} + {% endfor %} +
+{% endblock %} + +{% block js %}{% endblock%} diff --git a/design/templates/archives/writing.html b/design/templates/archives/writing.html new file mode 100644 index 0000000..983b59a --- /dev/null +++ b/design/templates/archives/writing.html @@ -0,0 +1,38 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% load pagination_tags %} + +{% block pagetitle %}Luxagraf | {% if region %}Travel Writing from {{region.name|title|smartypants|safe}}{%else%}Travel Writing from Around the World {%endif%} Page {{page}}{% endblock %} +{% block metadescription %}{% if region %}Travel writing, essays and dispatches from {{region.name|title|smartypants|safe}}{%else%}Travel writing, essays and dispatches from around the world{%endif%} Page {{page}}{% endblock %} +{%block bodyid%}id="writing"{%endblock%} + + +{% block primary %} +
+

{% if region %}Writing Archive from {%if region.name == 'United States'%}the United States{%else%}{{region.name|title|smartypants|safe}}{%endif%}{%else%}Writing Archive {%endif%}

{% autopaginate object_list 10 %} {% for object in object_list %} + {% endfor %} +
+ +{% endblock %} + + + +{% block js %}{% endblock%} -- cgit v1.2.3-70-g09d2