-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.jade
160 lines (150 loc) · 6.41 KB
/
homepage.jade
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
doctype html
html(lang='en')
head
meta(http-equiv='Content-Type', content='text/html; charset=UTF-8')
meta(name='viewport', content='width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no')
title Starter Template - Materialize
// CSS
link(href='css/materialize.css', type='text/css', rel='stylesheet', media='screen,projection')
body
//- Navbar
#navbar.navbar-fixed
nav.light-blue.lighten-1(role='navigation')
.nav-wrapper.container
a#logo-container.brand-logo(href='#') Logo
ul.right.hide-on-med-and-down
li
a(href='#') Navbar Link
ul#nav-mobile.side-nav
li
a(href='#') Navbar Link
a.button-collapse(href='#', data-activates='nav-mobile')
i.mdi-navigation-menu
//- Content
#index-banner.section.no-pad-bot
.container
br
br
h1.header.center.orange-text Starter Template
.row.center
h5.header.col.s12.light A modern responsive front-end framework based on Material Design
.row.center
a#download-button.btn-large.waves-effect.waves-light.orange(href='http://materializecss.com/getting-started.html') Get Started
br
br
.section.blue
.container
.row
.col.s12.m6.center
h1.white-text Hello
.col.s12.m6.center
h1.green-text.text-lighten-3 Kyle
.section.no-pad-bot.grey.lighten-2
.container
h1 Clubnews
p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Suscipit molestiae repudiandae odio iusto officiis nisi sit doloremque, tempora beatae voluptate reiciendis ipsum est deleniti, voluptas quidem repellendus quis minima magni.
.row
.col.s12.m4
.card
.card-content
span.card-title.grey-text.darken-5 Title
p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Obcaecati adipisci ea totam eius neque velit explicabo porro natus, repudiandae illo mollitia dignissimos, dolor, quis deleniti. Cumque esse incidunt, natus libero.
.card-action
h5.activator Reveal!
a(href='#' class='activator') Link
.card-reveal
span.card-title.grey-text.darken-5 Revealed
.col.s12.m4
.card
.card-content
span.card-title.grey-text.darken-4 Title
p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Obcaecati adipisci ea totam eius neque velit explicabo porro natus, repudiandae illo mollitia dignissimos, dolor, quis deleniti. Cumque esse incidunt, natus libero.
.card-action
a(href='#') Link
.card-reveal
.col.s12.m4
.card
.card-content
span.card-title.grey-text.darken-4 Title
p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Obcaecati adipisci ea totam eius neque velit explicabo porro natus, repudiandae illo mollitia dignissimos, dolor, quis deleniti. Cumque esse incidunt, natus libero.
.card-action
a(href='#') Link
.card-reveal
.container
.section
// Icon Section
.row
.col.m4
.icon-block
h2.center.light-blue-text
i.mdi-image-flash-on
h5.center Speeds up development
p.light
| We did most of the heavy lifting for you to provide a default stylings that incorporate our custom components. Additionally, we refined animations and transitions to provide a smoother experience for developers.
.col.m4
.icon-block
h2.center.light-blue-text
i.mdi-social-group
h5.center User Experience Focused
p.light
| By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.
.col.m4
.icon-block
h2.center.light-blue-text
i.mdi-action-settings
h5.center Easy to work with
p.light
| We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.
br
br
.section
footer.page-footer.orange
.container
.row
.col.l6.s12
h5.white-text Company Bio
p.grey-text.text-lighten-4
| We are a team of college students working on this project like it's our full time job. Any amount would help support and continue development on this project and is greatly appreciated.
.col.l3.s12
h5.white-text Settings
ul
li
a.white-text(href='#!') Link 1
li
a.white-text(href='#!') Link 2
li
a.white-text(href='#!') Link 3
li
a.white-text(href='#!') Link 4
.col.l3.s12
h5.white-text Connect
ul
li
a.white-text(href='#!') Link 1
li
a.white-text(href='#!') Link 2
li
a.white-text(href='#!') Link 3
li
a.white-text(href='#!') Link 4
.footer-copyright
.container
| Made by
a.orange-text.text-lighten-3(href='http://materializecss.com') Materialize
// Scripts
script(src='https://code.jquery.com/jquery-2.1.1.min.js')
script(src='js/bin/materialize.js')
//- ScrollFire Actions
script(type='text/javascript').
var whiteMenu = function(){
console.log('down');
$('nav').removeClass('light-blue').addClass('white');
};
var blueMenu = function(){
console.log('up');
$('nav').removeClass('white').addClass('light-blue');
};
var options = [
{selector: '#navbar', offset: 300 , downcallback: 'whiteMenu()', upcallback: 'blueMenu()' }
];
Materialize.scrollFire(options);