view _layouts/default.html @ 91:caf449c570be

html: update main page, fix typo on code page
author Paper <paper@paper.us.eu.org>
date Wed, 19 Jun 2024 04:05:42 -0400
parents 5914d06f72b4
children 92f1ea793bf2
line wrap: on
line source

<!DOCTYPE html>
<html lang="en-US">
<head>
	<title>{{ page.title }} - Paper's website</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link href="/css/style.css" rel="stylesheet" media="screen">
	<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?">
	<style>
		body {
			{% if page.bgrepeat %}
				background-repeat: {{ page.bgrepeat }};
			{% else %}
				background-repeat: repeat;
			{% endif %}
			{% if page.bgimage %}
				{% unless page.bgimage == "none" %}
					background-image: url("{{ page.bgimage }}");
				{% endunless %}
			{% else %}
				background-image: url("/media/KnitLight.png");
			{% endif %}
			background-position: center top;
			{% if page.bgcolor %}
				{% unless page.bgcolor == "none" %}
					background-color: {{ page.bgcolor }};
				{% endunless %}
			{% else %}
				background-color: #737373;
			{% endif %}
			{% if page.bgsize %}
				background-size: {{ page.bgsize }};
			{% endif %}
			min-height: 100vh;
		}
	</style>
</head>
<body>
	{% include navigation.html %}

	<div class="catchall">

	{{ content }}

	</div>
</body>
</html>