-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (50 loc) · 1.75 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
---
layout: default
class: home
css: ['pages/index.css']
comments: false
---
<section class="banner">
<div class="collection-head">
<div class="container">
<div class="collection-title">
<h1 class="collection-header" id="sub-title"><span>{{ site.subtitle }}</span></h1>
</div>
</div>
</div>
</section>
<!-- /.banner -->
<section class="container content">
<div class="columns">
<div class="column two-thirds" >
<ol class="repo-list">
{% for post in site.posts %}
<li class="repo-list-item">
<h2 class="repo-list-name">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<p class="repo-list-description">
{{ post.excerpt | strip_html | strip }}
</p>
<p class="repo-list-meta">
<span class="meta-info">
<span class="octicon octicon-calendar"></span> {{ post.date | date: "%Y/%m/%d" }}
</span>
{% for cat in post.categories %}
<span class="meta-info">
<span class="octicon octicon-file-directory"></span>
<a href="/categories/#{{ cat }}" title="{{ cat }}">{{ cat }}</a>
</span>
{% endfor %}
</p>
</li>
{% endfor %}
</ol>
</div>
<div class="column one-third">
{% include sidebar-search.html %}
{% include sidebar-popular-repo.html %}
</div>
</div>
</section>
<!-- /section.content -->