diff options
author | lxf <sng@luxagraf.net> | 2021-01-07 16:49:29 -0500 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-01-07 16:49:29 -0500 |
commit | e61f3d2c4537a2670c40b33eb02231a71dfb028a (patch) | |
tree | 587120b5a497c9e70d46e3eae7d1a219b5d4858b /app/posts/templates | |
parent | 534fcd39b1e8d24556d3bf110245a7373ee0eeb6 (diff) |
added a photograpy section by tweaking Category model and then adding
some urls
Diffstat (limited to 'app/posts/templates')
-rw-r--r-- | app/posts/templates/posts/guide_by_topic.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/posts/templates/posts/guide_by_topic.html b/app/posts/templates/posts/guide_by_topic.html new file mode 100644 index 0000000..625ac5e --- /dev/null +++ b/app/posts/templates/posts/guide_by_topic.html @@ -0,0 +1,39 @@ +{% extends 'base.html' %} +{% load typogrify_tags %} +{% load html5_datetime %} +{% load pagination_tags %} +{% block pagetitle %}Guides, tutorials, tips, and tricks to improve your {{topic}}.{% endblock %} +{% block metadescription %}Guides for fellow travelers: tools, tips, and tricks to make life on the road in an RV or Van easier and more enjoyable.{% endblock %} + +{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> + <li><a href="/guides/" title="luxagraf guides" itemprop="url"><span itemprop="title">Guides</span></a> → </li> + <li itemprop="title">{{topic}}</li> + </ul> + <main role="main" id="guide-archive" class="essay-archive guide-archive archive-list"> + <div class="essay-intro"> + <h2>{{topic}} Guides</h2> + <h3>{{topic.description|safe|smartypants|widont}}</h3> + {{topic.intro_html|safe|smartypants|widont}} + </div> + {% autopaginate object_list 30 %} + <ul class="fancy-archive-list">{% for object in object_list %} + <li class="h-entry hentry" itemscope itemType="http://schema.org/Article"> + <a href="{{object.get_absolute_url}}" class="u-url"> + <div class="circle-img-wrapper"><img src="{{object.featured_image.get_thumbnail_url}}" alt="{{object.featured_image.alt}}" class="u-photo" /></div> + <span class="date dt-published">{{object.pub_date|date:"F d, Y"}}</span> + <a href="{{object.get_absolute_url}}"> + <h2>{{object.title|safe|smartypants|widont}}</h2> + {% if object.subtitle %}<h3 class="p-summary">{{object.subtitle|safe|smartypants|widont}}</h3>{%endif%} + </a> + {% if object.location %}<h4 class="p-location h-adr post-location" itemprop="geo" itemscope itemtype="http://data-vocabulary.org/Geo"> + <span class="p-locality">{{object.location.name|smartypants|safe}}</span>, + <span class="p-region">{{object.location.state_name}}</span>, + <span class="p-country-name">{{object.location.country_name}}</span> + <data class="p-latitude" value="{{object.latitude}}"></data> + <data class="p-longitude" value="{{object.longitude}}"></data> + </h4>{% endif %} + </li> + {%endfor%}</ul> + </main> +{%endblock%} |