From 8bde7daa756b06280be91335cc92d4bb7984d0e2 Mon Sep 17 00:00:00 2001 From: gmsundar15 Date: Sat, 18 Jan 2025 20:24:50 +0000 Subject: [PATCH] Initial styling --- _data/cv.yml | 18 +++++------ _includes/cv/awards.liquid | 20 ++++++++++++ _includes/cv/projects.liquid | 30 ++++++++++++++++++ _includes/cv/publications.liquid | 27 +++++++++++++++++ _includes/cv/skills.liquid | 34 +++++++++++++++++++++ _includes/cv/work.liquid | 52 ++++++++++++++++++++++++++++++++ _layouts/cv.liquid | 15 +++++++++ 7 files changed, 185 insertions(+), 11 deletions(-) create mode 100644 _includes/cv/awards.liquid create mode 100644 _includes/cv/projects.liquid create mode 100644 _includes/cv/publications.liquid create mode 100644 _includes/cv/skills.liquid create mode 100644 _includes/cv/work.liquid diff --git a/_data/cv.yml b/_data/cv.yml index 9cc192486c86..cb993ff7a6dd 100644 --- a/_data/cv.yml +++ b/_data/cv.yml @@ -12,18 +12,12 @@ cv: - A German-born theoretical physicist, widely ranked among the greatest and most influential scientists of all time education: - - institution: University of Zurich, Zurich, Switzerland + - institution: University of Zurich area: Software Development degree: PhD start_date: '1905-01-01' end_date: '1905-01-01' - highlights: - - Theory of Relativity - - institution: University of Zurich, Zurich, Switzerland - area: Software Development - degree: PhD - start_date: '1908-01-01' - end_date: '1908-01-01' + location: 'Zurich, CH' highlights: - Theory of Relativity experience: @@ -32,11 +26,12 @@ cv: location: 'Princeton, NY' start_date: '1933-01-01' end_date: '1955-01-01' + summary: 'Teaching at Palmer Physical Laboratory (now 302 Frist Campus Center). While not a professor at Princeton, I associated with the physics professors and continued to give lectures on campus.' highlights: - Relativity publications: - title: "Zur Elektrody/namik bewegter K\xF6rper" - authors: [] + authors: ['Albert Einstein', 'Hermann Minkowski'] date: '1905-06-30' url: https://en.wikisource.org/wiki/Translation:On_the_Electrodynamics_of_Moving_Bodies - title: "\xDCber einen die Erzeugung und Verwandlung des Lichtes betreffenden\ @@ -52,11 +47,12 @@ cv: projects: - name: Quantum Computing date: '2018-01-01' - highlights: [] - technologies: + highlights: ['Quantum Teleportation', 'Quantum Cryptography'] + skills: - label: Physics details: Quantum Mechanics, Quantum Computing, Quantum Information, Quantum Cryptography, Quantum Communication, Quantum Teleportation + icon: 'fa-solid fa-hashtag' awards: - label: Nobel Prize in Physics details: Royal Swedish Academy of Sciences diff --git a/_includes/cv/awards.liquid b/_includes/cv/awards.liquid new file mode 100644 index 000000000000..2dc285978219 --- /dev/null +++ b/_includes/cv/awards.liquid @@ -0,0 +1,20 @@ + + diff --git a/_includes/cv/projects.liquid b/_includes/cv/projects.liquid new file mode 100644 index 000000000000..f84331389bb0 --- /dev/null +++ b/_includes/cv/projects.liquid @@ -0,0 +1,30 @@ + + diff --git a/_includes/cv/publications.liquid b/_includes/cv/publications.liquid new file mode 100644 index 000000000000..c32524b169a3 --- /dev/null +++ b/_includes/cv/publications.liquid @@ -0,0 +1,27 @@ + diff --git a/_includes/cv/skills.liquid b/_includes/cv/skills.liquid new file mode 100644 index 000000000000..373b4c273f96 --- /dev/null +++ b/_includes/cv/skills.liquid @@ -0,0 +1,34 @@ +
+ {% for content in entry[1] %} +
+ + + + {% if content.icon %} + + {% else %} + + {% endif %} + + {% assign i = 1 %} + {% for item in content.items %} + {% assign i = i | plus: 1 %} + {% endfor %} + + + {% for item in content.details %} + + + + + {% endfor %} + +
+ + {{ content.label }}
+ {{ item }} +
+
+ {% endfor %} +
+ diff --git a/_includes/cv/work.liquid b/_includes/cv/work.liquid new file mode 100644 index 000000000000..fef9499bebb1 --- /dev/null +++ b/_includes/cv/work.liquid @@ -0,0 +1,52 @@ + diff --git a/_layouts/cv.liquid b/_layouts/cv.liquid index 185afe9df82c..41f80481e513 100644 --- a/_layouts/cv.liquid +++ b/_layouts/cv.liquid @@ -38,6 +38,21 @@ layout: default {% if entry[0] == "education" %} {% include cv/education.liquid %} {% endif %} + {% if entry[0] == "experience" %} + {% include cv/work.liquid %} + {% endif %} + {% if entry[0] == "publications" %} + {% include cv/publications.liquid %} + {% endif %} + {% if entry[0] == "projects" %} + {% include cv/projects.liquid %} + {% endif %} + {% if entry[0] == "skills" %} + {% include cv/skills.liquid %} + {% endif %} + {% if entry[0] == "awards" %} + {% include cv/awards.liquid %} + {% endif %} {% endunless %} {% endfor %}