endorsement/templates/base.html

24 lines
290 B
HTML
Raw Normal View History

<html>
<head>
<link rel="stylesheet" href="/css/bulma.css" type="text/css">
<link rel="stylesheet" href="/css/index.css" type="text/css">
{% block head %}
{% endblock %}
</head>
<body>
{% block content %}
No content yet.
{% endblock %}
</body>
</html>