-
Notifications
You must be signed in to change notification settings - Fork 28
/
cv.html
30 lines (24 loc) · 804 Bytes
/
cv.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: cv_layout
---
{% if site.data.cv_enable_section.profiles == true %}
{% include cv_career-profile.html %}
{% endif %}
{% if site.data.cv_enable_section.experiences == true %}
{% include cv_experience.html %}
{% endif %}
{% if site.data.cv_enable_section.individual_projects == true %}
{% include cv_personal-projects.html %}
{% endif %}
{% if site.data.cv_enable_section.group_projects == true %}
{% include cv_group-projects.html %}
{% endif %}
{% if site.data.cv_enable_section.skills == true %}
{% include cv_skills.html %}
{% endif %}
{% if site.data.cv_enable_section.awards == true %}
{% include cv_awards.html %}
{% endif %}
{% if site.data.cv_enable_section.volunteers == true %}
{% include cv_volunteer.html %}
{% endif %}