No known key found for this signature in database
GPG Key ID: 6DEED612B26C08E2
3 changed files with
31 additions and
1 deletions
-
assets/sass/main.scss
-
content/resume/_index.md
-
layouts/shortcodes/resume/work-experience.html
|
|
@ -654,6 +654,22 @@ header {// {{{ |
|
|
|
} |
|
|
|
}// }}} |
|
|
|
|
|
|
|
.company { |
|
|
|
color: #fe4646; |
|
|
|
font-weight: bold; |
|
|
|
font-size: 1.1em; |
|
|
|
margin-bottom: 5px; |
|
|
|
} |
|
|
|
|
|
|
|
.position { |
|
|
|
// color: black; |
|
|
|
color: $base-sky-blue; |
|
|
|
font-weight: bold; |
|
|
|
// font-style: italic; |
|
|
|
font-size: 1em; |
|
|
|
margin-bottom: 5px; |
|
|
|
} |
|
|
|
|
|
|
|
.institution { |
|
|
|
color: $base-yellow; |
|
|
|
font-weight: bold; |
|
|
|
|
|
@ -5,7 +5,7 @@ draft: false |
|
|
|
--- |
|
|
|
{{% resume/section "Work Experience" %}}<!--- {{{ --> |
|
|
|
|
|
|
|
{{% resume/education name="Red Hat" |
|
|
|
{{% resume/work-experience name="Red Hat" |
|
|
|
title="Cloud/Software Engineer Intern" date="May 2020 — Aug 2021" %}} |
|
|
|
- Reduced deployment time by **66%** by implementing ability to |
|
|
|
deploy locally-compiled binaries onto **Kubernetes**/**OpenShift** |
|
|
|
|
|
@ -0,0 +1,14 @@ |
|
|
|
<div class="work-experience"> |
|
|
|
<div class="row"> |
|
|
|
<div class="col-8 text-left"> |
|
|
|
<p class="company"> |
|
|
|
{{ .Get "name" }} |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="col text-right date">{{ .Get "date" }}</div> |
|
|
|
</div> |
|
|
|
<!-- <span class="title"> --> |
|
|
|
<span class="position"> |
|
|
|
{{ .Get "title" }} |
|
|
|
</span> |
|
|
|
</div> |