forked from gdg-x/boomerang-polymer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpast.html
37 lines (34 loc) · 1.18 KB
/
past.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
<!doctype html>
<!--
This is an experiment of publishing with Polymer and Google Sheets. The content for this page is entirely hosted by this spreadsheet: http://goo.gl/6VT4NK
-->
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="components/paper-shadow/paper-shadow.html">
<link rel="import" href="components/font-roboto/roboto.html">
<link rel="import" href="custom_components/past-event-list.html">
<link rel="import" href="custom_components/footer.html">
<style shim-shadowdom>
body {
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
margin: 0;
padding: 24px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
min-height: 1200px;
}
</style>
</head>
<body unresolved>
<div>
<div class="container" vertical layout>
<past-event-list></past-event-list>
</div>
</div>
<page-footer></page-footer>
</body>
</html>