changed title, added dispatch, fixed title

This commit is contained in:
aj 2019-07-29 12:08:20 +01:00
parent 14fb7788d7
commit e2e4466117
4 changed files with 14 additions and 4 deletions

8
dispatch.yaml Normal file
View File

@ -0,0 +1,8 @@
dispatch:
# Default service serves the typical web resources and all static resources.
- url: "sarsoo.xyz/*"
service: default
- url: "spotify.sarsoo.xyz/*"
service: spotify

View File

@ -1,6 +1,6 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}dev{% endblock %} {% block title %}art{% endblock %}
{% block content %} {% block content %}
{% for row in tags|batch(4) %} {% for row in tags|batch(4) %}

View File

@ -18,7 +18,7 @@
</head> </head>
<body> <body>
<div> <div>
<h1 class="title">andy</h1> <h1 class="title">sarsoo</h1>
</div> </div>
<br><br> <br><br>
<ul class="navbar"> <ul class="navbar">
@ -26,6 +26,7 @@
<li><a href="/dev">dev</a></li> <li><a href="/dev">dev</a></li>
<li><a href="/art">art</a></li> <li><a href="/art">art</a></li>
<li><a href="/music">music</a></li> <li><a href="/music">music</a></li>
<li><a href="https://spotify.sarsoo.xyz">playlist manager</a></li>
<li class="right"><a href="https://www.instagram.com/pack_it_in_/">art ig</a></li> <li class="right"><a href="https://www.instagram.com/pack_it_in_/">art ig</a></li>
<li class="right"><a href="https://www.last.fm/user/sarsoo">last.fm</a></li> <li class="right"><a href="https://www.last.fm/user/sarsoo">last.fm</a></li>
<li class="right"><a href="https://github.com/sarsoo">github</a></li> <li class="right"><a href="https://github.com/sarsoo">github</a></li>

View File

@ -20,6 +20,7 @@ body {
a { a {
color: $text-colour; color: $text-colour;
font-size: 20px; font-size: 20px;
outline: 0;
/*text-shadow: 1px 1px 1px #aaa;*/ /*text-shadow: 1px 1px 1px #aaa;*/
} }
@ -111,7 +112,7 @@ h1.title {
background-color: white; background-color: white;
padding: 0px; padding: 0px;
/*font-size: 16em;*/ /*font-size: 16em;*/
width: 2.5em; width: 3.5em;
height: 1.3em; height: 1.3em;
text-align: center; text-align: center;
margin: auto; margin: auto;
@ -206,7 +207,7 @@ footer {
} }
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 760px) {
ul.navbar li.right, ul.navbar li.right,
ul.navbar li {float: none;} ul.navbar li {float: none;}
} }