Use absolute paths for site-wide resources

Fixes https://github.com/tomjoht/documentation-theme-jekyll/issues/156
This commit is contained in:
Spencer Bliven
2019-06-14 10:26:36 +02:00
parent e5d490759b
commit f644a9b995
5 changed files with 15 additions and 15 deletions

View File

@ -3,7 +3,7 @@
<div class="col-lg-12 footer">
&copy;{{ site.time | date: "%Y" }} {{site.company_name}}. All rights reserved. <br />
{% if page.last_updated %}<span>Page last updated:</span> {{page.last_updated}}<br/>{% endif %} Site last generated: {{ site.time | date: "%b %-d, %Y" }} <br />
<p><img src="{{ "images/company_logo.png" }}" alt="Company logo"/></p>
<p><img src="{{ site.baseurl }}/images/company_logo.png" alt="Company logo"/></p>
</div>
</div>
</footer>