-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (76 loc) · 1.9 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
---
---
<div class="slogan">
<div>
<h2>開放原始碼的作業系統組合</h2>
</div>
</div>
<section id="participation">
<h2>社群參與</h2>
<div class="content">
<ul class="distro">
{% for distro in site.data.linux.distros %}
<li>
<a href="{{ distro.url }}" style="background: linear-gradient(#fff 1em, #fff calc(100% - 5px), {{ distro.bgcolor }} calc(100% - 5px));">
<div class="info">
<strong style="color: {{ distro.bgcolor }};">{{ distro.name }}</strong>
</div>
</a>
</li>
{% endfor %}
</ul>
<h3>桌面環境</h3>
<ul class="devin">
{% for devin in site.data.linux.devins %}
<li>
<a href="{{ devin.url }}" style="background: linear-gradient(#fff 1em, #fff calc(100% - 5px), {{ devin.bgcolor }} calc(100% - 5px));">
<div class="info">
<strong style="color: {{ devin.bgcolor }};">{{ devin.name }}</strong>
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</section>
<section id="community">
<h3>實體聚會</h3>
<div class="content">
<ul class="community">
{% for community in site.data.linux.communities %}
<li>
<a href="{{ community.url }}">
<span class="title">{{ community.name }}</span>
<div class="description">{{ community.description }}</div>
</a>
</li>
{% endfor %}
</ul>
<h3>其他協助</h3>
<ul class="other">
{% for other in site.data.linux.others %}
<li>
<a href="{{ other.url }}">
<span class="title">{{ other.name }}</span>
<div class="description">{{ other.description }}</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</section>
<section id="commercial">
<h3>工商服務</h3>
<div class="content">
<ul class="commercial">
{% for sercice in site.data.linux.commercial %}
<li>
<a href="{{ sercice.url }}">
<span class="title">{{ sercice.name }}</span>
<div class="description">{{ sercice.description }}</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</section>