Files
Bujo/app/templates/index.html

21 lines
447 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BuJo</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<header>
<h1>🌿 BuJo</h1>
<p>Your personal bullet journal</p>
</header>
<main>
<p>Ready to capture your day?</p>
</main>
</body>
</html>