2022-06-04 21:50:34 +01:00
|
|
|
<!DOCTYPE html>
|
2022-04-10 23:21:45 +01:00
|
|
|
<html>
|
2022-10-27 14:12:11 +03:00
|
|
|
|
2022-04-10 23:21:45 +01:00
|
|
|
<head>
|
2023-03-03 23:52:16 +01:00
|
|
|
<title>MicroBin</title>
|
2022-06-03 17:24:34 +01:00
|
|
|
|
2022-04-10 23:21:45 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2022-11-01 20:56:07 +02:00
|
|
|
<link rel="icon" type="image/svg+xml" href="{{ args.public_path }}/static/favicon.svg">
|
2022-05-07 22:30:57 +01:00
|
|
|
{% if !args.pure_html %}
|
2022-10-29 14:11:55 +03:00
|
|
|
{% if args.custom_css.as_ref().is_none() %}
|
2022-10-27 14:12:11 +03:00
|
|
|
<link rel="stylesheet" href="{{ args.public_path }}/static/water.css">
|
2022-10-29 14:11:55 +03:00
|
|
|
{%- else %}
|
|
|
|
<link rel="stylesheet" href="{{ args.custom_css.as_ref().unwrap() }}">
|
|
|
|
{%- endif %}
|
2022-05-07 22:30:57 +01:00
|
|
|
{%- endif %}
|
2022-10-29 14:11:55 +03:00
|
|
|
|
2022-10-27 14:12:11 +03:00
|
|
|
</head>
|
2022-06-03 17:24:34 +01:00
|
|
|
{% if args.wide %}
|
2022-10-27 14:12:11 +03:00
|
|
|
|
2022-04-23 16:47:36 +01:00
|
|
|
<body style="
|
2022-10-29 14:11:55 +03:00
|
|
|
max-width: 1080px;
|
2022-04-11 14:41:28 +01:00
|
|
|
margin: auto;
|
|
|
|
padding-left:0.5rem;
|
|
|
|
padding-right:0.5rem;
|
|
|
|
line-height: 1.5;
|
2022-04-23 16:47:36 +01:00
|
|
|
font-size: 1.1em;
|
|
|
|
">
|
2022-10-27 14:12:11 +03:00
|
|
|
{%- else %}
|
|
|
|
|
|
|
|
<body style="
|
2022-10-29 14:11:55 +03:00
|
|
|
max-width: 800px;
|
2022-06-03 17:24:34 +01:00
|
|
|
margin: auto;
|
|
|
|
padding-left:0.5rem;
|
|
|
|
padding-right:0.5rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-size: 1.1em;
|
|
|
|
">
|
2022-10-27 14:12:11 +03:00
|
|
|
{%- endif %}
|
|
|
|
<br>
|
2022-04-10 23:21:45 +01:00
|
|
|
|
2022-10-27 14:12:11 +03:00
|
|
|
{% if !args.hide_header %}
|
2022-05-07 22:30:57 +01:00
|
|
|
|
2022-10-27 14:12:11 +03:00
|
|
|
<b style="margin-right: 0.5rem">
|
2022-06-03 17:24:34 +01:00
|
|
|
|
2022-10-27 14:12:11 +03:00
|
|
|
{% if !args.hide_logo %}
|
2023-03-05 15:21:12 +01:00
|
|
|
<a href="{{ args.public_path }}/"><img
|
|
|
|
width=48
|
|
|
|
style="margin-bottom: -12px;"
|
|
|
|
src="{{ args.public_path }}/static/logo.png"
|
|
|
|
></a>
|
2023-03-03 23:52:16 +01:00
|
|
|
{%- endif %}
|
2023-03-05 15:21:12 +01:00
|
|
|
{{ args.title }}
|
2022-10-27 14:12:11 +03:00
|
|
|
</b>
|
2022-04-23 16:47:36 +01:00
|
|
|
|
2022-10-29 14:11:55 +03:00
|
|
|
<a href="{{ args.public_path }}/" style="margin-right: 0.5rem; margin-left: 0.5rem">New
|
2022-11-01 20:56:07 +02:00
|
|
|
</a>
|
2022-04-23 16:47:36 +01:00
|
|
|
|
2022-11-01 20:56:07 +02:00
|
|
|
<a href="{{ args.public_path }}/pastalist" style="margin-right: 0.5rem; margin-left: 0.5rem">List</a>
|
2022-04-10 23:21:45 +01:00
|
|
|
|
2022-10-29 14:11:55 +03:00
|
|
|
<a href="{{ args.public_path }}/info" style="margin-right: 0.5rem; margin-left: 0.5rem">Info</a>
|
2022-06-03 17:24:34 +01:00
|
|
|
|
2022-10-27 14:12:11 +03:00
|
|
|
<hr>
|
2022-05-07 22:30:57 +01:00
|
|
|
|
2023-02-27 00:55:27 +01:00
|
|
|
{%- endif %}
|