Compare commits

..

4 Commits

Author SHA1 Message Date
7488b66720 Socials
All checks were successful
Build / build (push) Successful in 43s
2024-12-14 15:53:18 +01:00
8f19a06340 Update Zola image version
All checks were successful
Build / build (push) Successful in 55s
2024-07-18 15:27:05 +02:00
eedc7d7c4b Personnel update
All checks were successful
Build / build (push) Successful in 1m10s
2024-07-18 15:23:03 +02:00
5c7a6153fc Fixed forest sizing 2024-07-18 15:19:36 +02:00
22 changed files with 56 additions and 12 deletions

View File

@ -6,7 +6,7 @@ on:
- master
env:
ZOLA_VERSION: "0.18.0"
ZOLA_VERSION: "0.19.1"
HOST: ${{ secrets.SSH_HOSTNAME }}
HOST_DIR: ${{ secrets.SSH_TARGET_DIR }}
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

View File

@ -0,0 +1,8 @@
+++
weight = 6
[extra]
name = "Daniela Šenerová"
role = "Pomocníček"
beh = [3]
+++

Binary file not shown.

Before

Width:  |  Height:  |  Size: 540 KiB

After

Width:  |  Height:  |  Size: 368 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 520 KiB

View File

@ -2,7 +2,7 @@
weight = 99
[extra]
name = "Honza Kubíček"
name = "Jan Kubíček"
role = "Hlavas na dovolené"
beh = [3]
+++

View File

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 337 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 KiB

View File

@ -0,0 +1,8 @@
+++
weight = 4
[extra]
name = "Klárka Hazuková"
role = "Instruktor"
beh = [1, 3]
+++

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@ -0,0 +1,8 @@
+++
weight = 4
[extra]
name = "Majda Šímová"
role = "Instruktor"
beh = [3]
+++

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

View File

@ -1,5 +1,6 @@
+++
weight = 3
draft = true
[extra]
name = "Míša Michalová"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 431 KiB

View File

@ -3,6 +3,6 @@ weight = 6
[extra]
name = "Venca Třeštík"
role = "Kuchař"
role = "Le Grand Chef"
beh = [1]
+++

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

View File

@ -2,7 +2,7 @@
weight = 4
[extra]
name = "Dalibor Brabec"
name = "Verča Andělová"
role = "Instruktor"
beh = [1]
+++

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 KiB

View File

@ -227,9 +227,9 @@ header {
width: 100%;
height: 100%;
background-image: url('img/forest.svg');
background-size: contain;
background-size: auto 10em;
background-position: center bottom -4px; // -4px fixes a visible line on some resolutions
background-repeat: no-repeat;
background-repeat: repeat-x;
filter: invert(0%) contrast(94.5%);
@media (prefers-color-scheme: dark) {
@ -254,8 +254,20 @@ section {
}
}
footer {
text-align: center;
footer .wrap {
padding: 5em 1em 1em 1em;
margin-top: auto;
display: flex;
justify-content: space-between;
.socials {
display: flex;
gap: 1rem;
a {
color: inherit;
text-decoration: none;
font-size: 1.5rem;
}
}
}

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -29,7 +29,14 @@
{% endblock %}
<footer>
<div class="wrap">
<p>&copy; {{ now() | date(format="%Y") }} {{ config.title }}</p>
<div class="socials">
<a href="https://www.instagram.com/kocandaci/" target="_blank"><i class="ri-instagram-line"></i></a>
<a href="https://www.facebook.com/kocandaci" target="_blank"><i class="ri-facebook-box-line"></i></a>
<a href="https://www.youtube.com/channel/UCd5GIRz17QOQpCpg5PGi0PQ/featured" target="_blank"><i class="ri-youtube-line"></i></a>
</div>
</div>
</footer>
{% block script %}