Merge pull request #10 from welpo/fix/relative-paths

🐛 fix: allow for relative paths everywhere
main
Óscar 2 years ago committed by GitHub
commit 381eceaf08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,11 +26,11 @@ headerImage = ""
# The icon is display besides the menu text but is not necessary. It needs to be placed under "menu_icon" in the static "folder" # The icon is display besides the menu text but is not necessary. It needs to be placed under "menu_icon" in the static "folder"
menu = [ menu = [
{ name = "home", url = "/", weight = 1}, { name = "home", url = "$BASE_URL/", weight = 1},
{ name = "tags", url = "/tags", weight = 1 }, { name = "tags", url = "$BASE_URL/tags", weight = 1 },
{ name = "projects", url = "/projects", weight = 1 }, { name = "projects", url = "$BASE_URL/projects", weight = 1 },
] ]
#The icons available can be found in "social_icons" in the "static" folder #The icons available can be found in "social_icons" in the "static" folder
socials = [ socials = [
{ name = "github", url = "https://github.com/welpo/", icon = "github" }, { name = "github", url = "https://github.com/welpo/", icon = "github" },
] ]

@ -1,6 +1,6 @@
@font-face { @font-face {
font-family: 'Inter'; font-family: 'Inter';
src: url('/fonts/Inter.ttf'); src: url('fonts/Inter.ttf');
} }
@import 'parts/_cards.scss'; @import 'parts/_cards.scss';
@import 'parts/_code.scss'; @import 'parts/_code.scss';

@ -4,7 +4,7 @@
{%- if config.extra.socials %} {%- if config.extra.socials %}
{% for social in config.extra.socials %} {% for social in config.extra.socials %}
<a rel="noopener noreferrer" target="_blank" class="nav-links social" href="{{ social.url }}"> <a rel="noopener noreferrer" target="_blank" class="nav-links social" href="{{ social.url }}">
<img alt={{ social.name }} title={{ social.name }} src="/social_icons/{{ social.icon }}.svg"> <img alt={{ social.name }} title={{ social.name }} src="{{config.base_url}}/social_icons/{{ social.icon }}.svg">
</a> </a>
{% endfor %} {% endfor %}
{% endif %} {% endif %}

@ -8,14 +8,14 @@
<div class="nav-navs"> <div class="nav-navs">
<div> <div>
{% for menu in config.extra.menu %} {% for menu in config.extra.menu %}
<a class="nav-links" href={{ menu.url }}>{{ menu.name }}</a> <a class="nav-links" href={{ menu.url | safe | replace(from="$BASE_URL", to=config.base_url) }}>{{ menu.name }}</a>
{% endfor %} {% endfor %}
</div> </div>
<label class="theme-switcher" for="themeswitch"> <label class="theme-switcher" for="themeswitch">
<input type="checkbox" id="themeswitch"> <input type="checkbox" id="themeswitch">
<div class="switch"> <div class="switch">
<img alt="set dark theme" class="moon" src="/menu_icon/moon.png"> <img alt="set dark theme" class="moon" src="{{ config.base_url }}/menu_icon/moon.png">
<img alt="set light theme" class="sun" src="/menu_icon/sun.png"> <img alt="set light theme" class="sun" src="{{config.base_url}}/menu_icon/sun.png">
</div> </div>
</label> </label>
</div> </div>

Loading…
Cancel
Save