Reorder
By default, YAMLResume arranges sections in a standard order. However, you can
easily change this by providing a custom order list. This allows you to
highlight your most important information first.
How to Use
For example, if you want to place your "Skills" and "Projects" sections before your "Work" experience, you can define the order like this:
---
content:
# ...
layout:
sections:
order:
- skills
- projects
- workAny sections included in the order list will appear first, in the sequence
you've specified. Sections not included in the list will be appended after,
following their default order.
Examples
Prioritize Work Experience
layout:
sections:
order:
- work
- educationResult: work experience appears first, followed by education, then all other sections in default order.
Highlight Skills and Languages
layout:
sections:
order:
- skills
- languages
- workResult: skills and languages appear prominently at the top, followed by work experience, then remaining sections.
Academic Focus
layout:
sections:
order:
- education
- publications
- awards
- certificatesResult: academic sections appear first, followed by other sections in default order.
Default Section Order
When no custom order is specified, sections are rendered in this default order:
basics(by default rendered to the top of the resume as a summary section)educationworklanguagesskillsawardscertificatespublicationsreferencesprojectsinterestsvolunteer
Implementation Details
- Priority: Sections specified in
orderappear first in the specified sequence - Fallback: Remaining sections follow in the default order
- Deduplication: Duplicate sections in the order array are deduplicated (first occurrence kept)
- Empty Sections: Sections with no content are automatically filtered out
- Flexibility: Users can specify any subset of orderable sections
Orderable Sections
The following sections can be reordered:
basicseducationworkvolunteerawardscertificatespublicationsskillslanguagesinterestsreferencesprojects
Last updated on