-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (59 loc) · 1.68 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
---
layout: page
author: admin
group: home
toc: false
ctg: true
title: 桌面秀
comments: false
tagline: '轻松录制,即时分享!'
keywords: showdesk,VNC,noVNC,vplayer,noVNC player
description: 桌面秀,轻松录制,即时分享!
---
{% include JB/setup %}
<!-- Recent Posts -->
<section id="home">
{% assign articles = paginator.posts %}
{% assign condition = 'layout' %}
{% assign value = 'post' %}
{% include widgets/articles %}
</section>
<!-- Pagination Links -->
<section class="pagination pagination-centered">
<ul>
<!-- First Page -->
{% if paginator.previous_page %}
<li><a href="/index.html">««</a></li>
{% else %}
<li class="disabled"><a href="#">««</a></li>
{% endif %}
<!-- Previous Page -->
{% if paginator.previous_page %}
<li>
{% if paginator.previous_page == 1 %}
<a href="/index.html">«</a>
{% else %}
<a href="/page{{ paginator.previous_page }}">«</a>
{% endif %}
</li>
{% else %}
<li class="disabled"><a href="#">«</a></li>
{% endif %}
<!-- Current Page -->
<li class="active">
<span class="page_number ">第 {{ paginator.page }}/{{ paginator.total_pages }} 页</span>
</li>
<!-- Next Page -->
{% if paginator.next_page %}
<li><a href="/page{{paginator.next_page}}">»</a></li>
{% else %}
<li class="disabled"><a href="#">»</a></li>
{% endif %}
<!-- Last Page -->
{% if paginator.next_page %}
<li><a href="/page{{ paginator.total_pages }}">»»</a></li>
{% else %}
<li class="disabled"><a href="#">»»</a></li>
{% endif %}
</ul>
</section>