atst/templates/blank.html.to
2018-05-25 14:41:21 -04:00

30 lines
507 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 %}
<link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">
</head>
<body>
<div class='usa-grid'>
{% block content %}
these are not the droids you are looking for
{% end %}
</div>
</body>
</html>