forked from berbaquero/Reeddit-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jade
120 lines (56 loc) · 2.22 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
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
doctype html
html
head
title ​
meta(charset="utf-8")
link(rel="stylesheet", href="css/normalize.css")
link(rel="stylesheet", href="css/reeddit.css")
link(rel="stylesheet", href="css/desk.css")
body
header
div#main-title
p#sub-title
section#nav-back.corner.invisible
div#back-arrow.button.btn-to-main
div.icon-btn
div#title-head
div#header-icon
p#title
section.corner
div#refresh-icon.button.btn-refresh
div.icon-btn
nav#menu-container
div.view
div#edit-subs
span#btn-add-subs.btn-edit-sub +
span#btn-edit-subs.btn-edit-sub •••
div#main-menu.wrapper
div.menu-desc Subreddits
span#btn-new-sub.btn-side-menu-add +
ul#subs
div.menu-desc Channels
span#btn-new-channel.btn-side-menu-add +
ul#channels
div.menu-desc Sorting
div#sorting
p.sort-option.sorting-choice hot
p.sort-option new
p.sort-option controversial
p.sort-option top
div.menu-desc Options
div#imp-exp.option Import & Export Data
section.view.main-view.show-view
section#main-wrap.wrapper
div#main-footer.view-footer
p#footer-sub
div(class="btn-footer footer-refresh btn-refresh", data-origin="footer-main")
section.view.detail-view
section#detail-wrap.wrapper
div#detail-footer.view-footer
div#detail-close.btn-footer.hide.btn-to-main
p#footer-post
div(class="btn-footer footer-refresh btn-refresh hide", data-origin="footer-detail")
script(src="js/libs.js")
script(src="js/dom.js")
script(src="js/reeddit.js")
script(src="js/sharing.js")