1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
letu/views/index.pug

61 lines
2.1 KiB
Text
Raw Normal View History

extends layout
block content
2020-11-02 12:12:39 +01:00
- var student = true
- var teacher = false
- var admin = false
2020-10-13 13:39:58 +02:00
div(class="row" id="page")
2020-11-02 12:12:39 +01:00
div(class="col s2" id="panel")
2020-11-02 13:28:49 +01:00
if student === true
div(id="navprofile" class="student")
p Kezel Benoit
p G4S3
a Logout
if teacher === true
div(id="navprofile" class="teacher")
p Kezel Benoit
a Logout
if admin === true
div(id="navprofile" class="admin")
p Kezel Benoit
a Logout
2020-10-13 13:39:58 +02:00
div(id="navtop")
ul
2020-11-02 12:12:39 +01:00
if student === true
li
a Home
li(class="active")
2020-11-02 12:19:40 +01:00
a Planning
li
2020-11-02 12:12:39 +01:00
a Marks
li
a(href="https://mail.univ-lyon1.fr/owa/") Mail
li
a(href="https://clarolineconnect.univ-lyon1.fr/") Claroline
li
a School and student life
2020-11-02 13:28:49 +01:00
if teacher === true
li
a Home
li(class="active")
a Planning
li
a Marks
li
a(href="https://mail.univ-lyon1.fr/owa/") Mail
li
a(href="https://clarolineconnect.univ-lyon1.fr/") Claroline
2020-11-02 12:12:39 +01:00
if admin === true
li(class="active")
a Accueil
li
a Notes
li
a Vie scolaire et étudiante
li
a Gestion des profils
2020-10-13 13:39:58 +02:00
2020-11-02 13:28:49 +01:00
div(class="col s10" id="main")
include marks.pug