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> <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" > <link rel="shortcut icon" href="/static/images/blog-favicon.ico" >
@ -87,14 +87,16 @@
{% if sidebar %} {% if sidebar %}
{{ sidebar.stylized|safe }} {{ sidebar.stylized|safe }}
{% endif %} {% endif %}
<section class="module snipts"> {% if normal_snipts %}
<h1>Recent snipts</h1> <section class="module snipts">
<ul> <h1>Recent snipts</h1>
{% for snipt in normal_snipts %} <ul>
<li><a href="{{ snipt.get_full_absolute_url }}">{{ snipt.title }}</a></li> {% for snipt in normal_snipts %}
{% endfor %} <li><a href="{{ snipt.get_full_absolute_url }}">{{ snipt.title }}</a></li>
</ul> {% endfor %}
</section> </ul>
</section>
{% endif %}
</aside> </aside>
</section> </section>
</div> </div>

File diff suppressed because one or more lines are too long

View File

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

File diff suppressed because one or more lines are too long