2021-03-11 21:42:59 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en" class="h-100">
|
|
|
|
{% include 'head.html' %}
|
|
|
|
<body class="d-flex flex-column h-100">
|
2021-03-12 18:14:49 +01:00
|
|
|
{% include 'header.html' %}
|
2021-03-11 21:42:59 +01:00
|
|
|
<main class="flex-shrink-0">
|
|
|
|
<div class="container">
|
2021-03-12 18:14:49 +01:00
|
|
|
<h1 class="mt-3 fs-2">Results</h1>
|
|
|
|
<p>Processing <code>{{ filename }}</code>.</p>
|
2021-03-11 21:42:59 +01:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
2021-03-12 18:14:49 +01:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-10">
|
|
|
|
<blockquote>
|
|
|
|
{{ stdout | safe }}
|
|
|
|
</blockquote>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-11 21:42:59 +01:00
|
|
|
{% include 'footer.html' %}
|
|
|
|
</body>
|
|
|
|
</html>
|