lepisi-pengumuman/App/Views/base.html

70 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://use.fontawesome.com/0aa8f3d106.js"></script>
<link rel="stylesheet" href="/css/picnic.min.css">
<link rel="stylesheet" href="/css/rome.css">
<title>{% block title %}{% endblock %}</title>
<style>
.documentation > section {
background: #fff;
text-align: left;
width: 90%;
max-width: 960px;
margin: 0 auto;
padding: 80px 0 0;
}
nav.transparent {
box-shadow: none;
background: none;
}
.pseudo.button {
background: transparent;
color: #111;
}
.shyButton {
font-size: .75em;
}
.shyFont {
font-size: .65em;
}
.top {
position: fixed;
z-index: 10001;
}
.fl {
float: left;
}
.fr {
float: right;
}
td, th {
padding: .3em .45em .3em .6em;
}
</style>
</head>
<body>
<nav>
<a href="/" class="brand">
<span><i class="fa fa-home" aria-hidden="true"></i></span>
</a>
{% block nav %}{% endblock %}
</nav>
<script src="/js/rome.js"></script>
{% block body %}
{% endblock %}
</body>
</html>