forked from rangle/augury-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ejs
More file actions
49 lines (42 loc) · 1.46 KB
/
index.ejs
File metadata and controls
49 lines (42 loc) · 1.46 KB
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
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<%- partial("node_modules/microsite-ui/_partials/nav", {
name: 'Augury',
logoWithText: 'node_modules/microsite-ui/images/angular-logo-with-text.svg',
CTA: {
text: 'Install',
url: 'https://chrome.google.com/webstore/detail/augury/elgalmkoelokbchhkhacckoklkejnhcd'
},
pages: [{
text: 'Guides',
href: '/guides/'
}],
homeHref: '/'
}) %>
<main class="mdl-layout__content">
<header class="hero-background">
<!-- Hero -->
<%- partial("node_modules/microsite-ui/_partials/hero", {
name: 'Angular Augury',
logo: {
src: 'images/augury-logo.svg',
alt: 'Augury Logo'
},
tagline: 'A Google Chrome Dev Tools extension for debugging Angular 2 applications.',
CTA: {
text: 'Install',
href: 'https://chrome.google.com/webstore/detail/augury/elgalmkoelokbchhkhacckoklkejnhcd'
}
}) %>
</header>
<!-- Add as many features as needed -->
<%- partial("_partials/features", {
CTA: {
text: 'Install',
url: 'https://chrome.google.com/webstore/detail/augury/elgalmkoelokbchhkhacckoklkejnhcd'
}
}) %>
<%- partial("_partials/footer", {
footerImg: 'node_modules/microsite-ui/images/angular-logo.svg'
}) %>
</main>
</div>