-
Notifications
You must be signed in to change notification settings - Fork 0
/
linkedin_resume.tmpl
51 lines (44 loc) · 990 Bytes
/
linkedin_resume.tmpl
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
50
51
Name: {{.full_name}}
Occupation: {{.occupation}}
Address:
{{.city}}
{{.state}}
{{.country_full_name}}
{{.summary}}
Experience:
{{range .experiences}}
Dates: {{ .starts_at.day }} / {{ .starts_at.month }} / {{ .starts_at.year }} - {{ .ends_at.day }} / {{ .ends_at.month }} / {{ .ends_at.year }}
Title: {{.title}}
Company: {{.company}}
{{ if .location }}
Location: {{.location}}
{{end}}
{{ if .description }}
Description: {{.description}}
{{end}}
{{end}}
{{ if gt (len .skills) 0 }}
Skills:
{{range .skills}}
{{.name}}
{{.title}}
{{.company}}
{{.location}}
{{.start_date}} - {{.end_date}}
{{.description}}
{{end}}
{{end}}
{{ if gt (len .education) 0 }}
Education:
{{range .education}}
{{ .starts_at.day }} / {{ .starts_at.month }} / {{ .starts_at.year }} - {{ .ends_at.day }} / {{ .ends_at.month }} / {{ .ends_at.year }}
Degree: {{.degree}}
School: {{.school}}
{{ if .location }}
Location: {{.location}}
{{end}}
{{if .description }}
Description: {{.description}}
{{end}}
{{end}}
{{end}}