2022-01-23 22:34:16 +01:00
|
|
|
<!-- templates/base.html -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-01-25 18:48:45 +01:00
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
|
|
|
|
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
2022-01-23 22:34:16 +01:00
|
|
|
<meta charset="utf-8">
|
2022-01-25 18:48:45 +01:00
|
|
|
<title>{% block title %}MultiUserOpenRefine{% endblock %}</title>
|
2022-01-23 22:34:16 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
2022-01-25 18:48:45 +01:00
|
|
|
<div class="container">
|
|
|
|
<div style="position: page; vertical-align: center">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-8">
|
|
|
|
<img src="../static/images/logo.png" alt="logo"
|
|
|
|
style="padding-top: 10px; height: auto; width: 50%; display: block; margin-left: auto; margin-right: auto;">
|
|
|
|
<h1 class="mt-2" style="text-align: center; padding-bottom: 10px">MultiUserOpenRefine</h1>
|
|
|
|
<div style="border-radius: 25px; border: 4px solid #e0e0e0; padding: 20px; box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-23 22:34:16 +01:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|