moving to simpler baseurl

This commit is contained in:
Set Sakrecoer 2019-04-28 19:33:43 +02:00
parent ad551f54fc
commit 2b5bd4fa0e
12 changed files with 49 additions and 49 deletions

View file

@ -2,7 +2,7 @@
layout: default
---
<div class="image-fullscreen" style="background-image:url('{{ base }}{{ page.bgimg }}')"></div>
<div class="image-fullscreen" style="background-image:url('{{ site.baseurl }}{{ page.bgimg }}')"></div>
<div id="blogcontent">
<table>
@ -16,9 +16,9 @@ layout: default
<div style="text-align:center;">
<hr />
{% if page.next_in_category != nil %}
&nbsp;&nbsp;<a href="{{ base }}{{ page.next_in_category.url }}" title="Previous Post" style="font-weight:bold;font-size:24px;text-transform:uppercase;">Previous Post < </a> {% endif %}
&nbsp;&nbsp;<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="{{ base }}{{ page.previous_in_category.url }}" title="Next Post" style="font-weight:bold;font-size:24px;text-transform:uppercase;"> > Next Post</a>
<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>