{{ define "web/tech" }} {{.BasicInfo.Name}} - {{.BasicInfo.Title}} {{ template "theme-switch" . }}
{{ template "component-avatar" .BasicInfo }}
1 package resume
2
3 type {{.BasicInfo.Name}} struct {
4   Name string = "{{.BasicInfo.Name}}"
5   Title string = "{{.BasicInfo.Title}}"
6   Email string = "{{.BasicInfo.Email}}"
7   Location string = "{{.BasicInfo.Location}}"
8 }
9
10 // {{.BasicInfo.Summary}}
{{ template "section-core-advantages" . }} {{ template "section-experience" . }} {{ template "section-education" . }} {{ template "section-skills-progress" . }} {{ template "section-projects" . }}
{{ template "theme-script" . }} {{ end }}