snipt/blogs/templates/blogs/themes/default/base.html

55 lines
1.8 KiB
HTML
Raw Normal View History

2012-05-31 19:33:19 -07:00
{% extends "base.html" %}
2012-05-31 22:21:28 -07:00
{% load compress %}
2012-05-31 19:33:19 -07:00
{% block meta %}
{% if 'page' in request.get_full_path %}
<meta name="robots" content="noindex, follow" />
{% endif %}
{% endblock %}
{% block body-class %}blog-site{% endblock %}
2012-05-31 22:21:28 -07:00
{% block html-class %}blog-site{% endblock %}
{% block css %}
{% compress css %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/bootstrap.css" />
2012-06-04 17:57:20 -07:00
<link rel="stylesheet" type="text/x-scss" href="{{ STATIC_URL }}css/style.scss" />
2012-05-31 22:21:28 -07:00
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/themes.css" />
2012-05-31 22:27:54 -07:00
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/chosen.css" />
2012-06-04 17:57:20 -07:00
<link rel="stylesheet" type="text/x-scss" href="{{ STATIC_URL }}css/blog-themes/default/style.scss" />
2012-05-31 22:21:28 -07:00
{% endcompress %}
{% endblock %}
2012-05-31 19:33:19 -07:00
2012-06-01 09:11:16 -07:00
{% block page-title %}
2012-06-01 09:11:33 -07:00
{% if blog_user.username == 'nick' %}
2012-06-01 09:11:16 -07:00
Nick Sergeant
{% else %}
{{ blog_user.username }}'s blog - Powered by Snipt.net
{% endif %}
{% endblock %}
2012-05-31 19:33:19 -07:00
2012-05-31 22:21:28 -07:00
{% block page-description %}{% endblock %}
2012-05-31 19:33:19 -07:00
{% block sub-header %}{% endblock %}
{% block rochester-made %}{% endblock %}
2012-06-04 17:57:20 -07:00
{% block aside %}
{% if not detail %}
<aside class="main">
<nav class="footer">
<ul>
<li class="blog">
{% if blog_user.username == 'nick' %}
<a href="/">Nick Sergeant</a>
{% else %}
<a href="/">{{ blog_user.username }}'s blog</a>
{% endif %}
</li>
</ul>
</nav>
</aside>
{% endif %}
{% endblock %}
2012-05-31 22:21:28 -07:00
{% block keyboard-shortcuts %}{% endblock %}
2012-06-01 08:38:55 -07:00
{% block header %}{% endblock %}
2012-06-04 17:59:05 -07:00
{% block intercom %}{% endblock %}