41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}PhysCom{% endblock %}</title>
|
|
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='logo.svg') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="{{ url_for('index') }}" class="nav-brand">
|
|
<img src="{{ url_for('static', filename='logo.svg') }}" alt="">
|
|
PhysCom
|
|
</a>
|
|
<ul>
|
|
<li><a href="{{ url_for('entities.entity_list') }}">Entities</a></li>
|
|
<li><a href="{{ url_for('domains.domain_list') }}">Domains</a></li>
|
|
<li><a href="{{ url_for('pipeline.pipeline_form') }}">Pipeline</a></li>
|
|
<li><a href="{{ url_for('results.results_index') }}">Results</a></li>
|
|
<li><a href="{{ url_for('admin.admin_index') }}">Admin</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<main>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
<div class="flash-container">
|
|
{% for category, message in messages %}
|
|
<div class="flash flash-{{ category }}">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|