mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-17 16:35:54 +00:00
25 lines
834 B
HTML
25 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block head %}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
{% block styles %}{{ bootstrap.load_css() }}{% endblock %}
|
|
<title>Benchmark</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include "_nav.html" %}
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
{% for message in messages %}<div class="alert alert-info" role="alert">{{ message }}</div>{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
{% block jscript %}{{ bootstrap.load_js() }}{% endblock %}
|
|
</html>
|