mirror of
https://github.com/balkian/balkian.github.com.git
synced 2024-11-13 23:22:29 +00:00
Typo and small css correction
This commit is contained in:
parent
09a35b2595
commit
e6923ca300
@ -5,10 +5,10 @@
|
||||
{% block content %}
|
||||
<div class="postnav">
|
||||
{% if article.prev_article %}
|
||||
<a href="{{ article.prev_article.url }}"><span class="previouspost"><i class="icon-chevron-sign-left"></i> {{ article.prev_article.title }}</a></span>
|
||||
<span class="previouspost"><i class="icon-double-angle-left"></i> <a href="{{ article.prev_article.url }}">{{ article.prev_article.title }}</a></span>
|
||||
{% endif %}
|
||||
{% if article.next_article %}
|
||||
<span class='nextpost'><a href="{{ SITE_URL }}/{{ article.next_article.url }}">{{ article.next_article.title }} <i class="icon-chevron-sign-right"></i></span></a>
|
||||
<span class='nextpost'><a href="{{ SITE_URL }}/{{ article.next_article.url }}">{{ article.next_article.title }}</a> <i class="icon-double-angle-right"></i></span>
|
||||
{%endif%}
|
||||
</div>
|
||||
<div class="posthead">
|
||||
|
@ -7,13 +7,13 @@ balkian.com
|
||||
{% if articles_paginator.num_pages > 0 %}
|
||||
<div class="pagination pag-top">
|
||||
{% if articles_page.has_previous() %}
|
||||
<span class="previouspage"><i class="icon-chevron-sign-left"></i><a href="/{% if articles_page.has_previous() > 2 %}page{{ articles_page.previous_page_number() }}{% endif %}"> Newer Posts</a></span>
|
||||
<span class="previouspage"><i class="icon-double-angle-left"></i><a href="/{% if articles_page.has_previous() > 2 %}page{{ articles_page.previous_page_number() }}{% endif %}"> Newer Posts</a></span>
|
||||
{% else %}
|
||||
<span class="previouspage" style="visibility:hidden;"><i class="icon-chevron-sign-left"></i> Newer Posts</span>
|
||||
{% endif %}
|
||||
<span class="page_number ">Page {{ articles_page.number }} of {{ articles_paginator.num_pages }}</span>
|
||||
{% if articles_page.has_next() %}
|
||||
<span class="nextpage"><a href="/page{{ articles_page.next_page_number() }}"> Older Posts </a> <i class="icon-chevron-sign-right"></i></span>
|
||||
<span class="nextpage"><a href="/page{{ articles_page.next_page_number() }}"> Older Posts </a> <i class="icon-double-angle-right"></i></span>
|
||||
{% else %}
|
||||
<span class="nextpage" style="visibility:hidden;">Older Posts <i class="icon-chevron-sign-right"></i></span>
|
||||
{% endif %}
|
||||
|
@ -1,4 +1,4 @@
|
||||
Publishing in PyPi
|
||||
Publishing on PyPi
|
||||
##################
|
||||
:date: 2014-09-27 10:00:00
|
||||
:tags: github, python, pypi
|
Loading…
Reference in New Issue
Block a user