Files
flask-practice/templates/base.html
2025-03-17 19:30:50 -05:00

34 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flask App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
</head>
<body>
<header>
<nav>
<a href="{{ url_for('home') }}">Home</a>
<a href="{{ url_for('add_item') }}">Add Item</a>
<a href="{{ url_for('get_weather') }}">Weather</a>
<a href="{{ url_for('rank') }}">Relative Rank</a>
<a href="{{ url_for('motion') }}">Motion Graphics</a>
<a href="{{ url_for('vocabulary') }}">Vocabulary</a>
<a href="{{ url_for('short_stories') }}">Short Stories</a>
<a href="{{ url_for('about') }}">About</a>
</nav>
</header>
<main>
<div class="container mt-4">
{% block content %}{% endblock %}
{% block moreContent%}{% endblock %}
</div>
</main>
</body>
</html>