You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
837 B
24 lines
837 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='styles.css') }}"
|
|
/>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<title>{% block title %} {% endblock %} Temporary Indexing</title>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-md navbar-light">
|
|
<a href="/">Temporary Indexing</a>
|
|
<a href="/about">About</a>
|
|
</nav>
|
|
<hr class="line">
|
|
<div class="content">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|