/ typst / sections / education.typ
education.typ
 1  // Education section
 2  
 3  #import "../styles.typ": *
 4  
 5  #let education(entries) = {
 6    section-heading("Education")
 7  
 8    for (i, e) in entries.enumerate() {
 9      entry-header(e.institution, e.location, first: i == 0)
10      entry-position(e.position, e.date)
11      entry-description(e.description)
12    }
13  }