├── layouts ├── content │ └── _redirects ├── partials │ ├── _avatar.html │ ├── _overview.html │ ├── _competencies.html │ ├── _contacts.html │ ├── _skills.html │ ├── _certs.html │ ├── head.html │ ├── _projects.html │ └── _experience.html ├── _default │ └── baseof.html ├── 404.html └── index.html ├── .gitignore ├── Makefile ├── resume-operator.png ├── static └── img │ └── avatar.jpg ├── assets └── scss │ ├── _functions.scss │ ├── components │ ├── _404.scss │ ├── _competencies.scss │ ├── _repos.scss │ ├── _section.scss │ ├── _certifications.scss │ ├── _contact.scss │ ├── _side_section.scss │ ├── _skills.scss │ ├── _avatar.scss │ ├── _experience.scss │ └── _cards.scss │ ├── abstract.scss │ ├── _typography.scss │ ├── _mixins.scss │ ├── _base.scss │ ├── _layout.scss │ └── main.scss ├── data ├── certs │ └── VCP-DCV.yaml ├── experience │ └── vmware.yaml └── profile.yaml ├── Dockerfile ├── i18n └── en.toml ├── config.toml ├── .github └── workflows │ └── gh-pages.yml └── README.md /layouts/content/_redirects: -------------------------------------------------------------------------------- 1 | /* /404.html 404 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | 3 | resources/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | build: 2 | docker build -t ${IMG} . 3 | 4 | push: 5 | docker push ${IMG} -------------------------------------------------------------------------------- /resume-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JefeDavis/resume/HEAD/resume-operator.png -------------------------------------------------------------------------------- /static/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JefeDavis/resume/HEAD/static/img/avatar.jpg -------------------------------------------------------------------------------- /assets/scss/_functions.scss: -------------------------------------------------------------------------------- 1 | @function paper_height($width) { 2 | @return $width / 0.70695553; 3 | } -------------------------------------------------------------------------------- /assets/scss/components/_404.scss: -------------------------------------------------------------------------------- 1 | .pageNotFound { 2 | padding-top: 8rem; 3 | @include hz-center; 4 | 5 | &__text { 6 | padding-top: 3rem; 7 | } 8 | } -------------------------------------------------------------------------------- /data/certs/VCP-DCV.yaml: -------------------------------------------------------------------------------- 1 | title: My Sweet Cert 2 | issuer: Who Knows 3 | earnedDate: 2020-12-18 4 | alias: MSW 5 | validationURL: https://invalid.url 6 | imageURL: https://not-a-valid.url 7 | -------------------------------------------------------------------------------- /assets/scss/components/_competencies.scss: -------------------------------------------------------------------------------- 1 | .competencies { 2 | & li{ 3 | display: inline-list; 4 | list-style-type: disc; 5 | font-weight: 400; 6 | transition: all 0.2s ease-in-out; 7 | } 8 | } -------------------------------------------------------------------------------- /assets/scss/abstract.scss: -------------------------------------------------------------------------------- 1 | // WIDTHS 2 | $width-left-col: 56rem; //70% 3 | $page-width: 80rem; 4 | $width-right-col: $page-width - $width-left-col; 5 | 6 | // ANIMATIONS 7 | $cubic: 0.63, 0.21, 0.76, 1.58; -------------------------------------------------------------------------------- /layouts/partials/_avatar.html: -------------------------------------------------------------------------------- 1 | {{ if .basicInfo.photo }} 2 |
{{ .overview | safeHTML | emojify }}
8 |
9 | You're an explorer, aren't ya?
10 | But the page you are attempting to access cannot be found.
11 | Go back to the main page
12 |
28 | {{ $repo.description | safeHTML | truncate 75 "..." }} 29 |
30 |