annotate template/links.jade.mustache @ 28:7c82ffbca5d0

py3 and k8s upgrade
author drewp@bigasterisk.com
date Sun, 12 Jul 2020 13:16:33 -0700
parents 8008ec2fd763
children c23acc88324b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
1 doctype html
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
2 html
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
3 head
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
4 title {{desc}}
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
5 {{> head.jade}}
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
6 body
5
f8c4c7ce5f4a lots of href additions: add/edit, nav fixes
Drew Perttula <drewp@bigasterisk.com>
parents: 4
diff changeset
7 | {{{loginBar}}}
18
7ef5365591fd up-link on the user pages
Drew Perttula <drewp@bigasterisk.com>
parents: 10
diff changeset
8
7ef5365591fd up-link on the user pages
Drew Perttula <drewp@bigasterisk.com>
parents: 10
diff changeset
9
7ef5365591fd up-link on the user pages
Drew Perttula <drewp@bigasterisk.com>
parents: 10
diff changeset
10 p
7ef5365591fd up-link on the user pages
Drew Perttula <drewp@bigasterisk.com>
parents: 10
diff changeset
11 a(href="{{toRoot}}/") href top
7ef5365591fd up-link on the user pages
Drew Perttula <drewp@bigasterisk.com>
parents: 10
diff changeset
12
2
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
13 h2 Showing {{desc}}
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
14
4
409da49c148d partway though add
drewp@bigasterisk.com
parents: 2
diff changeset
15 p
409da49c148d partway though add
drewp@bigasterisk.com
parents: 2
diff changeset
16 a(href="{{toRoot}}/addLink") Add link
409da49c148d partway though add
drewp@bigasterisk.com
parents: 2
diff changeset
17
2
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
18 | Filter to:
10
e054949143e9 reworking addlink and shareWith support
drewp@bigasterisk.com
parents: 7
diff changeset
19 input#filterTag(type='hidden', style="width: 300px")
2
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
20
21
8008ec2fd763 fix up link page reloading. tried davisjs; may not need it
Drew Perttula <drewp@bigasterisk.com>
parents: 20
diff changeset
21 .linklist
8008ec2fd763 fix up link page reloading. tried davisjs; may not need it
Drew Perttula <drewp@bigasterisk.com>
parents: 20
diff changeset
22 {{> linklist.jade}}
8008ec2fd763 fix up link page reloading. tried davisjs; may not need it
Drew Perttula <drewp@bigasterisk.com>
parents: 20
diff changeset
23
8008ec2fd763 fix up link page reloading. tried davisjs; may not need it
Drew Perttula <drewp@bigasterisk.com>
parents: 20
diff changeset
24 p.stats {{stats}}
5
f8c4c7ce5f4a lots of href additions: add/edit, nav fixes
Drew Perttula <drewp@bigasterisk.com>
parents: 4
diff changeset
25 script
28
7c82ffbca5d0 py3 and k8s upgrade
drewp@bigasterisk.com
parents: 21
diff changeset
26 | var toRoot = "{{toRoot}}", user = "{{user}}";
2
80b11112c9e0 web app for query urls like /user and /user/tag+tag
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
27 {{> tail.jade}}
10
e054949143e9 reworking addlink and shareWith support
drewp@bigasterisk.com
parents: 7
diff changeset
28 script(src="{{toRoot}}/static/links.js")