lost-train/themes/aurora/templates/base.html
Dooho Yi 0fc0ecfe74 < ‘themes/theme-dark/LICENSE’
> ‘themes/aurora/LICENSE’
< ‘themes/theme-dark/README.md’
> ‘themes/aurora/README.md’
< ‘themes/theme-dark/screenshot.png’
> ‘themes/aurora/screenshot.png’
< ‘themes/theme-dark/static/css/main.css’
> ‘themes/aurora/static/css/main.css’
< ‘themes/theme-dark/static/css/pygment.css’
> ‘themes/aurora/static/css/pygment.css’
< ‘themes/theme-dark/static/css/tachyons.min.css’
> ‘themes/aurora/static/css/tachyons.min.css’
< ‘themes/theme-dark/static/js/jquery-3.5.0.min.js’
> ‘themes/aurora/static/js/jquery-3.5.0.min.js’
< ‘themes/theme-dark/templates/analytics.html’
> ‘themes/aurora/templates/analytics.html’
< ‘themes/theme-dark/templates/archives.html’
> ‘themes/aurora/templates/archives.html’
< ‘themes/theme-dark/templates/article.html’
> ‘themes/aurora/templates/article.html’
< ‘themes/theme-dark/templates/author.html’
> ‘themes/aurora/templates/author.html’
< ‘themes/theme-dark/templates/authors.html’
> ‘themes/aurora/templates/authors.html’
< ‘themes/theme-dark/templates/base.html’
> ‘themes/aurora/templates/base.html’
< ‘themes/theme-dark/templates/categories.html’
> ‘themes/aurora/templates/categories.html’
< ‘themes/theme-dark/templates/category.html’
> ‘themes/aurora/templates/category.html’
< ‘themes/theme-dark/templates/comments.html’
> ‘themes/aurora/templates/comments.html’
< ‘themes/theme-dark/templates/disqus_script.html’
> ‘themes/aurora/templates/disqus_script.html’
< ‘themes/theme-dark/templates/github.html’
> ‘themes/aurora/templates/github.html’
< ‘themes/theme-dark/templates/index.html’
> ‘themes/aurora/templates/index.html’
< ‘themes/theme-dark/templates/page.html’
> ‘themes/aurora/templates/page.html’
< ‘themes/theme-dark/templates/pagination.html’
> ‘themes/aurora/templates/pagination.html’
< ‘themes/theme-dark/templates/piwik.html’
> ‘themes/aurora/templates/piwik.html’
< ‘themes/theme-dark/templates/tag.html’
> ‘themes/aurora/templates/tag.html’
< ‘themes/theme-dark/templates/taglist.html’
> ‘themes/aurora/templates/taglist.html’
< ‘themes/theme-dark/templates/tags.html’
> ‘themes/aurora/templates/tags.html’
< ‘themes/theme-dark/templates/translations.html’
> ‘themes/aurora/templates/translations.html’
< ‘themes/theme-dark/templates/twitter.html’
> ‘themes/aurora/templates/twitter.html’
2020-05-23 01:23:02 +09:00

91 lines
1.9 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;
color: rgba(100, 255, 200, 1.0); /* chartreuse */
/* color: rgba(255, 20, 147, 1.0); */ /* deeppink */
background-color: rgba(0, 20, 40, 1.0); /* black */
scrollbar-width: none;
}
body::-webkit-scrollbar {
width: 0;
height: 0;
}
a {
color: rgba(100, 255, 200, 0.5);
text-decoration: none;
}
a.noticeable:hover {
backgrounda-color: rgba(100, 255, 200, 0.15);
opacity: 0.4;
}
a.exlink {
color: rgba(100, 255, 200, 0.5);
border-width: 1px;
border-color: rgba(100, 255, 200, 0.5);
border-style: solid;
}
p {
margin: 0;
}
.paginator {
color: rgba(100, 255, 200, 0.5);
}
article.title {
font-size: 1.1em;
}
time {
font-size: 0.65em;
}
h1, h2, h3, h4, h5, h6 {
opacity: 0.3;
}
ul {
padding-bottom: 1em;
padding-inline-start: 2em;
}
</style>
</head>
<body>
<div 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").addClass("exlink");
});
</script>
</body>
</html>