notes/templates/base.html

17 lines
623 B
HTML

<!doctype html>
<html lang="lv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Piezīmju lietotne{% endblock %}</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"></script>
<script src="{{ url_for('static', filename='scripts.js') }}"></script>
</head>
<body>
<div class="container mt-5">
{% block content %}
{% endblock %}
</div>
</body>
</html>