adejs/controllers/index/templates/index.pug

24 lines
838 B
Plaintext
Raw Normal View History

2017-09-23 11:39:42 +02:00
extends ../../../templates/base.pug
block content
2017-09-25 21:33:20 +02:00
.jumbotron
h1.display-3 Welcome#{session.user !== undefined ? ', ' + session.user.username : ' on ADEjs'}!
2017-09-25 21:33:20 +02:00
if session.user === undefined
p.lead.
On this site, you can subscribe, set your calendar information
and we will compute for you your total time and TD equivalent
time.
hr.my-4
p.
If you are already registered on our site, you can
<a href='#{getUrl('login')}'>sign in</a>, or if you are new,
you can <a href='#{getUrl('signup')}'>sign up</a>, it's free!
else
p.lead.
2018-11-15 17:26:30 +01:00
Feel free to click one of the links in the top bar to get
information about your calendar!
2017-09-25 21:33:20 +02:00
hr