-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
66 lines (63 loc) · 2.62 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
---
---
<!DOCTYPE html>
<html lang="zh-TW">
<head>
{% include analytics.html %}
<link rel="stylesheet" href="{{ "/assets/css/main.css" | absolute_url }}">
<link rel="stylesheet" href="{{ "/assets/css/guide.css" | absolute_url }}">
<link rel="icon" type="image/png" href="{{ "/assets/favicon.png" | absolute_url }}">
<title>政府網站設計原則</title>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="one-col">
<skip-to><a href="#main" class="skip-to">跳至主要內容區</a></skip-to>
<header class="site-header">
<div class="logo">
<div class="logo-svg mr3">{% include components.svg %}</div>
<h1 class="heading4">政府網站設計原則</h1>
</div>
</header>
<main class="site-main" id="main">
<div class="relative tc">
{% include /svgs/hero.svg %}
</div>
<article class="w-paragraph center">
<p>讓政府網站設計原則更加完善,我們正在全力開創新的典範,以便為您提供有價值的知識及技術。</p>
<p>讓我們攜手合作,共同見證政府網站設計原則的進步和成長。</p>
</article>
<h2 class="heading5 tc mt5">設計制度內容</h2>
<p class="w-paragraph"></p>
<div class="three-col gap4 mv5">
{% for collection in site.collections %}
{% if collection.docs.size == 0 %}{% continue %}{% endif %}
{% assign filepath = collection.relative_directory | append: "/index.md" %}
{% assign doc = collection.docs | where: "path", filepath | first %}
{% assign svg = collection.relative_directory | prepend: "svgs/feat" | append: ".svg" %}
<div class="ph2 tc w-100">
<a class="db" {% if doc %}href="{{ doc.url | absolute_url }}"{% endif %}>
<div class="w-70 center">{% include {{ svg }} %}</div>
<div class="mt3">{{ collection.name }}</div>
</a>
</div>
{% endfor %}
</div>
</main>
</div>
<div class="one-column bg-layer1">
<footer class="site-footer f6 pa4 flex items-center gap4">
<div class="lh-solid w2">{% include components.svg %}</div>
<div class="mw5">
<a href="/accessibility-statement">親和力宣告</a>
</div>
</footer>
</div>
<script src="{{ "/assets/js/main.js" | absolute_url }}" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</body>
</html>