podcast-generator/templates/layout.html.j2
Jake Walker dd268a8028
All checks were successful
ci/woodpecker/push/build Pipeline was successful
web app rewrite
2025-01-10 13:30:09 +00:00

18 lines
440 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<title>Podcast Server</title>
</head>
<body>
<main class="container">
{% block content %}{% endblock %}
</main>
</body>
</html>