50 lines
975 B
Plaintext
50 lines
975 B
Plaintext
#import "data/config.typ": *
|
|
#import "data/theme.typ": *
|
|
#import "data/layout.typ": *
|
|
|
|
#set page(
|
|
paper: "a4",
|
|
margin: page-margin,
|
|
fill: color-page,
|
|
)
|
|
|
|
#set text(
|
|
font: body-font,
|
|
size: size-base,
|
|
weight: "regular",
|
|
fill: color-body,
|
|
lang: "zh",
|
|
)
|
|
|
|
#set par(leading: leading-body, spacing: par-spacing-tight, justify: true)
|
|
|
|
#page-corners()
|
|
#hero-section()
|
|
#header-divider()
|
|
|
|
#grid(
|
|
columns: (sidebar-column, 0.55pt, main-column),
|
|
column-gutter: (space-lg, space-xl),
|
|
align: (top, top, top),
|
|
[
|
|
#section-title("联系", sidebar: true)
|
|
#contact-block()
|
|
#sidebar-section-divider()
|
|
|
|
#section-title("教育", sidebar: true)
|
|
#education-block()
|
|
#sidebar-section-divider()
|
|
|
|
#section-title("技能", sidebar: true)
|
|
#skills-section-block()
|
|
],
|
|
line(length: 100%, stroke: color-divider + 0.85pt),
|
|
[
|
|
#section-title("工作经历")
|
|
#experiences-block()
|
|
|
|
#section-title("项目经历")
|
|
#projects-block()
|
|
],
|
|
)
|