diff --git a/sarsoo/art/templates/art/index.html b/sarsoo/art/templates/art/index.html
index 4aff352..d09c1a9 100644
--- a/sarsoo/art/templates/art/index.html
+++ b/sarsoo/art/templates/art/index.html
@@ -9,8 +9,7 @@
{{ tag.name }}
-
-
{{ tag.description }}{{ tag.image }}
+ {% if tag.description %}
{{ tag.description }}{{ tag.image }}
{% endif %}
view
{% endfor %}
diff --git a/sarsoo/sarsoo.py b/sarsoo/sarsoo.py
index a59fcfd..5c263f7 100644
--- a/sarsoo/sarsoo.py
+++ b/sarsoo/sarsoo.py
@@ -11,7 +11,7 @@ db = firestore.Client()
app = Flask(__name__, static_folder=os.path.join(os.path.dirname(__file__), '..', 'static'), template_folder = "templates")
app.register_blueprint(art_print, url_prefix='/art')
-app.register_blueprint(music_print, url_prefix='/musictest')
+app.register_blueprint(music_print, url_prefix='/music')
staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
@@ -32,10 +32,6 @@ def main():
return render_template('index.html', staticroot = staticbucketurl, splash = splashtext, art=art)
-@app.route('/music')
-def music():
- return render_template('music.html')
-
@app.route('/dev')
def dev():
return render_template('dev.html')
diff --git a/sarsoo/templates/base.html b/sarsoo/templates/base.html
index d2cbd59..91c3760 100644
--- a/sarsoo/templates/base.html
+++ b/sarsoo/templates/base.html
@@ -8,7 +8,7 @@
diff --git a/static/style.css b/static/style.css
index eb19877..8800dd6 100644
--- a/static/style.css
+++ b/static/style.css
@@ -78,12 +78,15 @@ div.profile img {
box-shadow: 2px 6px 2px #888888;
}
-h1.title {
+a.title {
color: white;
font-size: 14vw;
font-family: 'Megrim', arial;
text-shadow: 2px 2px 2px #aaa;
+ font-weight: bold;
+ display: block;
+ text-decoration: none;
background-color: #070c1a;
padding: 0px;
width: 45vw;