-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
120 lines (103 loc) · 2.51 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
layout: default
---
{% if paginator.page == 1 %}
<div class="posts">
{% for post in site.posts limit:10 %}
{% if post.draft %}
{% continue %}
{% else %}
<div class="post">
<h1>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>
{% include post_tagline.html post=post %}
<div>
{{ post.excerpt }}
{% if post.excerpt != post.content %}
<div class="more">
<a href="{{ post.url }}">READ THE FULL POST</a>
</div>
{% endif %}
</div>
</div>
{% endif %}
{% break %}
{% endfor %}
</div>
<table class="footer">
<tr>
<th><h1>Older Posts</h1></th>
<th class="gh_wrapper"><h1>Github</h1></th>
</tr>
<tr>
<td width="70%">
<div class="side">
<ul class="recent_posts">
{% for post in paginator.posts offset:1 %}
{% if post.draft %}
{% continue %}
{% endif %}
<li><time>{{ post.date | date:"%b %d" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</td>
<td class="gh_wrapper">
<div class="github clearfix">
<div>
{% include gh.html %}
</div>
<div>
<h1>Gems</h1>
{% include gems.html %}
</div>
</div>
</td>
</tr>
</table>
{% include pagination.html %}
{% else %}
<table class="footer2">
<tr>
<th><h1>Older Posts</h1></th>
</tr>
<tr>
<td width="70%">
<div class="side">
<ul class="recent_posts">
{% for post in paginator.posts offset:1 %}
<li><time>{{ post.date | date:"%b %d" }}</time><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</td>
</tr>
</table>
{% include pagination.html %}
<hr/>
<h1 class="osc">Our open source contributions</h1>
<table class="footer">
<tr>
<th class="gh_wrapper"><h1>Github</h1></th>
<th class=""><h1>Gems</h1></th>
</tr>
<tr>
<td class="gh_wrapper">
<div class="github clearfix">
<div>
{% include gh.html %}
</div>
</td>
<td>
<div>
{% include gems.html %}
</div>
</div>
</td>
</tr>
</table>
{% endif %}
{% include disqus_thread.html %}