This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/views/admin/layout.pug

41 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-08-27 18:39:30 +00:00
html
head
meta(charset="utf8")
2017-12-04 18:20:53 +00:00
meta(name="csrf-token", content=csrf)
2017-08-28 22:36:13 +00:00
block links
2017-08-29 12:00:36 +00:00
link(rel="stylesheet", type="text/css", href="https://fonts.googleapis.com/css?family=Open+Sans")
link(rel="stylesheet", type="text/css", href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css")
link(rel="stylesheet", type="text/css", href="/style/main.css")
link(rel="stylesheet", type="text/css", href="/style/admin.css")
script.
window.variables = {
server_time: parseInt('#{server_time}')
};
2017-08-27 18:39:30 +00:00
title
block title
|Icy Network - Administration
body
block navigation
nav
ul
li
2017-08-28 15:42:16 +00:00
a.navlogo(href="/") Icy Network
2017-08-27 18:39:30 +00:00
li
a(href="/admin/") Home
li
a(href="/admin/oauth2/") OAuth2
ul.right
li
a(href="/user/manage") #{user.display_name}
block dialog
.dialog-drop#dialog
.dialog
.head
#title
#close
i.fa.fa-fw.fa-times
.content#content
2017-08-27 18:39:30 +00:00
.wrapper
block body
2017-12-04 18:20:53 +00:00
script(src="/script/admin.js")