cv/cv.md.mako

60 lines
916 B
Mako

# ${name['first']} ${name['last']}
% for line in address:
${line}${'\\'}
% endfor
% for type in phone:
${type}: ${phone[type]}${'\\'}
% endfor
email: ${email}
${short}
${'##'} Education
% for academic in academics:
${'###'} ${academic['degree']} from ${academic['institution']}
${academic['location']}, ${academic['dates']}
% if 'awards' in academic:
**Awards:**
% for award in academic['awards']:
- ${award}
% endfor
% endif
% if 'courses' in academic:
**Selected Courses:**
% for course in academic['courses']:
- ${course}
% endfor
% endif
% endfor
${'##'} Work Experience
% for employment in employments:
${'###'} ${employment['title']} at ${employment['company']}
${employment['location']}, ${employment['dates']}
${employment['summary']}
% endfor
${'##'} Skills & Interests
% for category in categories:
${'###'} ${category}
% for skill in categories[category]:
- ${skill}
% endfor
% endfor