-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (158 loc) · 7.21 KB
/
Copy pathindex.html
File metadata and controls
161 lines (158 loc) · 7.21 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
---
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 class="collection-info">
<span class="meta-info mobile-hidden">
<span class="octicon octicon-location"></span>
{{ site.location }}
</span>
<span class="meta-info">
<span class="octicon octicon-organization"></span>
<a href="{{ site.organization_url }}" target="_blank">{{ site.organization }}</a>
</span>
<span class="meta-info">
<span class="octicon octicon-mark-github"></span>
<a href="https://github.com/{{ site.github_username }}" target="_blank">{{ site.github_username }}</a>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- /.banner -->
<section class="container content">
<div class="columns">
<div class="column three-fourths" >
<ol class="repo-list">
{% for post in site.posts %}
{% if paginator.page == 1 %}
{% if post.topmost == true %}
<li class="repo-list-item">
<h3 class="repo-list-name">
<a href="{{ site.url }}{{ post.url }}"><span class="top-most-flag"></span>{{ post.title }}</a>
</h3>
<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="{{ site.url }}/categories/#{{ cat }}" title="{{ cat }}">{{ cat }}</a>
</span>
{% endfor %}
</p>
</li>
{% endif %}
{% endif %}
{% endfor %}
{% for post in paginator.posts %}
{% if post.topmost != true %}
<li class="repo-list-item">
<h3 class="repo-list-name">
<a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a>
</h3>
<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="{{ site.url }}/categories/#{{ cat }}" title="{{ cat }}">{{ cat }}</a>
</span>
{% endfor %}
</p>
</li>
{% endif %}
{% if post.topmost == true %}
<li class="repo-list-item">
<h3 class="repo-list-name">
<a href="{{ site.url }}{{ post.url }}"><span class="top-most-flag"></span>{{ post.title }}</a>
</h3>
<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="{{ site.url }}/categories/#{{ cat }}" title="{{ cat }}">{{ cat }}</a>
</span>
{% endfor %}
</p>
</li>
{% endif %}
{% endfor %}
</ol>
</div>
<div class="column one-fourth">
<div style="width: 100%"><div style="width: 30%"></div><script type='text/javascript' id='mapmyvisitors' src='https://mapmyvisitors.com/map.js?cl=ffffff&w=300&t=tt&d=Ve67XEhqg7ML8f5gQwlarSCFF1jLVMggdDiJFJVxIFk&co=46989e'></script><div style="width: 30%"></div></div>
<!-- 3D Map -->
<!--
<script type="text/javascript" src="//rf.revolvermaps.com/0/0/8.js?i=5842jg4v7mu&m=0c&c=baff00&cr1=ff0000&f=arial&l=33&cw=46989e&cb=ffffff" async="async"></script>
-->
<!-- 2D Map -->
<!--
<script type="text/javascript" src="//rf.revolvermaps.com/0/0/7.js?i=5842jg4v7mu&m=0c&c=baff00&cr1=ff0000&br=5&sx=0&cw=46989e&cb=ffffff" async="async"></script>
-->
<!-- music player
<audio controls=true loop="true">
<source src="your_music.mp3" />
你的浏览器不支持video标签。
</audio>
-->
{% include sidebar-search.html %}
{% include sidebar-popular-repo.html %}
</div>
</div>
<div class="pagination text-align">
<div class="btn-group">
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="btn btn-outline">«</a>
{% else %}
<a href="/page{{paginator.previous_page}}" class="btn btn-outline">«</a>
{% endif %}
{% else %}
<button disabled="disabled" href="javascript:;" class="btn btn-outline">«</button>
{% endif %}
{% if paginator.page == 1 %}
<a href="javascript:;" class="active btn btn-outline">1</a>
{% else %}
<a href="/" class="btn btn-outline">1</a>
{% endif %}
{% for count in (2..paginator.total_pages) %}
{% if count == paginator.page %}
<a href="javascript:;" class="active btn btn-outline">{{count}}</a>
{% else %}
<a href="/page{{count}}" class="btn btn-outline">{{count}}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="/page{{paginator.next_page}}" class="btn btn-outline">»</a>
{% else %}
<button disabled="disabled" href="javascript:;" class="btn btn-outline">»</button>
{% endif %}
</div>
</div>
<!-- /pagination -->
</section>
<!-- /section.content -->