Compare commits

..

1 Commits

Author SHA1 Message Date
Valentin Ochs 7debf5dc32 Fix relative urls 2023-02-20 05:34:20 +01:00
2 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@
<body>
<div class="wrapper">
<header>
<img src="{{ /iR.svg | relative_url }}" width="100%"></img>
<img src="{{ '/iR.svg' | relative_url }}" width="100%"></img>
<!-- <h1>{{ site.title | default: site.github.repository_name }}</h1> -->
<p>{{ site.description | default: site.github.project_tagline }}</p>

View File

@ -6,9 +6,9 @@
<title>{% if page.title %}{{ page.title}} | {% endif %}{{ site.title | default: site.github.repository_name }}</title>
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<link rel="shortcut icon" type="image/svg+xml" href="{{ /favicon.svg | relative_url }}" sizes="any">
<link rel="icon" type="image/png" href="{{ /favicon.png | relative_url }}" sizes="32x32">
<link rel="apple-touch-icon" href="{{ /apple-touch-icon.png | relative_url }}" sizes="180x180">
<link rel="shortcut icon" type="image/svg+xml" href="{{ '/favicon.svg' | relative_url }}" sizes="any">
<link rel="icon" type="image/png" href="{{ '/favicon.png' | relative_url }}" sizes="32x32">
<link rel="apple-touch-icon" href="{{ '/apple-touch-icon.png' | relative_url }}" sizes="180x180">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
@ -17,7 +17,7 @@
<body>
<div class="wrapper">
<header>
<img src="{{ /iR.svg | relative_url }}" width="100%"></img>
<img src="{{ '/iR.svg' | relative_url }}" width="100%"></img>
<!-- <h1>{{ site.title | default: site.github.repository_name }}</h1> -->
<p>{{ site.description | default: site.github.project_tagline }}</p>
@ -48,6 +48,6 @@
<p><small>{% if site.github %}Hosted on GitHub Pages &mdash; {% endif %}Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="{{ /assets/js/scale.fix.js | relative_url }}"></script>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
</body>
</html>