-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.handlebars
49 lines (44 loc) · 1.14 KB
/
template.handlebars
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# {{content.name}}
## {{content.title}}
{{#each contacts~}}{{!-- ---------- contacts ---------- --}}
{{~type}}: {{#if url}}
{{~#if text~}}
[{{text}}]({{url}})
{{else~}}
[{{url}}]({{url}})
{{/if}}
{{else~}}
{{text}}
{{/if}}
{{/each}}
{{i18n.location}}: {{content.location}}
{{i18n.birthYear}}: {{content.birthYear}}
{{content.info}}
# {{i18n.skills}}{{!-- ---------- skills ---------- --}}
{{#each content.skills}}
## {{area}}
{{#each details~}}
- {{this}}{{#unless @last}}
{{/unless}}{{/each}}{{#unless @last}}
{{/unless}}{{/each}}
{{#if content.experience}}{{!-- ---------- experience ---------- --}}
# {{i18n.experience}}
{{#each content.experience}}
_{{period}}{{#if type}} ({{type}}){{/if}}_
**{{company}}**
[{{url}}]({{url}})
{{description}}
{{#each details~}}
- {{this}}
{{/each}}
{{#unless @last}}
{{/unless}}
{{/each}}
{{/if}}
{{#if content.education}}{{!-- ---------- education ---------- --}}
# {{i18n.education}}
{{#each content.education}}
_{{period}}_
**{{name}}**
{{speciality}}, {{level}}, {{qualification}}.{{#unless @last}}
{{/unless}}{{/each}}{{/if}}