parent
9a4fafe704
commit
339b953378
|
@ -13,7 +13,7 @@
|
||||||
grid(
|
grid(
|
||||||
columns: 2,
|
columns: 2,
|
||||||
rows: 2,
|
rows: 2,
|
||||||
gutter: 0.75em,
|
gutter: 0.6em,
|
||||||
align: (
|
align: (
|
||||||
left,
|
left,
|
||||||
right,
|
right,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#let section_base_item_heading_role(role: "") = text(
|
#let section_base_item_heading_role(role: "") = text(
|
||||||
weight: "light",
|
weight: "light",
|
||||||
size: .95em,
|
size: .9em,
|
||||||
role
|
role
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
width: 100%,
|
width: 100%,
|
||||||
text(
|
text(
|
||||||
weight: "light",
|
weight: "light",
|
||||||
size: .95em,
|
size: .9em,
|
||||||
skills.join(", ")
|
skills.join(", ")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "",
|
title: "",
|
||||||
subtitle: "",
|
subtitle: "",
|
||||||
) = text(
|
) = text(
|
||||||
size: .9em,
|
size: .85em,
|
||||||
weight: "extralight",
|
weight: "extralight",
|
||||||
subtitle
|
subtitle
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#let section_base_item_highlight(
|
||||||
|
highlight: "",
|
||||||
|
) = par(
|
||||||
|
justify: true,
|
||||||
|
highlight
|
||||||
|
)
|
|
@ -1,14 +1,17 @@
|
||||||
#let section_base_item_highlights(
|
#let section_base_item_highlights(
|
||||||
highlights: (""),
|
highlights: (""),
|
||||||
) = pad(
|
) = {
|
||||||
left: 2em,
|
import "highlight.typ": section_base_item_highlight
|
||||||
for highlight in highlights {
|
import "marker.typ": section_base_item_marker
|
||||||
block(
|
|
||||||
below: 1em,
|
list(
|
||||||
par(
|
marker: section_base_item_marker,
|
||||||
justify: true,
|
indent: 0.25em,
|
||||||
highlight
|
body-indent: 1.5em,
|
||||||
|
tight: false,
|
||||||
|
spacing: 0.85em,
|
||||||
|
..highlights.map(highlight =>
|
||||||
|
section_base_item_highlight(highlight: highlight)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#let section_base_item_marker = text(
|
||||||
|
weight: "extralight",
|
||||||
|
sym.dash.en
|
||||||
|
)
|
Loading…
Reference in New Issue