52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
extends layout
|
|
|
|
block navbar
|
|
if student === true
|
|
div(id="navprofile" class="student")
|
|
p Kezel Benoit
|
|
p G4S3
|
|
a(id="logout") Logout
|
|
if teacher === true
|
|
div(id="navprofile" class="teacher")
|
|
p Kezel Benoit
|
|
a(id="logout") Logout
|
|
if admin === true
|
|
div(id="navprofile" class="admin")
|
|
p Kezel Benoit
|
|
a(id="logout") Logout
|
|
|
|
div(id="navtop")
|
|
ul
|
|
if student === true
|
|
li(class="active")
|
|
a(href="/") Home
|
|
li
|
|
a(href="/edt") Planning
|
|
li
|
|
a(href="/marks") 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
|
|
if teacher === true
|
|
li(class="active")
|
|
a(href="/") Home
|
|
li
|
|
a(href="/edt") Planning
|
|
li
|
|
a(href="/marks") Marks
|
|
li
|
|
a(href="https://mail.univ-lyon1.fr/owa/") Mail
|
|
li
|
|
a(href="https://clarolineconnect.univ-lyon1.fr/") Claroline
|
|
if admin === true
|
|
li(class="active")
|
|
a Accueil
|
|
li
|
|
a Notes
|
|
li
|
|
a Vie scolaire et étudiante
|
|
li
|
|
a Gestion des profils
|