From 5eb65528e2a25c3ce3c4f079541cc611ac2ee713 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Thu, 23 Nov 2023 22:27:56 +0300 Subject: [PATCH] Use partials --- layouts/_default/baseof.html | 74 +---------- layouts/index.html | 180 +------------------------- layouts/partials/body/contacts.html | 17 +++ layouts/partials/body/education.html | 24 ++++ layouts/partials/body/experience.html | 81 ++++++++++++ layouts/partials/body/projects.html | 51 ++++++++ layouts/partials/body/skills.html | 12 ++ layouts/partials/head/style.html | 69 ++++++++++ 8 files changed, 262 insertions(+), 246 deletions(-) create mode 100644 layouts/partials/body/contacts.html create mode 100644 layouts/partials/body/education.html create mode 100644 layouts/partials/body/experience.html create mode 100644 layouts/partials/body/projects.html create mode 100644 layouts/partials/body/skills.html create mode 100644 layouts/partials/head/style.html diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d278361..29d4c62 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,80 +1,12 @@ - + {{ .Site.Title }} - - - + + {{ partial "head/style.html" . }} diff --git a/layouts/index.html b/layouts/index.html index 16fdb2e..fa9d68a 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,177 +1,7 @@ {{ define "main" }} -
-

{{ .Site.Params.name }}

-
- {{ .Site.Params.Phone }} | jake@su.edu | linkedin.com/in/jake - | github.com/jake -
-
-

Education

-
- - - - - - - - - - - - - - - - - - - -
Southwestern UniversityGeorgetown, TX
Bachelor of Arts in Computer Science, Minor in - Business - Aug. 2018 – May 2021
Blinn CollegeBryan, TX
Associate’s in Liberal ArtsAug. 2014 – May 2018
-

Experience

-
- - - - - - - - - - - -
Undergraduate Research AssistantJune 2020 – Present -
Texas A&M UniversityCollege Station, TX
- - - - - - - - - - - - -
Information Technology Support - SpecialistSep. 2018 – Present
Southwestern UniversityGeorgetown, TX
- - - - - - - - - - - - -
Artificial Intelligence Research - AssistantMay 2019 – July 2019
Southwestern UniversityGeorgetown, TX
- -

Projects

-
- - - - - - - -
Gitlytics | - Python, Flask, React, PostgreSQL, - Docker - June 2020 – Present
- - - - - - - - -
Simple Paintball - | - Spigot API, Java, Maven, TravisCI, - Git - May 2018 – May 2020
- -

Technical Skills

-
- +{{ partial "body/contacts.html" . }} +{{ partial "body/education.html" . }} +{{ partial "body/experience.html" . }} +{{ partial "body/projects.html" . }} +{{ partial "body/skills.html" . }} {{ end }} \ No newline at end of file diff --git a/layouts/partials/body/contacts.html b/layouts/partials/body/contacts.html new file mode 100644 index 0000000..b87b8cb --- /dev/null +++ b/layouts/partials/body/contacts.html @@ -0,0 +1,17 @@ +
+

{{ .Site.Params.Name }}

+
+ {{ with .Site.Params.Phone }} + {{ . }} | + {{ end }} + {{ with .Site.Params.Email }} + {{ . }} | + {{ end }} + {{ with .Site.Params.LinkedIn }} + {{ . }} | + {{ end }} + {{ with .Site.Params.GitHub }} + {{ . }} + {{ end }} +
+
\ No newline at end of file diff --git a/layouts/partials/body/education.html b/layouts/partials/body/education.html new file mode 100644 index 0000000..10901d0 --- /dev/null +++ b/layouts/partials/body/education.html @@ -0,0 +1,24 @@ +

Education

+
+ + + + + + + + + + + + + + + + + + + +
Southwestern UniversityGeorgetown, TX
Bachelor of Arts in Computer Science, Minor in + Business + Aug. 2018 – May 2021
Blinn CollegeBryan, TX
Associate’s in Liberal ArtsAug. 2014 – May 2018
\ No newline at end of file diff --git a/layouts/partials/body/experience.html b/layouts/partials/body/experience.html new file mode 100644 index 0000000..b46a2ee --- /dev/null +++ b/layouts/partials/body/experience.html @@ -0,0 +1,81 @@ +

Experience

+
+ + + + + + + + + + + +
Undergraduate Research AssistantJune 2020 – Present +
Texas A&M UniversityCollege Station, TX
+ + + + + + + + + + + + +
Information Technology Support + SpecialistSep. 2018 – Present
Southwestern UniversityGeorgetown, TX
+ + + + + + + + + + + + +
Artificial Intelligence Research + AssistantMay 2019 – July 2019
Southwestern UniversityGeorgetown, TX
+ \ No newline at end of file diff --git a/layouts/partials/body/projects.html b/layouts/partials/body/projects.html new file mode 100644 index 0000000..c16c1fb --- /dev/null +++ b/layouts/partials/body/projects.html @@ -0,0 +1,51 @@ +

Projects

+
+ + + + + + + +
Gitlytics | + Python, Flask, React, PostgreSQL, + Docker + June 2020 – Present
+ + + + + + + + +
Simple Paintball + | + Spigot API, Java, Maven, TravisCI, + Git + May 2018 – May 2020
+ \ No newline at end of file diff --git a/layouts/partials/body/skills.html b/layouts/partials/body/skills.html new file mode 100644 index 0000000..3e3d9ce --- /dev/null +++ b/layouts/partials/body/skills.html @@ -0,0 +1,12 @@ +

Technical Skills

+
+
+ Languages: Java, Python, C/C++, SQL + (Postgres), JavaScript, HTML/CSS, R
+ Frameworks: React, Node.js, Flask, JUnit, + WordPress, Material-UI, FastAPI
+ Developer Tools: Git, Docker, TravisCI, Google + Cloud Platform, VS Code, Visual Studio, PyCharm, IntelliJ, + Eclipse
+ Libraries: pandas, NumPy, Matplotlib +
\ No newline at end of file diff --git a/layouts/partials/head/style.html b/layouts/partials/head/style.html new file mode 100644 index 0000000..99499b1 --- /dev/null +++ b/layouts/partials/head/style.html @@ -0,0 +1,69 @@ + \ No newline at end of file