homepage.js/view/page/resume.pug

24 lines
900 B
Plaintext
Raw Normal View History

2023-03-09 14:40:29 +01:00
extends ../layout/main.pug
block root
- var title = 'Resume'
link(rel='stylesheet' href='/static/ui/resume.css')
block content
h2 My online resume
hr
2023-03-09 14:47:22 +01:00
div(class='resume_app_container')
div(id='resume_js_app')
p(class='js_loading_indicator')
| JS is loading. Please hold on...
br
2023-03-09 15:19:09 +01:00
img(src='/static/ui/load.gif' style='border-radius:4px;margin-top:6px')
br
noscript
span(style='font-size:9pt;color:darkred;font-weight:bold;text-align:center')
| It seems that you have JS disabled.
br
2023-03-10 08:05:46 +01:00
| Please, enable it in order to run the app.
if (process.env.APP_DEBUG != 'true')
script(src='/static/dist/resume.js')
else
script(src='http://localhost:1234/resume.js' type='module')