sipp11
10 years ago
9 changed files with 66 additions and 15 deletions
@ -0,0 +1,25 @@
|
||||
{% if paginator.total_pages > 1 %} |
||||
<div class="pagination"> |
||||
{% if paginator.previous_page %} |
||||
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a> |
||||
{% else %} |
||||
<span>« Prev</span> |
||||
{% endif %} |
||||
|
||||
{% for page in (1..paginator.total_pages) %} |
||||
{% if page == paginator.page %} |
||||
<em>{{ page }}</em> |
||||
{% elsif page == 1 %} |
||||
<a href="{{ '/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a> |
||||
{% else %} |
||||
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a> |
||||
{% endif %} |
||||
{% endfor %} |
||||
|
||||
{% if paginator.next_page %} |
||||
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a> |
||||
{% else %} |
||||
<span>Next »</span> |
||||
{% endif %} |
||||
</div> |
||||
{% endif %} |
@ -0,0 +1,15 @@
|
||||
// Lime 9 |
||||
// ------------------------- |
||||
|
||||
$lime: #B8E62E !default; |
||||
$limeDark: #7A991F !default; |
||||
$limeDarker: #3D4C0F !default; |
||||
$limeLight: #D6FF5C !default; |
||||
$limeLighter: #E0FF85 !default; |
||||
$limeLightest: #ecfeda !default; |
||||
$limeDull: #A6C44B !default; |
||||
$limeDuller: #94A856 !default; |
||||
$limeBright: #BFFF00 !default; |
||||
$limeBrighter: #D7FF5E !default; |
||||
|
||||
$brand-color: #B8E62E !default; |
Loading…
Reference in new issue