Refactor character profile component for dynamic ID handling and improve data fetching logic
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m5s
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m5s
This commit is contained in:
@@ -3,15 +3,14 @@ layout: page
|
||||
title: Charaktere
|
||||
permalink: /characters/
|
||||
icon: account_circle
|
||||
weigth: 3
|
||||
weight: 3
|
||||
---
|
||||
|
||||
<div class="row" style="column-gap: 5px;">
|
||||
<div class="col s12 m6">
|
||||
{% include character-profile.html page="/characters/chase" image="/assets/img/Netrunner.png" datasource="/assets/game-data/characters/chase.json" bg_color="bg-red" fg_color="fg-dark" %}
|
||||
<div class="col s12 l6">
|
||||
{% include character-profile.html id="chase" page="/characters/chase" image="/assets/img/Netrunner.png" bg_color="bg-red" fg_color="fg-dark" %}
|
||||
</div>
|
||||
<div class="col s12 m6">
|
||||
{% include character-profile.html page="/characters/crash" image="/assets/img/Tech.png" datasource="/assets/game-data/characters/carver.json" bg_color="bg-red" fg_color="fg-purple" %}
|
||||
<div class="col s12 l6">
|
||||
{% include character-profile.html id="carver" page="/characters/crash" image="/assets/img/Tech.png" bg_color="bg-red" fg_color="fg-purple" %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ layout: page
|
||||
title: Spielerguide
|
||||
permalink: /players-guide/
|
||||
icon: description
|
||||
weigth: 2
|
||||
weight: 2
|
||||
---
|
||||
|
||||
TBD
|
||||
|
||||
Reference in New Issue
Block a user