-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
96 lines (85 loc) · 3.26 KB
/
contact.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Lam Tran</title>
<link type="text/css" rel="stylesheet" href="/assets/stylesheets/styles.css"/>
</head>
<body>
<site-screens id="screens">
<site-screen id="contact.html" class="cover active">
<div class="inner-cover">
<div class="inner-wrapper">
<nu-breadcrumb path='[{"text":"Index","url":"index.html"}]'></nu-breadcrumb>
<h1>contact page</h1>
</div>
</div>
</site-screen>
</site-screens>
<site-header>
<a href="/" class="logo-link"><span class="site-name"></span></a>
<site-navigation>
<site-navigation-item>
<a href="contact.html" ><span class="site-text">Contact</span></a>
</site-navigation-item>
</site-navigation>
</site-header>
<!--
<button is="nu-hamburger"><i class="fa fa-bars"></i></button>
-->
<site-footer></site-footer>
<script>
window.locale = "";
</script>
<script src="/assets/javascripts/require.js"></script>
<script>
window.profilePaths = {};
require.config({
baseUrl: '/assets/javascripts',
paths: {"observe":"ext/Object.observe.poly","getOffsetFromParents":"ext/getOffsetFromParents","i18n":"ext/i18n","template":"common/template","normalize":"ext/normalize","css-builder":"ext/css-builder","handlebars":"ext/handlebars-v2.0.0","text":"ext/text","jquery":"ext/jquery.min","promise":"ext/promise-1.0.0","custom-element":"ext/document-register-element","moment":"ext/moment.min","signals":"ext/signals","hasher":"ext/hasher","crossroads":"ext/crossroads","velocity":"ext/velocity.min","velocity.ui":"ext/velocity.ui.min","d3":"ext/d3.v3.min/index","d3geo":"ext/d3geo","topojson":"ext/topojson/topojson","shifty":"ext/shifty.min"},
template: { // optional
helpers: true, // default: true
i18n: false, // default: false
templateExtension: 'hbs', // default: 'hbs'
partialsUrl: 'templates/helpers/', // default: ''
layoutDir: 'templates/_layout/',
partialsDir: 'templates/_partials/'
},
shim : {
"typeahead": {
deps :["jquery"]
},
"d3": {
deps :["jquery"]
},
"topojson146": {
deps :["jquery"]
},
"topojson-min": {
deps :["jquery"]
},
"velocity": {
deps :["jquery"]
},
"velocity.ui": {
deps :["velocity"]
}
},
config: {
moment: {
noGlobal: true
},
//module ID
i18n: {
// locale: window.locale
}
}
});
require(['main','partials'], function () {
});
</script>
<script>
window.platformReady = true;
</script>
</body>
</html>