This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf/md_pdf/assets/templates/header-template.html

21 lines
455 B
HTML
Raw Normal View History

2017-05-17 17:52:57 +01:00
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ static_dir }}/style.css" />
2017-05-17 17:52:57 +01:00
</head>
<body class="header">
2017-05-25 20:07:38 +01:00
<table>
<tr>
2017-05-27 11:51:00 +01:00
<td>{{ title }}</td>
2017-05-25 20:07:38 +01:00
<td></td>
2017-05-25 21:33:18 +01:00
<td>
{% if submission_date %}
Date: {{ submission_date }}
{% endif %}
</td>
2017-05-25 20:07:38 +01:00
</tr>
</table>
<script type="text/javascript" src="{{ internal_static_dir }}/context.js"></script>
2017-05-17 17:52:57 +01:00
</body>
</html>