atst/templates/base.html.to
2018-05-25 09:24:39 -04:00

24 lines
463 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% block title %}JEDI{% end %}</title>
{% for url in assets['css'].urls() %}
<link rel="stylesheet" href="{{ url }}" type="text/css">
{% end %}
</head>
<body>
{% include 'header.html.to' %}
<div class='usa-grid'>
{% block content %}
these are not the droids you are looking for
{% end %}
</div>
</body>
</html>