You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<title>My Song Lyrics</title>
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
|
</head>
|
|
|
<body>
|
|
|
<div class="container">
|
|
|
<h1>My Song Lyrics</h1>
|
|
|
<nav>
|
|
|
<a href="{{ url_for('index') }}">Home</a>
|
|
|
<a href="{{ url_for('add_song') }}">Add Song</a>
|
|
|
</nav>
|
|
|
<hr>
|
|
|
{% block content %}{% endblock %}
|
|
|
</div>
|
|
|
</body>
|
|
|
</html>
|