|
|
@ -2,22 +2,24 @@ |
|
|
<html lang="en"> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta charset="UTF-8"> |
|
|
<title>My Song Lyrics</title> |
|
|
|
|
|
|
|
|
<title>Mis letras de canciones</title> |
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> |
|
|
<!-- DataTables CSS --> |
|
|
<!-- DataTables CSS --> |
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.css"> |
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.css"> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
<div class="container"> |
|
|
<div class="container"> |
|
|
<h1>My Song Lyrics</h1> |
|
|
|
|
|
|
|
|
<h1>Mis letras de canciones</h1> |
|
|
<nav> |
|
|
<nav> |
|
|
<a href="{{ url_for('paginas.index') }}">Home</a> |
|
|
|
|
|
<a href="{{ url_for('paginas.add_song') }}">Add Song</a> |
|
|
|
|
|
<a href="{{ url_for('paginas.add_album') }}">Add Album</a> |
|
|
|
|
|
|
|
|
<a href="{{ url_for('paginas.index') }}">Inicio</a> |
|
|
|
|
|
<a href="{{ url_for('paginas.add_song') }}">Añadir canción</a> |
|
|
|
|
|
<a href="{{ url_for('paginas.add_album') }}">Añadir álbum</a> |
|
|
|
|
|
<!-- |
|
|
<form action="{{ url_for('paginas.search') }}" method="get" style="display:inline;"> |
|
|
<form action="{{ url_for('paginas.search') }}" method="get" style="display:inline;"> |
|
|
<input type="text" name="query" placeholder="Search songs..."> |
|
|
<input type="text" name="query" placeholder="Search songs..."> |
|
|
<button type="submit">Search</button> |
|
|
<button type="submit">Search</button> |
|
|
</form> |
|
|
</form> |
|
|
|
|
|
--> |
|
|
</nav> |
|
|
</nav> |
|
|
<hr> |
|
|
<hr> |
|
|
{% block content %}{% endblock %} |
|
|
{% block content %}{% endblock %} |
|
|
|