<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>{{ title }}</title>
  <link rel="stylesheet" href="/style.css">
</head>
<body class="{% if title == "About" %}about{% else %}standard{% endif %}">
  {% include "header.html" %}
  {{ content }}
  {% include "footer.html" %}
</body>
</html>