forked from dreisel/SkillSetBootStrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.html
35 lines (35 loc) · 934 Bytes
/
mobile.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>US Presidents</title>
<link rel="stylesheet" href="stylesheets/mobile.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header></header>
<div id="root"></div>
<script type="x-template" id="president-short-template">
<div class="img-wrap">
<img src={{src}}>
</div>
<div>
<div>{{president}}</div>
<div class="secondary-text">{{took_office_year}} - {{left_office_year}}</div>
</div>
</script>
<script type="x-template" id="president-template">
<div class="img-wrap">
<img src={{src}}>
</div>
<p>{{text}}</p>
</script>
<script type="x-template" id="president-meta-template">
<div class="img-wrap">
<img src={{src}}>
</div>
<div class="meta">{{president}}</div>
</script>
<script src="bundle-mobile.js"></script>
</body>
</html>