Move song page to a request for faster loading

Updated some info
This commit is contained in:
Michał Gdula 2023-02-26 19:24:11 +00:00
parent 70ded2c95e
commit 3613f90fa5
7 changed files with 285 additions and 97 deletions

View file

@ -8,18 +8,12 @@
<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>
<a class="{% block nav_cretura %}{% endblock %}" href="/cretura">Cretura</a>
<span class="spacer"></span>
<a class="{% block nav_music %}{% endblock %}" href="/music">Music</a>
</nav>