Tweak to Pro theme.

master
Nick Sergeant 2013-01-16 01:21:09 -05:00
parent 6d4ecfe2a8
commit 4712034c6e
4 changed files with 17 additions and 11 deletions

View File

@ -32,7 +32,7 @@
<script type="text/javascript" src="{{ STATIC_URL }}js/pro.js?1"></script>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?16" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?17" />
<link rel="shortcut icon" href="/static/images/blog-favicon.ico" >
@ -87,14 +87,16 @@
{% if sidebar %}
{{ sidebar.stylized|safe }}
{% endif %}
<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>
{% if normal_snipts %}
<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 %}
</aside>
</section>
</div>

File diff suppressed because one or more lines are too long

View File

@ -205,6 +205,10 @@ section.main {
color: #666;
font: bold 12px $Helvetica;
margin-bottom: 10px;
&:first-of-type {
margin-top: 3px;
}
}
p {
color: #999;

File diff suppressed because one or more lines are too long