conference-archive/templates/base.html

42 lines
922 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
<style type="text/css">
body {
font-family: monospace;
margin: 40px auto;
max-width: 900px;
line-height: 1.6;
font-size: 18px;
color: #444;
padding: 0 10px
}
h1, h2, h3{line-height:1.2}
.text-nowrap { white-space:nowrap; }
.text-end { text-align: right; }
// img { max-width: 100%; height: auto; }
</style>
<title>{% block title %}Xanadu{% endblock %}</title>
{% block style %}
{% endblock %}
</head>
<body>
{% include "navbar.html" %}
{% block content %}
{% endblock %}
{% block script %}
{% endblock %}
</body>
</html>