Skip to content

Commit

Permalink
feat: update plaintext layout (#28)
Browse files Browse the repository at this point in the history
* docs: fix typo

* feat: update plaintext layout

Section headers have been made UPPERCASE as that
is a common convention for resumes that ATS
systems may look for.

The summary has been moved directly under the
name, and the section previously named "summary"
is now more aptly named "skills".

The section containing links to various other
platforms is now named "links".
  • Loading branch information
cjshearer committed Jan 8, 2024
1 parent 9d68a61 commit a69a4eb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Overview

_A minimal static resume builder; inspired by [sproogen's modern-resume-theme](https://github.com/sproogen/modern-resume-theme) and [mnjul's html-resume](https://github.com/mnjul/html-resume).Powered by Hugo, Tailwind CSS, and GitHub Pages._
_A minimal static resume builder; inspired by [sproogen's modern-resume-theme](https://github.com/sproogen/modern-resume-theme) and [mnjul's html-resume](https://github.com/mnjul/html-resume). Powered by Hugo, Tailwind CSS, and GitHub Pages._

_Host your own resume on GitHub for free!_

Expand Down
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Project Highlights:

{{<resume/entry name="BS Computer Science" affiliation="University of South Carolina" startdate="2017-08-17" enddate="2021-05-06">}}

- Graduated [Magna cum Laude](pdf/usc-diploma.pdf) with a mathematics minor
- Graduated [*magna cum laude*](pdf/usc-diploma.pdf) with a mathematics minor
- Achieved [Outstanding Senior Award](https://sc.edu/about/offices_and_divisions/leadership_and_service_center/awards_and_recognition/senior-awards/index.php) and the [Palmetto Fellows Scholarship](https://sc.edu/about/offices_and_divisions/financial_aid/scholarships/scholarships_for_sc_residents/palmetto_fellows/index.php)
- Earned honors including President's List, Dean's List, and [Phi Beta Kappa](https://www.pbk.org/About)
- Served as President and Treasurer of the Carolina Movement Club (*parkour!*)
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/_markup/render-heading.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- if eq .Level 2 -}}
-------------------------------------------------------------------------------------------
{{ .Text | strings.ToUpper -}}
{{- else -}}
TODO: implement me if this shows up
{{- end }}
{{ .Text }}

5 changes: 3 additions & 2 deletions layouts/index.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{{ .Params.name }}
{{ .Params.summary }}
-------------------------------------------------------------------------------------------
Summary
SKILLS

{{ .Params.summary }}
{{ range .Params.Skills }}
{{- range $category, $items := . }}
{{- $category | strings.FirstUpper }}: {{ delimit $items ", " }}
{{- end }}
{{ end }}
{{ .Content -}}
-------------------------------------------------------------------------------------------
LINKS

{{ range .Params.links }}
{{- .name}}: {{ partial "plainTextURI.html" .url }}
Expand Down

0 comments on commit a69a4eb

Please sign in to comment.