17 lines
346 B
HTML
17 lines
346 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block title %}spotify{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="pad-12 card">
|
||
|
<h1>Spotify Playlist Manager</h1>
|
||
|
|
||
|
<p class="center-text">create "super-playlists" of smaller modular playlists</p>
|
||
|
|
||
|
<a class="button full-width" href="/auth">launch</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|