-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.hbs
42 lines (42 loc) · 2.2 KB
/
index.hbs
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang='zh-Hant-TW'>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta property="og:title" content="{{title}}">
<meta property="og:site_name" content="{{title}}">
<meta property="og:description" content="生長在台灣的我們,很少從一個宏觀的角度看整個台灣的經濟、法律、交通、教育... ,而我們相信數據可以幫我們更了解我們身長在的這片土地上的一切。">
<meta property="og:image" content="http://i.imgur.com/04AFcnA.png">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-pink.min.css">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.6/semantic.min.css" type="text/css" media="all">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="http://real.taiwanstat.com/css/style.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js" async></script>
</head>
<body>
{{> header}}
{{> start}}
{{# each page }}
<a class="image {{class}}" href="{{url}}" target="_parent" onclick="pageOnclick()">
<div class="mdl-card mdl-shadow--2dp demo-card-wide">
<div class="mdl-card__title" style="background: url('{{img}}') center / cover;">
<h2 class="mdl-card__title-text">{{title}}</h2>
</div>
<div class="mdl-card__supporting-text">
{{description}}
</div>
</div>
</a>
{{/each}}
{{> end}}
{{> footer}}
<script src="http://real.taiwanstat.com/js/main.min.js" async></script>
</body>
</html>