ws-begerad-11ty/src/wish-list-girls.html

120 lines
2.7 KiB
HTML

---
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>Wunsch-Person-Farbcodierung</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>