karton/templates/header.html

36 lines
889 B
HTML
Raw Normal View History

2022-04-10 22:21:45 +00:00
<html>
<head>
<title>MicroBin</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% if !args.pure_html %}
<link rel="stylesheet" href="/static/water.css">
{%- endif %}
</head>
<body style="
max-width: 720px;
2022-04-11 13:41:28 +00:00
margin: auto;
padding-left:0.5rem;
padding-right:0.5rem;
line-height: 1.5;
font-size: 1.1em;
">
2022-04-10 22:21:45 +00:00
<br>
{% if !args.hide_header %}
2022-04-10 22:21:45 +00:00
<b style="margin-right: 0.5rem">
<i><span style="font-size:2.2rem; margin-right:1rem">μ</span></i> MicroBin
2022-04-10 22:21:45 +00:00
</b>
2022-04-10 22:21:45 +00:00
<a href="/" style="margin-right: 0.5rem; margin-left: 0.5rem">New Pasta</a>
2022-04-10 22:21:45 +00:00
<a href="/pastalist" style="margin-right: 0.5rem; margin-left: 0.5rem">Pasta List</a>
<a href="https://github.com/szabodanika/microbin" style="margin-right: 0.5rem; margin-left: 0.5rem">GitHub</a>
<hr>
{%- endif %}