pastebin/templates/header.rs.html

20 lines
572 B
HTML
Raw Normal View History

2019-10-24 12:15:53 +00:00
@use crate::models::session::Session;
2019-12-17 13:28:43 +00:00
@(session: &Session)
2019-04-17 07:41:33 +00:00
2019-03-02 16:35:05 +00:00
<!DOCTYPE html>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>pastebin.run</title>
2019-12-21 16:47:25 +00:00
<link rel=stylesheet href="/static/style-v2.css">
2019-12-17 13:28:43 +00:00
<meta name=description content="@session.description">
<header id=header>
2019-03-15 07:39:49 +00:00
<div>
<a href="/">
<h1>pastebin<small>.run</small></h1>
</a>
2019-11-27 18:16:03 +00:00
<nav id="menu-buttons"><ul><li><a href="https://gitlab.com/pastebin.run/server">Source code</a></li></ul></nav>
2019-03-15 07:39:49 +00:00
</div>
2019-03-02 16:35:05 +00:00
</header>
<article id=article>