-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.hbs
39 lines (39 loc) · 1.9 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
<html>
<head>
<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="https://static.taiwanstat.com/favicon.ico">
<link rel="shortcut icon" href="//static.taiwanstat.com/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="//storage.googleapis.com/code.getmdl.io/1.0.6/material.amber-orange.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.6/semantic.min.css">
<link rel="stylesheet" href="//static.taiwanstat.com/css/style.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
{{> header}}
{{> start}}
{{# each page }}
<a class="image" href="{{url}}" target="_parent">
<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="https://static.taiwanstat.com/js/main.min.js" async></script>
</body>
</html>