fix urls by not using get_path
parent
ecb0f1d9c0
commit
65c52c8b5f
|
@ -2,7 +2,7 @@
|
|||
{% set section = get_section(path="_index.md") %}
|
||||
<a href="{{ section.permalink | safe }}">
|
||||
<div class="logo">
|
||||
<img src="{{ get_url(path=config.extra.juice_logo_path) }}" alt="logo">
|
||||
<img src="{{ config.extra.juice_logo_path }}" alt="logo">
|
||||
{{ config.extra.juice_logo_name }}
|
||||
</div>
|
||||
</a>
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
{% include "_variables.html" %}
|
||||
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/normalize.css">
|
||||
<link rel="stylesheet" href="{{ get_url(path="juice.css") }}">
|
||||
<link rel="stylesheet" type="text/css" href="/normalize.css">
|
||||
<link rel="stylesheet" type="text/css" href="/juice.css">
|
||||
{% block head %}
|
||||
{% endblock head %}
|
||||
</head>
|
||||
|
@ -43,7 +43,7 @@
|
|||
Explore More ⇩
|
||||
</div>
|
||||
|
||||
<img class="hero-image" style="max-width: 512px;" src="{{ get_url(path="2020-11-11_07-52-28.jpg") }}">
|
||||
<img class="hero-image" style="max-width: 512px;" src="/2020-11-11_07-52-28.jpg">
|
||||
|
||||
<div class="explore-more text"
|
||||
onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
|
||||
|
|
Loading…
Reference in New Issue