forked from linux-taiwan/www.linux.org.tw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 1.17 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
---
---
<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>
</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>