summaryrefslogtreecommitdiff
path: root/design/templates/archives/projects.html
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-11-06 09:42:47 -0400
committerlxf <sng@luxagraf.net>2021-11-06 09:42:47 -0400
commitd9f51299809bfb6b3ac589b7c42016d0ef240299 (patch)
treeaa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /design/templates/archives/projects.html
parentdde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff)
moved templates to top level directory
Diffstat (limited to 'design/templates/archives/projects.html')
-rw-r--r--design/templates/archives/projects.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/design/templates/archives/projects.html b/design/templates/archives/projects.html
deleted file mode 100644
index 738317f..0000000
--- a/design/templates/archives/projects.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends 'base.html' %}
-{% load typogrify_tags %}
-{% block pagetitle %}Luxagraf | Projects {% endblock %}
-{% block metadescription %}Travel Themes and Experiments {% endblock %}
-
-{%block bodyid%}class="archive"{%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> &rarr; </li>
- <li>Projects</li>
- </ul>
- <main class="projects">
- <div class="intro">
- <p>Luxagraf has become a bit like an iceberg over the years. I keep adding things to it, but never actually make them public. So I decided to try making some of it more public. </p>
- <p>This will lead you to some of the previously submerged stuff that doesn't always neatly fit in with the travel narrative portion of luxagraf. </p>
- </div>
- <ul id="projects-archive" class="wide-list">{%for object in object_list %}
- <li>
- <a href="{{object.get_absolute_url}}" title="{{object.title}}">
- <img sizes="(max-width: 850px) 100vw, (min-width: 851px) 720px" srcset="{{object.get_project_image|slice:"0:-4"}}_lg.jpg 1280w" src="{{object.get_project_image}}" alt="{{ object.title }}" class="post-image" />
- </a>
- <div class="wide-wrapper">
- <h2 class="post-title"><a href="{{object.get_absolute_url}}" title="{{object.title}}">{{object.title|safe}}</a></h2>
- <div class="post-summary">{{object.lede|safe|smartypants}}</div>
- <a class="permalink" href="{{object.get_absolute_url}}">Explore&nbsp;&#8674;</a>
- </div>
- </li> {% endfor %}
- </ul>
- </main>
-{% endblock %}
-
-{% block js %}<script src="/media/js/hyphenate.min.js" type="text/javascript"></script>{% endblock%}