summaryrefslogtreecommitdiff
path: root/design/templates/archives
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/archives')
-rw-r--r--design/templates/archives/resume-pubs.html26
-rw-r--r--design/templates/archives/resume.html30
2 files changed, 56 insertions, 0 deletions
diff --git a/design/templates/archives/resume-pubs.html b/design/templates/archives/resume-pubs.html
new file mode 100644
index 0000000..7569a8f
--- /dev/null
+++ b/design/templates/archives/resume-pubs.html
@@ -0,0 +1,26 @@
+{% extends 'base.html' %}
+{% load typogrify_tags %}
+{% load html5_datetime %}
+{% load pagination_tags %}
+{% block pagetitle %} Publications | Resume{% endblock %}
+{% block metadescription %} {% endblock %}
+{%block bodyid%}class="resume" id="publications-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><a href="/resume/">Resume</a> &rarr; </li>
+ <li>Publications</li>
+ </ul>
+ <main role="main">
+ <h1 class="hide">Publications</h1>
+{% regroup object_list by publisher.name as pub_list %}{% for pub in pub_list %}
+ <ul class="publications-list">
+ <li><h2>{{ pub.grouper }}</h2></li>
+ <ul>{% for object in pub.list %}
+ <li class=""><h3><a href="{{object.get_absolute_url}}">{{object.title|amp|smartypants|widont|safe}}</a></h3>
+ </li>{% endfor %}
+ </ul>{% endfor %}
+ </ul>
+ </main>
+{% endblock %}
diff --git a/design/templates/archives/resume.html b/design/templates/archives/resume.html
new file mode 100644
index 0000000..40ede8c
--- /dev/null
+++ b/design/templates/archives/resume.html
@@ -0,0 +1,30 @@
+{% extends 'base.html' %}
+{% load typogrify_tags %}
+
+{% block pagetitle %}{% endblock %}
+{% block metadescription %}{% 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>Resume</li>
+ </ul>
+ <main role="main">
+<p class="intro">Hello</p>
+
+<p>This is the website of Scott Gilbertson. I am a writer and publisher living in Athens, Georgia.</p>
+
+<p>I used to work for Wired.com, where I wrote for and later edited/produced <a href="http://www.webmonkey.com/">Webmonkey.com</a> among other sites. I still <a href="http://www.wired.com/reviews/author/scott-gilbertson/">freelance</a> for Wired (also, <a href="http://www.wired.com/author/luxagraf/">here</a>) and I write about open source software and related topics for publications like <a href="http://arstechnica.com/">Ars Technica</a>, <a href="theregister.co.uk/Author/1785">The Register</a> and elsewhere.</p>
+
+<p>I&#8217;ve also been published in some dead tree magazines like Consumer Digest and Budget Travel. I once appeared on National Public Radio.</p>
+
+<p>Perpetually out of date <a href="/resume/cv">curriculum vitæ</a> available for those who like such things.</p>
+
+<p>The personal section of my site, which is primarily about my travels can be found at <a href="https://luxagraf.net/">the root of this URL</a>.</p>
+
+<p>If you&#8217;d like me to write, edit, develop or consult on a website, you can contact me at sng @ luxagraf.net. </p>
+
+
+<p>Thank you for visiting.</p>
+ </main>
+ {%endblock%}