mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 02:06:05 +00:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!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>
|
|
<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;
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
|
|
<div class="wrapper">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
|
|
<div class="toast-container"></div>
|
|
</body>
|
|
</html> |