fixing it all

This commit is contained in:
Set Sakrecoer 2019-07-13 22:18:15 +02:00
parent 23e7ad13aa
commit f2511ff829
38 changed files with 101 additions and 133 deletions

View file

@ -11,7 +11,7 @@ layout: default
<a href="{{ site.baseurl }}{{ page.previous.url }}" title="Previous Track"><img
src="{{ site.baseurl }}/assets/img/icons/skiprwd.png" title="Previous Track" /></a>
{% endif %}
<a id="download" title="Download This Track!" href="{{ site.audio_url }}{{ page.mp3 }}"><img
<a id="download" title="Download This Track!" href="{{ page.mp3 }}"><img
src="{{ site.baseurl }}/assets/img/icons/dl.png" title="Download Track" /></a>
{% if page.next != nil %}
<a href="{{ site.baseurl }}{{ page.next.url }}" title="Next Track"><img
@ -26,8 +26,8 @@ layout: default
<div class="trackcontainer">
<h1>{{ page.title }}</h1>
<p>{{ page.keywords }}</p>
<h2 id="tracktime">&nbsp;</h2>
<h2 id="tracktime">{{ page.keywords }}</h2>
</div>
@ -41,8 +41,8 @@ layout: default
</div>
<audio preload="true"
ontimeupdate="document.getElementById('tracktime').innerHTML = Math.floor(this.currentTime) + ' / ' + Math.floor(this.duration);">
<source src="{{ site.audio_url }}{{ page.mp3 }}" type="audio/mpeg" />
<source src="{{ site.audio_url }}{{ page.ogg }}" type="audio/ogg" />
<source src="{{ page.mp3 }}" type="audio/mpeg" />
<source src="{{ page.ogg }}" type="audio/ogg" />
<h1>Your browser isn't ready for so much hotness. Use the download-link instead.</h1>.
</audio>
<script type="text/javascript">
@ -78,6 +78,6 @@ layout: default
</script>
<style type="text/css">
body {
background-image:url('{{ site.audio_url }}{{ page.image }}') ;
background-image:url('{{ page.image }}') ;
}
</style>

View file

@ -1,19 +0,0 @@
---
layout: default
---
{% include navmenu.html %}
<div id="blogcontent">
<h1>{{ page.title }}</h1>
{{ content }}
<!-- pagination -->
<div style="text-align:center;">
{% if page.next_in_category != nil %}
<a href="{{ site.baseurl }}{{ page.next_in_category.url }}" title="Previous Post"
style="font-weight:bold;font-size:24px;text-transform:uppercase;">Previous Post < </a> {% endif %}
{% if page.previous_in_category != nil %} <a href="{{ site.baseurl }}{{ page.previous_in_category.url }}"
title="Next Post" style="font-weight:bold;font-size:24px;text-transform:uppercase;"> > Next Post</a>
{% endif %}
</div>
<p style="font-size:10px;">This website is not a place for dialogues, hence you cannot comment. But hey! If you
are upset, happy or lost, I'd love to here from you by email.</p>
</div>