feat: added page wish-list-girls

This commit is contained in:
Begerad, Stefan 2021-11-07 08:14:42 -05:00
parent a709ee2031
commit 60472a6f36
2 changed files with 189 additions and 0 deletions

View File

@ -0,0 +1,70 @@
{
"frieda": [
{
"tag": "Handtuch",
"name": "Kinder Kapuzenhandtuch Tiere mit Applikation JAKO-O, 140 x 140 cm",
"url": "https://www.jako-o.com/de_DE/kinder-kapuzenhandtuch-tiere-mit-applikation-jako-o-140-x-140-cm--371414",
"comment": "WICHTIG! Personalisierung: Frieda"
},
{
"tag": "Kochschürze",
"name": "Kinder Kochschürze JAKO-O, grün",
"url": "https://www.jako-o.com/de_DE/kinder-kochschuerze-jako-o-gruen--053709",
"comment": ""
},
{
"tag": "Holzeisenbahn",
"name": "BRIO Eisenbahn StarterSet A ",
"url": "https://www.brio-shop.de/brio-bahn-sets/BRIO-Eisenbahn-StarterSet-A.html",
"comment": "Artikelnummer: BRIO33773"
},
{
"tag": "Wasserflasche",
"name": "Classic 18 oz",
"url": "https://www.kleankanteen.com/collections/classic/products/classic-water-bottle-18oz",
"comment": "Farbe: Green Apple"
},
{
"tag": "Deckel für Wasserflasche",
"name": "Loop Cap with Bale",
"url": "https://www.kleankanteen.com/collections/kid-kanteen/products/loop-cap-with-bale",
"comment": "Farbe: Black"
},
{
"tag": "Besteck",
"name": "Kinderbesteck JAKO-O, 3-teilig",
"url": "https://www.jako-o.com/de_DE/kinderbesteck-jako-o-3-teilig--039847",
"comment": "Frieda mag die Farben Grün, Orange, Rot, Gelb aktuell am liebsten"
}
],
"linnea": [
{
"tag": "Zitronenseife",
"name": "Duschseife Zitronenfit mit Karitébutter, 95g",
"url": "https://www.asavo.de/naturseifen-duschseifen/4-zitronenseife-zitronenfit-4251356100081.html",
"comment": ""
}
],
"friedalinnea": [
{
"tag": "",
"name": "Gesellschaftsspiele",
"url": "https://www.avocadostore.de/wohnen/wohnen-und-leben/gesellschaftsspiele",
"comment": ""
},
{
"tag": "Kinderteppich",
"name": "",
"url": "",
"comment": ""
}
],
"antje": [
{
"tag": "",
"name": "Kaffee",
"url": "https://shop.contigo.de/essen-trinken/bio-kaffee/",
"comment": ""
}
]
}

119
src/wish-list-girls.html Normal file
View File

@ -0,0 +1,119 @@
---
layout: 'layouts/home.html'
title: begerad.de
metaDesc: 'This is the website of Stefan Begerad.'
metaKey: 'free, open source, libre, FOSS, FLOSS'
---
<!--
SPDX-FileCopyrightText: 2021 Software Ingenieur Begerad <swingbe.de>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<div class="container-fluid">
<div class="p-5 my-4 bg-light rounded-3">
<h1>Wunschliste!</h1>
<p class="lead">
Liebe Mitmenschen,<br />
Wer kennt sie nicht?
Meine drei Mädels!
Ihr Motto?
Girls Just Want to Have Fun!
</p>
<p>
Die folgende Liste soll dich befähigen,
meinen Mädels einen Wunsch zu erfüllen und sie bei ihrem Motto zu unterstützen.
Die Farbcodierung ordnet den jeweiligen Wunsch einer Person zu.
</p>
<table class="table table-borderless table-sm table-light">
<thead>
<tr class="d-flex">
<th>Priorität</th>
</tr>
</thead>
<tbody>
<tr class="d-flex table-success">
<td>Frieda</td>
</tr>
<tr class="d-flex table-danger">
<td>Linnea</td>
</tr>
<tr class="d-flex table-info">
<td>Frieda & Linnea</td>
</tr>
<tr class="d-flex table-warning">
<td>Antje</td>
</tr>
</tbody>
</table>
</div>
<div class="row g-0">
<div class="col">
<h2>Wunschliste</h2>
<p>
</p>
</div>
<div class="table-responsive">
<table class="table table-borderless table-sm table-light">
<thead>
<tr>
<th>Wunsch</th>
</tr>
</thead>
<tbody>
{% for item in wishlistgirls.frieda %}
<tr class="table-success">
<td>
{{ item.tag }}
<a href="{{ item.url }}"
target="_blank">
{{ item.name }}
</a>
{{ item.comment }}
</td>
</tr>
{% endfor %}
{% for item in wishlistgirls.linnea %}
<tr class="table-danger">
<td>
{{ item.tag }}
<a href="{{ item.url }}"
target="_blank">
{{ item.name }}
</a>
{{ item.comment }}
</td>
</tr>
{% endfor %}
{% for item in wishlistgirls.friedalinnea %}
<tr class="table-info">
<td>
{{ item.tag }}
<a href="{{ item.url }}"
target="_blank">
{{ item.name }}
</a>
{{ item.comment }}
</td>
</tr>
{% endfor %}
{% for item in wishlistgirls.antje %}
<tr class="table-warning">
<td>
{{ item.tag }}
<a href="{{ item.url }}"
target="_blank">
{{ item.name }}
</a>
{{ item.comment }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>