pict-rs-proxy/templates/layout.rs.html
2020-06-17 12:25:57 -05:00

23 lines
754 B
HTML

@use super::statics::{layout_css, favicon_ico};
@(head: Content, body: Content)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="@crate::statics(&layout_css.name)" type="text/css" />
<meta property="og:title" content="A simple image host" />
<meta property="og:description" content="Upload and share image files" />
<meta property="og:type" content="website" />
<link rel="shortcut icon" type="image/png" href="@crate::statics(&favicon_ico.name)">
@:head()
</head>
<body>
<div class="title"><h1>pict-rs</h1></div>
@:body()
</body>
</html>