24 lines
No EOL
563 B
Typst
24 lines
No EOL
563 B
Typst
// Imports
|
|
#import "@preview/brilliant-cv:2.0.3": cvSection, cvEntry, hBar
|
|
#let metadata = toml("../metadata.toml")
|
|
#let cvSection = cvSection.with(metadata: metadata)
|
|
#let cvEntry = cvEntry.with(metadata: metadata)
|
|
|
|
|
|
#cvSection("Bildung")
|
|
|
|
#cvEntry(
|
|
title: [Realschulabschluss], //TODO: Titel herausfinden
|
|
date: [2018-2022],
|
|
society: [Carl-Benz-Realschule],
|
|
location: [Düsseldorf],
|
|
description: [],
|
|
)
|
|
|
|
#cvEntry(
|
|
title: [Fachhochschulreife],
|
|
date: [2022-2025],
|
|
society: [Dieter-Forte-Gesamtschule],
|
|
location: [Düsseldorf],
|
|
description: [],
|
|
) |