2022-12-28 00:46:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Leggy land</title>
|
2023-02-05 14:19:21 +00:00
|
|
|
<meta name="description" content="Fluffy Bean's amazing website">
|
|
|
|
<link rel="icon" href="{{url_for('static', filename='images/taidum.png')}}">
|
|
|
|
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}">
|
|
|
|
<script src="{{ url_for('static', filename='js/main.js') }}" defer></script>
|
|
|
|
<script>
|
|
|
|
function fadeOnLoad(obj) {
|
|
|
|
obj.style.transition = "opacity 1s";
|
|
|
|
obj.style.opacity = 1;
|
|
|
|
}
|
2022-12-28 00:46:08 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-02-05 14:19:21 +00:00
|
|
|
<nav>
|
|
|
|
<a class="{% block nav_home %}{% endblock %}" href="/">Home</a>
|
|
|
|
<a class="{% block nav_cretura %}{% endblock %}" href="/cretura">Cretura</a>
|
|
|
|
<a class="{% block nav_about %}{% endblock %}" href="/about">About</a>
|
|
|
|
<span class="spacer"></span>
|
|
|
|
<a class="{% block nav_music %}{% endblock %}" href="/music">Music</a>
|
|
|
|
</nav>
|
2022-12-28 00:46:08 +00:00
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
{% block content %} {% endblock %}
|
|
|
|
</div>
|
|
|
|
|
2023-02-05 14:19:21 +00:00
|
|
|
<div class="toast-container"></div>
|
2022-12-28 00:46:08 +00:00
|
|
|
</body>
|
|
|
|
</html>
|