1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00
supysonic/templates/home.html

53 lines
2.3 KiB
HTML
Raw Normal View History

2014-03-02 17:31:32 +00:00
{#-
This file is part of Supysonic.
Supysonic is a Python implementation of the Subsonic server API.
Copyright (C) 2013, 2014 Alban 'spl0k' Féron
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-#}
2012-10-13 09:29:48 +00:00
{% extends "layout.html" %}
{% block body %}
2012-11-17 20:36:28 +00:00
{% if admin %}
2012-11-17 17:30:30 +00:00
<p><a href="{{ url_for('user_index') }}">Users</a> | <a href="{{ url_for('folder_index') }}">Folders</a></p>
2012-11-17 20:36:28 +00:00
{% endif %}
2012-10-13 12:53:09 +00:00
2012-11-17 20:36:28 +00:00
<h2>Hi!</h2>
<p>There's nothing much to see here.</p>
2013-06-28 10:12:33 +00:00
<p>If you want to listen to some music, you'll have to use one of the available clients. Here's a small list of clients that have been tested:</p>
<ul>
<li>Web-based / Chrome extentions
<ul>
<li><a href="http://www.jamstash.com/">Jamstash</a> (also available as a <a href="https://chrome.google.com/webstore/detail/jamstash/jccdpflnecheidefpofmlblgebobbloc">Chrome extension</a>
2013-06-28 10:12:33 +00:00
as a Chrome extension. There's a bug though, you'll have to click the "Save" button in the settings each time you open it)</li>
<li><a href="http://robinbakker.nl/perisonic/">Perisonic</a> (also as a <a href="https://chrome.google.com/webstore/detail/perisonic/bkdipjpecphmbijlckkkmabnabhbpjbn">Chrome extension</a>; if you just want to go full random)</li>
2013-06-28 10:12:33 +00:00
</ul>
</li>
<li>Android apps
<ul>
<li>The official <a href="https://play.google.com/store/apps/details?id=net.sourceforge.subsonic.androidapp">Subsonic</a> app</li>
<li><a href="https://play.google.com/store/apps/details?id=com.thejoshwa.ultrasonic.androidapp">UltraSonic</a></li>
</ul>
</li>
</ul>
<p>For a more complete list, check the <a href="http://www.subsonic.org/pages/apps.jsp">Subsonic website</a>.</p>
2012-10-13 12:53:09 +00:00
2012-11-17 20:36:28 +00:00
<h2>Stats</h2>
<ul>
<li>{{ stats.artists }} artists</li>
<li>{{ stats.albums }} albums</li>
<li>{{ stats.tracks }} tracks</li>
</ul>
2012-10-13 09:29:48 +00:00
{% endblock %}