diff --git a/model/json.go b/model/json.go index 7eb6e87..0f21cd5 100644 --- a/model/json.go +++ b/model/json.go @@ -93,18 +93,23 @@ type SocialProfile struct { URL string `json:"url"` } +type JobHighlight struct { + Title string `json:"title"` + Items []string `json:"items"` +} + // Work is the work details of the resume owner. type Work struct { - Name string `json:"name"` - WorkLocation string `json:"location"` - Description string `json:"description"` - Position string `json:"position"` - URL string `json:"url"` - StartDate ResumeDate `json:"startDate"` - EndDate ResumeDate `json:"endDate"` - Summary string `json:"summary"` - Highlights []string `json:"highlights"` - Keywords []string `json:"keywords"` + Name string `json:"name"` + WorkLocation string `json:"location"` + Description string `json:"description"` + Position string `json:"position"` + URL string `json:"url"` + StartDate ResumeDate `json:"startDate"` + EndDate ResumeDate `json:"endDate"` + Summary string `json:"summary"` + Highlights []JobHighlight `json:"highlights"` + Keywords []string `json:"keywords"` } // Volunteer is the volunteer details of the resume owner. diff --git a/themes/kendall/resume.template b/themes/kendall/resume.template index b5074bd..5e1b272 100644 --- a/themes/kendall/resume.template +++ b/themes/kendall/resume.template @@ -62,7 +62,14 @@
{{$w.Summary}}
{{$w.Summary}}