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