image_node/views/layout.pug

19 lines
339 B
Text
Raw Normal View History

doctype html
html(lang="en")
head
meta(charset='utf-8')
if title
title Image Node - #{title}
else
title Image Node
2020-04-26 21:25:55 +02:00
link(rel="stylesheet", href="/css/main.css")
body
2020-04-29 09:22:33 +02:00
header
if session.login
p.hy Hy #{session.username} !
a.logout(href="/logout") Logout
else
a.login(href="/login") Login
block content