diff --git a/_pages/about.md b/_pages/about.md index 53634e0..8161eda 100644 --- a/_pages/about.md +++ b/_pages/about.md @@ -3,8 +3,7 @@ layout: about title: About permalink: / subtitle: Data Science · Machine Learning · Computational Biology · Applied Statistics -nav: true -nav_order: 1 +nav: false profile: align: right image: sabuj.jpg diff --git a/_pages/cv.md b/_pages/cv.md index 8e826bc..baad467 100644 --- a/_pages/cv.md +++ b/_pages/cv.md @@ -1,12 +1,416 @@ --- -layout: cv +layout: page permalink: /cv/ title: CV nav: true nav_order: 4 cv_pdf: /assets/rendercv/rendercv_output/Sabuj_C_Bhowmick_CV.pdf -cv_format: rendercv description: Education, research experience, technical skills, and selected projects. -toc: - sidebar: left --- + + + +{% assign cv = site.data.cv.cv %} +{% assign sections = cv.sections %} + +
+
+
+
Curriculum vitae
+

{{ cv.name }}

+

{{ cv.headline }}

+
+ +
+ + + +
+

Profile

+
+ {% for paragraph in sections.Profile %} + {{ paragraph | markdownify }} + {% endfor %} +
+
+ +
+

Experience

+
+ {% for item in sections.Experience %} +
+
+

{{ item.position }}

+

{{ item.company }}

+
+ + {% if item.summary %}

{{ item.summary }}

{% endif %} + {% if item.highlights %} +
    + {% for highlight in item.highlights %} +
  • {{ highlight }}
  • + {% endfor %} +
+ {% endif %} +
+ {% endfor %} +
+
+ +
+

Education

+
+ {% for item in sections.Education %} +
+
+

{{ item.degree }} · {{ item.area }}

+

{{ item.institution }}

+
+ + {% if item.highlights %} +
    + {% for highlight in item.highlights %} +
  • {{ highlight }}
  • + {% endfor %} +
+ {% endif %} +
+ {% endfor %} +
+
+ +
+

Skills

+
+ {% for item in sections.Skills %} +
+

{{ item.label }}

+

{{ item.details }}

+
+ {% endfor %} +
+
+ +
+

Selected Projects

+
+ {% for item in sections.Projects %} +
+

{{ item.name }}

+

{{ item.summary }}

+ {% if item.highlights %} +
    + {% for highlight in item.highlights %} +
  • {{ highlight }}
  • + {% endfor %} +
+ {% endif %} +
+ {% endfor %} +
+
+ +
+

Languages

+
+ {% for item in sections.Languages %} +
+ {{ item.label }} + {{ item.details }} +
+ {% endfor %} +
+
+ +
+

Interests

+ {% for item in sections.Interests %} +
+

{{ item.label }}

+

{{ item.details }}

+
+ {% endfor %} +
+