snipt/blogs/templates/blogs/themes/pro-adams/base.html

143 lines
6.3 KiB
HTML
Raw Normal View History

{% load snipt_tags %}
<!DOCTYPE html>
<html lang="en" class="{% block html-class %}{% endblock %}">
<head>
2012-09-18 09:44:00 -07:00
<title>
{% block page-title %}
{% if blog_user.username == 'nick' %}// Nick Sergeant{% elif blog_user.username == 'ashley' %}// Ashley Sergeant{% elif blog_user.username == 'blog' %}// Snipt Blog{% else %}// {{ blog_user.username }}{% endif %}{% endblock %}</title>
<meta charset="utf-8" />
{% if 'page' in request.GET %}
<meta name="robots" content="noindex, follow" />
{% endif %}
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
2012-08-28 08:35:04 -07:00
<script type="text/javascript" src="{{ STATIC_URL }}js/pro.js"></script>
2012-09-18 09:46:57 -07:00
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?9" />
{% if has_snipts and not detail %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ request.path }}?rss{% if not public %}&api_key={{ request.user.api_key.key }}{% endif %}" />
{% endif %}
<!--[if IE]>
<style type="text/css">
.group {
display: block;
zoom: 1;
}
</style>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="{% block body-class %}{% endblock %}">
<div class="frame">
2012-08-20 18:48:37 -07:00
<div class="left-y ruler"></div>
<div class="right-y ruler"></div>
{% block header %}
<header class="main">
2012-08-20 18:48:37 -07:00
<a href="/" class="logo">
<span class="avatar" style="background-image: url('https://secure.gravatar.com/avatar/{{ blog_user.email|md5 }}?s=80');"></span>
</a>
<div class="bio">
<a class="name" href="/">
{% if blog_user.username == 'nick' %}
Nick Sergeant
{% elif blog_user.username == 'blog' %}
Snipt Blog
2012-09-18 09:37:11 -07:00
{% elif blog_user.username == 'ashley' %}
Ashley Sergeant
{% else %}
{{ blog_user.username }}
{% endif %}
</a>
2012-09-18 09:37:11 -07:00
{% if blog_user.username == 'nick' %}
<p>
I'm a front-end web developer in Rochester, NY working on the <a href="http://amara.org/">Amara</a> project for <a href="http://pculture.org/">PCF</a>. I also created <a href="https://snipt.net/">Snipt</a>.
</p>
{% endif %}
{% if blog_user.username == 'ashley' %}
<p>Life is like photography, we use<br />the negatives to develop.</p>
{% endif %}
2012-08-20 18:48:37 -07:00
</div>
</header>
{% endblock %}
2012-08-21 21:24:27 -07:00
<section class="main group">
<section class="content group">
2012-08-27 20:57:40 -07:00
{% block content %}{% endblock %}
2012-08-21 21:24:27 -07:00
</section>
<aside class="main">
2012-09-18 09:37:11 -07:00
{% if blog_user.username == 'nick' %}
<section class="module projects">
<h1>Notable projects</h1>
<ul>
<li><a href="https://snipt.net/">Snipt</a></li>
<li><a href="http://amara.org">Amara</a></li>
<li><a href="http://sidepros.com/">SidePros</a></li>
<li><a href="https://github.com/nicksergeant/billmonster/">Bill Monster</a></li>
<li><a href="http://craftofman.com/">Craft of Man</a></li>
<li><a href="http://afeedapart.com/">A Feed Apart</a></li>
<li><a href="http://rochestermade.com">Rochester Made</a></li>
<li><a href="http://refreshroc.org/">Refresh Rochester</a></li>
</ul>
</section>
<section class="module places">
<h1>Elsewhere</h1>
<ul>
<li><a href="mailto:nick@nicksergeant.com">Email</a></li>
<li><a href="https://twitter.com/nicksergeant">Twitter</a></li>
<li><a href="https://github.com/nicksergeant">GitHub</a></li>
<li><a href="http://www.linkedin.com/in/nicksergeant">LinkedIn</a></li>
<li><a href="http://portfolio.nicksergeant.com">Portfolio</a></li>
</ul>
</section>
<section class="module snipts">
<h1>Recent snipts</h1>
<ul>
{% for snipt in normal_snipts %}
<li><a href="{{ snipt.get_full_absolute_url }}">{{ snipt.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}
{% if blog_user.username == 'ashley' %}
<section class="module places">
<h1>Elsewhere</h1>
<ul>
<li><a href="mailto:ashley@ashleysergeant.com">Email</a></li>
<li><a href="https://twitter.com/ashleysergeant">Twitter</a></li>
</ul>
</section>
{% endif %}
2012-08-21 21:24:27 -07:00
</aside>
</section>
</div>
{% if not debug %}
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4ed65ee7f5a1f530f1000001');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
{% endif %}
</body>
</html>