Compare commits

...

2 Commits

Author SHA1 Message Date
ba3804df22
Remove unused CSS imports from main stylesheet for cleaner code
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m4s
2025-03-20 16:16:39 +01:00
86d7a9215a
Fix character profile data fetching URL to correctly append the character ID and file extension 2025-03-20 16:16:31 +01:00
2 changed files with 1 additions and 4 deletions

View File

@ -15,7 +15,7 @@
{% endif %}
</div>
<script>
fetch("{{ '/assets/game-data/characters/' + include.id | relative_url }}")
fetch("{{ '/assets/game-data/characters/' | append: include.id | append: '.json' | relative_url }}")
.then(response => response.json())
.then(character => {
document.getElementById('name-{{ include.id }}').innerText = character.name;

View File

@ -1,5 +1,2 @@
---
---
@import "materialize.scss",
"cyberpunk-theme";