[add] bewerbung

This commit is contained in:
fenris 2026-01-16 12:41:08 +01:00
parent 8b4726745a
commit 003968e6f5
10 changed files with 110 additions and 8 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="style.css"/>
<title>Vortrag: Freie Systeme</title>
</head>
<body>
<h1>Freie Systeme — Software, Medien und Gesellschaft</h2>
<div class="subtitle">Vortrag über die Loslösung von BigTech und digitale Mündigkeit</div>
<p>Wie wir uns in Abhängigkeit von zwielichtigen Konzernen und faschistischen Tech-Mogulen begeben haben, welche Auswirkungen das auf uns und unserer Gesellschaft hat, warum wir da wieder raus kommen sollten und wie wir das anstellen können — ein Einstieg in das Thema freie Software und unabhängige Platformen.</p>
<div class="image">
<img src="plakat-hintergrund.jpeg"/>
</div>
<div class="infofield">
<span class="infofield-label">Datum/Uhrzeit</span>
<span class="infofield-value">2026-01-31, 18:00 - 19:30</span>
</div>
<div class="infofield">
<span class="infofield-label">Ort</span>
<span class="infofield-value">Glauchau, Otto-Schimmel-Straße 17</span>
</div>
</body>
</html>

1
source/bewerbung/index.html Symbolic link
View file

@ -0,0 +1 @@
ankuendigung.html

View file

Before

Width:  |  Height:  |  Size: 1,022 KiB

After

Width:  |  Height:  |  Size: 1,022 KiB

View file

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

View file

@ -0,0 +1,54 @@
html
{
color: hsl(150, 0%, 100%);
background-color: hsl(150, 0%, 0%);
}
body
{
color: hsl(150, 0%, 87.5%);
background-color: hsl(150, 0%, 12.5%);
font-family: sans-serif;
max-width: 960px;
margin: auto;
padding: 16px;
}
.subtitle
{
margin-left: 16px;
margin-bottom: 32px;
}
.image
{
width: 80%;
margin: 16px auto;
}
.image > img
{
object-fit: contain;
width: 100%;
}
.infofield
{
margin-bottom: 16px;
}
.infofield-label
{
font-weight: bold;
}
.infofield-label::before
{
content: "[";
}
.infofield-label::after
{
content: "] ";
}

View file

@ -7,14 +7,12 @@
ul {list-style-type: none;}
li {margin: 16px;}
</style>
<title>Freie Systeme</title>
</head>
<body>
<ul>
<li><a href="praesentation.html">Präsentation</a></li>
<li><a href="fortlaufend.html">Fortlaufend</a></li>
<!--
<li><a href="druck.pdf">Druck-Version</a></li>
-->
</ul>
</body>
</html>

14
source/stuff.md Normal file
View file

@ -0,0 +1,14 @@
----
```{=html}
<div style="text-align:center;">
<iframe
width="1024"
height="576"
src="https://media.ccc.de/v/39c3-die-kanguru-rebellion-digital-independence-day/oembed#t=2599"
frameborder="0"
allowfullscreen="allowfullscreen"
></iframe>
</div>
```

View file

@ -47,7 +47,7 @@ def main():
## exec
execute_shell_command(
string_coin(
"rsync --update --recursive --verbose {{source_directory}}/ {{target_system}}:{{target_directory}}",
"rsync --update --recursive --links --verbose {{source_directory}}/ {{target_system}}:{{target_directory}}",
{
"source_directory": args.source_directory,
"target_system": args.target_system,

View file

@ -2,27 +2,35 @@
cmd_log := echo "--"
cmd_quarto := quarto
cmd_mkdir := mkdir -p
cmd_cp := cp
## rules
all: \
${dir_build}/praesentation.html \
${dir_build}/fortlaufend.html \
bewerbung \
${dir_build}/index.html
${dir_build}/praesentation.html: ${dir_source}/main.qmd
@ ${cmd_log} "Präsentation …"
@ ${cmd_mkdir} $(dir $@)
@ ${cmd_quarto} render $^ --quiet --to revealjs --output-dir ${dir_build} && mv ${dir_build}/main.html $@
${dir_build}/fortlaufend.html: ${dir_source}/main.qmd
@ ${cmd_log} "Fortlaufend …"
@ ${cmd_mkdir} $(dir $@)
@ ${cmd_quarto} render $^ --quiet --to html --output-dir ${dir_build} && mv ${dir_build}/main.html $@
${dir_build}/druck.pdf: ${dir_source}/main.qmd
@ ${cmd_log} "Druck …"
@ ${cmd_quarto} render $^ --quiet --to pdf --output-dir ${dir_build} # && mv ${dir_build}/main.html $@
.PHONY: bewerbung
bewerbung:
@ ${cmd_log} "Bewerbung …"
@ ${cmd_mkdir} ${dir_build}/bewerbung/
@ ${cmd_cp} -r -u -v ${dir_source}/bewerbung/* ${dir_build}/bewerbung/
${dir_build}/index.html: ${dir_source}/index.html
@ ${cmd_log} "index …"
@ cp -u $^ $@
@ ${cmd_mkdir} $(dir $@)
@ ${cmd_cp} -u $^ $@