resume.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <!DOCTYPE html>
  2. <html>
  3. {% include head.html %}
  4. <body class="theme-{% if site.resume_theme %}{{ site.resume_theme }}{% endif %}">
  5. <div class="wrapper" itemscope itemtype="http://schema.org/Person">
  6. <meta itemprop="telephone" content="{{ site.resume_contact_telephone }}"/>
  7. <meta itemprop="address" content="{{ site.resume_contact_address }}"/>
  8. <header class="page-header">
  9. <!-- You can turn off the avatar in _config.yml by setting to false -->
  10. {% if site.resume_avatar == 'true' %}
  11. <img src="images/me_square_sepia_small.jpg" alt="my photo" class="avatar no-print" itemprop="image">
  12. {% endif %}
  13. <!-- Your name is defined in the _config.yml file -->
  14. <h1 class="header-name" itemprop="name">{{ site.resume_name }}</h1>
  15. <!-- To display contact info here, change `display_header_contact_info` value in _config.yml to true -->
  16. {% if site.display_header_contact_info == 'true' %}
  17. <div class="header-contact-info">
  18. <p>{{ site.resume_header_contact_info }}</p>
  19. </div>
  20. {% endif %}
  21. <div class="title-bar no-print">
  22. <!-- Your title is also defined in the _config.yml file -->
  23. <h2 class="header-title" itemprop="jobTitle">{{ site.resume_title }}</h2>
  24. <!-- This is the markup for the icon links; moved out to an include because it's very verbose, and you shouldn't ever need to edit the markup (unless you want to re-order the icons); if you want to customize which links appear, define them in the _config.yml file -->
  25. {% include icon-links.html %}
  26. </div>
  27. <div class="executive-summary" itemprop="description">
  28. {{ site.resume_header_intro }}
  29. </div>
  30. {% if site.resume_looking_for_work == 'yes' %}
  31. <a href="mailto:{{ site.resume_contact_email }}" class="contact-button no-print" itemprop="email">Contact me</a>
  32. {% elsif site.resume_looking_for_work == 'no' %}
  33. <a class="contact-button not-looking no-print">I'm not looking for work right now.</a>
  34. {% else %}
  35. {% endif %}
  36. </header>
  37. {% if site.resume_section_education %}
  38. <!-- begin Education -->
  39. <section class="content-section">
  40. <header class="section-header">
  41. <h2>Education</h2>
  42. </header>
  43. {% for education in site.data.education %}
  44. <div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
  45. <h3 class="resume-item-title" itemprop="name">{{ education.degree }}</h3>
  46. <h4 class="resume-item-details group" itemprop="description">{{ education.uni }} &bull; {{ education.year }}</h4>
  47. <p class="resume-item-details award-title" style="font-size: 1rem" itemprop="description">{{ education.award }}</p>
  48. <p class="resume-item-copy" itemprop="description">
  49. <ul class="resume-item-list">
  50. {% for award in education.awards %}
  51. <li>{{ award.award }}</li>
  52. {% endfor %}
  53. </ul></h5>
  54. <p class="resume-item-copy" style="line-height: 1">{{ education.summary }}</p>
  55. </div>
  56. {% endfor %}
  57. </section>
  58. <!-- end Education -->
  59. {% endif %}
  60. {% if site.resume_section_experience %}
  61. <!-- begin Experience -->
  62. <section class="content-section">
  63. <header class="section-header">
  64. <h2>Experience</h2>
  65. </header>
  66. {% for job in site.data.experience %}
  67. <div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
  68. <h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
  69. <h4 class="resume-item-details" itemprop="description">{{ job.position }} &bull; {{ job.duration }}</h4>
  70. <p class="resume-item-copy">{{ job.summary }}</p>
  71. </div><!-- end of resume-item -->
  72. {% endfor %}
  73. </section>
  74. <!-- end Experience -->
  75. {% endif %}
  76. {% if site.resume_section_publications %}
  77. <!-- begin Publications -->
  78. <section class="content-section">
  79. <header class="section-header">
  80. <h2>Publications</h2>
  81. </header>
  82. <<<<<<< HEAD
  83. {% for education in site.data.education %}
  84. <div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
  85. <h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
  86. <h4 class="resume-item-details group" itemprop="description">{{ education.degree }} &bull; {{ education.year }}</h4>
  87. <h5 class="resume-item-details award-title" itemprop="description">{{ education.award }}</h5>
  88. <p class="resume-item-copy" itemprop="description">
  89. <ul class="resume-item-list">
  90. {% for award in education.awards %}
  91. <li>{{ award.award }}</li>
  92. {% endfor %}
  93. </ul>
  94. <p class="resume-item-copy">{{ education.summary }}</p>
  95. </div>
  96. {% endfor %}
  97. </section>
  98. <!-- end Education -->
  99. {% endif %}
  100. {% if site.resume_section_projects %}
  101. <!-- begin Projects -->
  102. <section class="content-section">
  103. <header class="section-header">
  104. <h2>Projects</h2>
  105. </header>
  106. {% for project in site.data.projects %}
  107. <div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
  108. <meta itemprop="creator" content="{{ site.resume_name }}" itemtype="http://schema.org/Person" />
  109. <h3 class="resume-item-title" itemprop="name">{% if project.url %}<a href="{{ project.url }}" itemprop="url">{{ project.project }}</a>{% else %}{{ project.project }}{% endif %}</h3>
  110. <h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
  111. <p class="resume-item-copy">{{ project.description }}</p>
  112. =======
  113. {% for publication in site.data.publications %}
  114. <div class="resume-item" itemscope itemtype="http://schema.org/ScholarlyArticle">
  115. <h3 class="resume-item-publication-title" itemprop="title">{% if publication.url %}<a href="{{ publication.url }}" itemprop="url">{{ publication.title }}</a>{% else %}{{ publication.title }}{% endif %}</h3>
  116. <h4 class="resume-item-subdetails" itemprop="description">{{ publication.authors }}</h4>
  117. <h4 class="resume-item-subdetails" itemprop="description"><i>{{ publication.journal }}</i> {{ publication.pages }} &bull; {{ publication.date }}</h4>
  118. <p>
  119. <details>
  120. <summary style="display: list-item">Click for abstract</summary>
  121. <p> {{ publication.abstract }} </p>
  122. </details>
  123. </p>
  124. >>>>>>> 59c0648 (Initial commits)
  125. </div>
  126. {% endfor %}
  127. </section>
  128. <!-- end Publicationss -->
  129. {% endif %}
  130. {% if site.resume_section_presentations %}
  131. <!-- begin Presentations -->
  132. <section class="content-section">
  133. <header class="section-header">
  134. <h2>Presentations</h2>
  135. </header>
  136. {% for presentation in site.data.presentations %}
  137. <div class="resume-item">
  138. <h4 class="resume-item-details">{{ presentation.title }}</h4>
  139. <p class="resume-item-copy">{{ presentation.conference }}</p>
  140. <p class="resume-item-copy" style="margin: 0 0 0">{{ presentation.location }} &bull; {{ presentation.date }}</p>
  141. </div>
  142. {% endfor %}
  143. </section>
  144. <!-- end Skills -->
  145. {% endif %}
  146. {% if site.resume_section_abstracts_posters %}
  147. <!-- begin Presentations -->
  148. <section class="content-section">
  149. <header class="section-header">
  150. <h2>Published Abstracts & Posters</h2>
  151. </header>
  152. {% for abstract_poster in site.data.abstracts_posters %}
  153. <div class="resume-item">
  154. <h4 class="resume-item-details">{{ abstract_poster.title }}</h4>
  155. <p class="resume-item-copy">{{ abstract_poster.conference }}</p>
  156. <p class="resume-item-copy" style="margin: 0 0 0">{{ abstract_poster.location }} &bull; {{ abstract_poster.date }}</p>
  157. </div>
  158. {% endfor %}
  159. </section>
  160. <!-- end Presentations -->
  161. {% endif %}
  162. {% if site.resume_section_grants %}
  163. <!-- begin Grants -->
  164. <section class="content-section">
  165. <header class="section-header">
  166. <h2>Grants, Honors, and Committees</h2>
  167. </header>
  168. {% for institution in site.data.grants %}
  169. <div class="resume-item">
  170. <h4 class="resume-item-details" itemprop="name">{{ institution.institution }}</h4>
  171. <ul class="resume-item-list">
  172. {% for name in institution.names %}
  173. <li>{{ name.name }}</li>
  174. {% endfor %}
  175. </ul>
  176. </div>
  177. {% endfor %}
  178. </section>
  179. <!-- end Grants -->
  180. {% endif %}
  181. {% if site.resume_section_skills %}
  182. <!-- begin Skills -->
  183. <section class="content-section">
  184. <header class="section-header">
  185. <h2>Skills</h2>
  186. </header>
  187. {% for skill in site.data.skills %}
  188. <h4 class="resume-item-details">{{ skill.name }}</h4>
  189. <div class="skills">
  190. <div class="level-bar">
  191. <div class="level-bar-inner" style=width:{{ skill.level }}>
  192. </div>
  193. </div><!--//level-bar-->
  194. </div><!--//skills-->
  195. {% endfor %}
  196. </section><!--//skills-section-->
  197. {% endif %}
  198. {% if site.resume_section_interests %}
  199. <!-- begin Interests -->
  200. <section class="content-section">
  201. <header class="section-header">
  202. <h2>Outside Interests</h2>
  203. </header>
  204. <div class="resume-item">
  205. <ul class="resume-item-list">
  206. {% for interest in site.data.interests %}
  207. <li>{{ interest.description }}</li>
  208. {% endfor %}
  209. </ul>
  210. </div>
  211. </section>
  212. <!-- end Interests -->
  213. {% endif %}
  214. {% if site.resume_section_links %}
  215. <!-- begin Links -->
  216. <section class="content-section">
  217. <header class="section-header">
  218. <h2>Additional Links</h2>
  219. </header>
  220. <div class="resume-item">
  221. <ul class="resume-item-list">
  222. {% for link in site.data.links %}
  223. <li><a href={{ link.url }} itemprop="url">{{ link.description }}</a></li>
  224. {% endfor %}
  225. </ul>
  226. </div>
  227. </section>
  228. <!-- end Links -->
  229. {% endif %}
  230. {% if site.resume_print_social_links %}
  231. <!-- begin Print Social Links -->
  232. <section class="content-section print-only">
  233. <header class="section-header">
  234. <h2>Social Links</h2>
  235. </header>
  236. <div class="resume-item">
  237. {% include print-social-links.html %}
  238. </div>
  239. </section>
  240. <!-- end Print Social Links -->
  241. {% endif %}
  242. <footer class="page-footer">
  243. </footer>
  244. </div>
  245. </body>
  246. </html>