84 lines
1.6 KiB
HTML
84 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tachyons.min.css" type="text/css" />
|
|
<script type="text/javascript" src="{{ SITEURL }}/theme/js/jquery-3.5.0.min.js"></script>
|
|
<style>
|
|
body {
|
|
font: 0.75em/1.5 AppleGothic, Sans-serif;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.noticeable:hover {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
.paginator {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
article.title {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
time {
|
|
font-size: 0.65em;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
ul {
|
|
padding-bottom: 1em;
|
|
padding-inline-start: 2em;
|
|
}
|
|
|
|
.footnote-reference {
|
|
font-size: 0.65em;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="black" style="margin: 1em;">
|
|
|
|
<div class="pb5 cf" style="font-size: 3.6em;">
|
|
{% block content_header %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('a[class*=external]').attr('target', '_blank').css('background-color', 'rgba(0, 0, 0, 0.1)');
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|