Wishlist refresh button
This commit is contained in:
parent
5cf6ad5d3e
commit
b13e255380
2 changed files with 16 additions and 4 deletions
|
@ -29,6 +29,7 @@ html(lang='en')
|
||||||
div(style='margin-top: 1.5em;')
|
div(style='margin-top: 1.5em;')
|
||||||
section.section
|
section.section
|
||||||
div.container.is-marginless.fullwidth
|
div.container.is-marginless.fullwidth
|
||||||
|
block title
|
||||||
if title
|
if title
|
||||||
h1= config.siteTitle + ' - ' + title
|
h1= config.siteTitle + ' - ' + title
|
||||||
else if title !== false
|
else if title !== false
|
||||||
|
|
|
@ -1,5 +1,16 @@
|
||||||
extends layout.pug
|
extends layout.pug
|
||||||
|
|
||||||
|
block title
|
||||||
|
h1
|
||||||
|
.level
|
||||||
|
.level-left
|
||||||
|
.level-item
|
||||||
|
button.button.is-rounded(onclick='location.reload()')
|
||||||
|
span.icon
|
||||||
|
i.fas.fa-sync-alt
|
||||||
|
.level-item
|
||||||
|
span #{config.siteTitle} - #{title}
|
||||||
|
|
||||||
block content
|
block content
|
||||||
script(type='data/user_id')= req.user._id
|
script(type='data/user_id')= req.user._id
|
||||||
if process.env.TABLE !== 'false'
|
if process.env.TABLE !== 'false'
|
||||||
|
|
Loading…
Reference in a new issue