commit 039767844a77b654b02908b020d3b4b83c854987 Author: Serghei Cebotari Date: Wed Nov 22 23:47:45 2023 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa39361 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**/public +**/themes +.hugo_build.lock \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..17993f6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2023 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..5b2dffb --- /dev/null +++ b/config.toml @@ -0,0 +1,10 @@ +baseURL = "http://example.org/" +languageCode = "en-us" +title = "Hugo's Resume" + +[Params] + Name = "Hugo Jobless" + Phone = "123-456-7890" + EMail = "jake@su.edu" + LinkedIn = "linkedin.com/in/jake" + GitHub = "github.com/jake" \ No newline at end of file diff --git a/hugo-watch.ps1 b/hugo-watch.ps1 new file mode 100644 index 0000000..809d008 --- /dev/null +++ b/hugo-watch.ps1 @@ -0,0 +1 @@ +docker run --rm -it -v "$(Get-Location):/src/homepage" -p 1313:1313 klakegg/hugo:alpine serve -D --poll 700ms -s /src/homepage \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..d278361 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,84 @@ + + + + + {{ .Site.Title }} + + + + + + + + + {{- block "main" . }}{{- end }} + + + \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..16fdb2e --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,177 @@ +{{ 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

+
+ +{{ end }} \ No newline at end of file diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..90ce485 --- /dev/null +++ b/theme.toml @@ -0,0 +1,15 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "Hugo's Resume" +license = "MIT" +licenselink = "https://github.com/chebser/hugos-resume/blob/master/LICENSE" +description = "Hugo resume theme inspired by Jake's resume" +homepage = "https://github.com/chebser/hugos-resume/" +tags = [resume] +features = [] +min_version = "0.41.0" + +[author] + name = "Serghei Cebotari" + homepage = "https://cebotari.ru" \ No newline at end of file