-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jade
31 lines (29 loc) · 1.11 KB
/
index.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
//output:output/index.html
doctype html
html
head
link(rel="stylesheet", href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css")
link(rel="stylesheet", href="main.min.css")
link(href="https://fonts.googleapis.com/icon?family=Material+Icons", rel="stylesheet")
link(rel="stylesheet", href="https://fonts.googleapis.com/css?family=Montserrat", type="text/css" )
title ListMaker
body
header(class="header")
div(class="container")
div(class="row")
div(class="col-xs-12 col-md-12")
h1 ListMaker
div(class="main")
div(class="container")
div(class="row")
form(class="form")
div(class="col-xs-8 col-md-10")
input(id="comment", type="text", placeholder="Next Item")
div(class="col-xs-4 col-md-2")
button(type="submit", class="btn")
//-
add button
i(class="material-icons") 
ul(class="comments" id="com")
script(src="https://code.jquery.com/jquery-2.2.3.min.js")
script(src="script.js")