-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·86 lines (72 loc) · 2.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: page
tagline: ...or at least try to tame it.
title: RuleYourCloud
---
<!-- <p>Recently we've seen a growing number of cloud management products that support policy languages, a trend that will eventually enable a purely policy-based approach to cloud management.</p>
<p>RuleYourCloud is a blog dedicated to furthering the trend toward policy-based cloud management--toward a world in which we rule the cloud with rules.</p>
<p>Check out these pages for more information (which are also available from the button on the upper-right hand side of the page).
<ul>
<li><a href="{{ site.about_path }}">About</a>: more information about this blog
<li><a href="{{ site.archive_path }}">Blog Entries</a>: the actual blog entries
<li><a href="{{ site.authors_path }}">Contributors</a>: biographical information for authors of blog entries
</ul> -->
{% for post in paginator.posts %}
<article class="home">
<span class="post-date">
{% assign d = post.date | date: "%d" | plus:'0' %}
{{ post.date | date: "%B" }}
{% case d %}
{% when 1 or 21 or 31 %}{{ d }}st,
{% when 2 or 22 %}{{ d }}nd,
{% when 3 or 23 %}{{ d }}rd,
{% else %}{{ d }}th,
{% endcase %}
{{ post.date | date: "%Y" }}
</span>
<h2>
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div>
{% if post.fullview %}
{{ post.content }}
{% else %}
{% if post.shortinfo %}
{{ post.shortinfo }}
{% elsif post.description %}
{{ post.description }}
{% else %}
{{ post.excerpt }}
{% endif %}
{% endif %}
</div>
</article>
{% endfor %}
<hr/>
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
{% if paginator.previous_page == 1 %}
<a href="{{ site.BASE_PATH }}">← Newer</a>
{% else %}
<a href="{{ site.paginate_path | replace: ':num', paginator.previous_page }}">← Newer</a>
{% endif %}
</li>
{% else %}
<li class="previous disabled">
<a>← Newer</a>
</li>
{% endif %}
<li>
<span class="page_number">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
</li>
{% if paginator.next_page %}
<li class="next">
<a href="{{ site.paginate_path | replace: ':num', paginator.next_page }}">Older →</a>
</li>
{% else %}
<li class="next disabled">
<a>Older →</a>
</li>
{% endif %}
</ul>