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/template/layout.pug

21 lines
699 B
Text
Raw Normal View History

doctype html
html
head
title= title
link(href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet")
link(rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css")
link(rel="stylesheet", href="/stylesheets/style.css")
2020-10-12 22:46:22 +02:00
script(src="/socket.io/socket.io.js")
body
2020-12-12 18:38:03 +01:00
- let student = true
- let teacher = false
- let admin = false
2020-11-03 08:24:17 +01:00
div(class="row" id="page")
2020-12-12 18:38:03 +01:00
block navbar
div(class="col s12" id="main")
2020-11-03 08:24:17 +01:00
block content
2020-11-03 12:54:40 +01:00
script(src="/javascripts/main.js")
script(src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js")
2020-12-12 18:38:03 +01:00
script.
M.AutoInit();