20 lines
455 B
HTML
20 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="{{ static_dir }}/style.css" />
|
|
</head>
|
|
<body class="header">
|
|
<table>
|
|
<tr>
|
|
<td>{{ title }}</td>
|
|
<td></td>
|
|
<td>
|
|
{% if submission_date %}
|
|
Date: {{ submission_date }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script type="text/javascript" src="{{ internal_static_dir }}/context.js"></script>
|
|
</body>
|
|
</html>
|