-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path_material.pug
45 lines (35 loc) · 1.21 KB
/
_material.pug
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
//- material.pug
//- Material design mixins
//- Including buttons
include components/buttons
//- Including breadcrumbs
include components/breadcrumbs
//- Including cards
include components/cards
//- Including cards
include components/chip
//- Including collections
include components/collections
//- Including carousel
include components/carousel
//- Including collapsible
include components/collapsible
//- Including tooltips
include components/tooltips
//- Including dropdowns
include components/dropdowns
doctype html
html(lang="en")
head
link(href="https://fonts.googleapis.com/icon?family=Material+Icons", rel="stylesheet")
//- Import materialize.css
link(type="text/css", rel="stylesheet", href="materialize/css/materialize.min.css")
//- Let browser know website is optimized for mobile
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title Pug Material
body
block body
block scripts
//- import jQuery before materialize.js
script(src="js/jquery-2.1.1.min.js")
script(src="materialize/js/materialize.min.js")