23 lines
684 B
Django/Jinja
23 lines
684 B
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{% block title %}UnderCover{% endblock title %}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles_min.css') }}">
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" />
|
|
<meta name="viewport" content="user-scalable=no; width=device-width">
|
|
{% block head %}{{ head }}{% endblock head %}
|
|
</head>
|
|
|
|
<body>
|
|
<a href="/" style="text-decoration: none;">
|
|
<h1><span class="logo left">Under</span><span class="logo right">Cover</span></h1>
|
|
</a>
|
|
<h2>The secret cover letter generator</h2>
|
|
{% block content %}
|
|
{{ content }}
|
|
{% endblock content %}
|
|
</body>
|
|
|
|
</html>
|