Working on blogs.

master
Nick Sergeant 2012-05-31 22:33:19 -04:00
parent 8a31927ccb
commit 99ab1176f2
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block meta %}
{% if 'page' in request.get_full_path %}
<meta name="robots" content="noindex, follow" />
{% endif %}
{% endblock %}
{% block body-class %}blog-site{% endblock %}
{% block page-title %}{{ user.username }}'s blog - Powered by Snipt.net{% endblock %}
{% block header %}
<header class="blog">
<div class="inner">
<h1><a href="/">{{ user.username }}'s blog</a></h1>
</div>
</header>
{% endblock %}
{% block sub-header %}{% endblock %}
{% block rochester-made %}{% endblock %}
{% block aside %}{% endblock %}

View File

@ -0,0 +1,3 @@
{% extends "snipts/snipt-list.html" %}
{% block author %}{% endblock %}

24
media/css/blog.css Normal file
View File

@ -0,0 +1,24 @@
html, body {
background: #f5f2f3 url("/static/images/bg.gif") top left repeat;
}
body {
color: #666;
font: normal 14px/16px "Helvetica Neue", Helvetica, Arial, "Liberation Sans", FreeSans, sans-serif;
text-rendering: optimizeLegibility;
}
body li {
line-height: normal;
}
.group:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.hidden {
display: none;
}