archive
/
md-pdf
Archived
1
Fork 0
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/cover-template.html

25 lines
537 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ static_dir }}/style.css" />
</head>
<body class="cover">
<h1>{{ title }}</h1>
{% if subtitle %}
<h3>{{ subtitle }}</h3>
{% endif %}
{% if student_number %}
<h4>Student Number: {{ student_number }}</h4>
{% endif %}
{% if turnitin_number %}
<h4>TurnItIn Number: {{ turnitin_number }}</h4>
{% endif %}
{% if submission_date %}
<h4>Submission Date: {{ submission_date }}</h4>
{% endif %}
</body>
</html>