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' %}
{% block title %}dev{% endblock %}
{% block title %}art{% endblock %}
{% block content %}
{% for row in tags|batch(4) %}

View File

@ -18,7 +18,7 @@
</head>
<body>
<div>
<h1 class="title">andy</h1>
<h1 class="title">sarsoo</h1>
</div>
<br><br>
<ul class="navbar">
@ -26,6 +26,7 @@
<li><a href="/dev">dev</a></li>
<li><a href="/art">art</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.last.fm/user/sarsoo">last.fm</a></li>
<li class="right"><a href="https://github.com/sarsoo">github</a></li>

View File

@ -20,6 +20,7 @@ body {
a {
color: $text-colour;
font-size: 20px;
outline: 0;
/*text-shadow: 1px 1px 1px #aaa;*/
}
@ -111,7 +112,7 @@ h1.title {
background-color: white;
padding: 0px;
/*font-size: 16em;*/
width: 2.5em;
width: 3.5em;
height: 1.3em;
text-align: center;
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 {float: none;}
}