select.pug
2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
doctype html
html
head
title= title
link(rel='stylesheet', href='stylesheets/style.css')
body
block content
h1 당신의 동네 : #{userLocation}
.row
.col.s12.m7
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/restaurant.jpg' style='width:400px; height: 300px;')
h1.card-title 맛집
.card-content
p
| 주변 동네 맛집의 개수와 얼마나 다양한 음식점이 있는지
.card-action
a(href='/select/food') 검사!
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/school.jpg' style='width:400px; height: 300px;')
h1.card-title 학군
.card-content
p
| 주변 학교, 학원 환경
.card-action
a(href='/select/school') 검사!
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/park.jpg' style='width:400px; height: 300px;')
h1.card-title 공원
.card-content
p
| 주변 공원
.card-action
a(href='/select/park') 검사!
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/public_transport.jpg' style='width:400px; height: 300px;')
h1.card-title 대중교통
.card-content
p
| 대중교통 편리도
.card-action
a(href='/select/transport') 검사!
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/safe.jpg' style='width:400px; height: 300px;')
h1.card-title 안전
.card-content
p
| 주변 경찰서, 범죄자 인근~~
.card-action
a(href='/select/safe') 검사!
.card(style='background-color: skyblue; display: inline-block;')
.card-image
img(src='/cultural_life.jpg' style='width:400px; height: 300px;')
h1.card-title 여가
.card-content
p
| 문화생활 시설
.card-action
a(href='/select/culture') 검사!