diff --git a/src/assets/elm.svg b/src/assets/elm.svg new file mode 100644 index 0000000..7d669f0 --- /dev/null +++ b/src/assets/elm.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/email.svg b/src/assets/email.svg new file mode 100644 index 0000000..af49583 --- /dev/null +++ b/src/assets/email.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/gitlab.svg b/src/assets/gitlab.svg new file mode 100644 index 0000000..1aa6876 --- /dev/null +++ b/src/assets/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/nix.svg b/src/assets/nix.svg new file mode 100644 index 0000000..b36733f --- /dev/null +++ b/src/assets/nix.svg @@ -0,0 +1,389 @@ + + + + +File:Nix Snowflake Logo.svg - Wikimedia Commons + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + +
+ +
+
+
+ + +
+
+

File:Nix Snowflake Logo.svg

+
+
+ + +
+
+
+
+

Original file (SVG file, nominally 502 × 435 pixels, file size: 26 KB) +

+

Captions

Captions

Add a one-line explanation of what this file represents

Summary

+ + +edit + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Description +
English: Official logo of Nix and NixOS from GitHub
Date +
Source +https://github.com/NixOS/nixos-artwork/blob/master/logo/nix-snowflake.svg
Author +Tim Cuthbertson
+
+

Licensing

+ + +edit + + + + +
+
w:en:Creative Commons
+attribution
This file is licensed under the Creative Commons Attribution 4.0 International license.
+
You are free: +
  • to share – to copy, distribute and transmit the work
  • +
  • to remix – to adapt the work
+
Under the following conditions: +
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
+

+ + + + +
+

File history

+
+

Click on a date/time to view the file as it appeared at that time. +

+ + + +
Date/TimeThumbnailDimensionsUserComment
current10:56, 29 December 2023Thumbnail for version as of 10:56, 29 December 2023502 × 435 (26 KB)HaijaPlomito (talk | contribs)Uploaded a work by from https://github.com/NixOS/nixos-artwork/blob/master/logo/nix-snowflake.svg with UploadWizard
+ +
+ +
+

The following page uses this file: +

+
+

Metadata

+ +
+
+ +
+
+
+
+ +
+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/src/assets/phone.svg b/src/assets/phone.svg new file mode 100644 index 0000000..eb6c8c8 --- /dev/null +++ b/src/assets/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/typst.png b/src/assets/typst.png new file mode 100644 index 0000000..40613e7 Binary files /dev/null and b/src/assets/typst.png differ diff --git a/src/resume.pdf b/src/resume.pdf index 25ae52f..d148188 100644 Binary files a/src/resume.pdf and b/src/resume.pdf differ diff --git a/src/resume.typ b/src/resume.typ index 0228adc..b3b8782 100644 --- a/src/resume.typ +++ b/src/resume.typ @@ -2,10 +2,10 @@ #set page( paper: "a6", - margin: (x: 1.8cm, y: 1.5cm), + margin: (x: 0.5cm, y: 0.5cm), ) #set text( - font: "New Computer Modern", + font: "MonaspiceNe NF", size: 5pt ) #set par( @@ -14,8 +14,37 @@ ) #chunk(( - text(size: 10pt)[Nick Hiebert], - divider, + align(center)[ + #text(size: 10pt, weight: "bold")[NICK HIEBERT] + ], + align(center)[ + #grid( + columns: (auto, auto, auto), + gutter: 1em, + align: horizon, + contact( + prefix: "tel:", + entry: "12049986746", + display: "1-204-998-6746", + icon: "assets/phone.svg" + ), + contact( + prefix: "mailto:", + entry: "nick@upRootNutrition.com", + display: "nick@upRootNutrition.com", + icon: "assets/email.svg" + ), + contact( + prefix: "", + entry: "https://gitlab.com/upRootNutrition", + display: "gitlab.com/upRootNutrition", + icon: "assets/gitlab.svg" + ) + ) + ], + divider("ABOUT ME"), + text(""), + divider("EXPERIENCE"), job( company: "upRootNutrition", title: "Content Creator, Programmer", @@ -26,30 +55,18 @@ "Conduct in-depth investigations into nutrition science for clients.", "Mentor clients on research methodologies and interpretation." ) - ), - job( - company: "The Nutrivore", - title: "Content Creator", - dates: "Jan 2018 - Nov 2024", - location: "Winnipeg, MB", - details: ( - "Develop evidence-based content related to nutrition science.", - "Conduct in-depth investigations into nutrition science for clients.", - "Mentor clients on research methodologies and interpretation." - ) + ), + divider("EDUCATION"), + list(( + edu( + institute: "University of Manitoba", + cert: "Human Nutritional Science", + year: "2011" + ), + edu( + institute: "Studio 11 Inc", + cert: "Audio Production", + year: "2008" ) - ) -) - -#list(( - edu( - institute: "University of Manitoba", - cert: "Human Nutritional Science", - year: "2011" - ), - edu( - institute: "Studio 11 Inc", - cert: "Audio Production", - year: "2008" - ) + )) )) diff --git a/src/template.typ b/src/template.typ index abb8888..0a0c3a2 100644 --- a/src/template.typ +++ b/src/template.typ @@ -12,9 +12,26 @@ ) } -#let divider = { +#let contact(prefix: "", entry: "", display: "", icon: "") = { + let url = prefix + entry + grid( + columns: (auto, auto), + gutter: 0.2em, + image(icon, height: 0.8em), + link(url)[#display] + ) +} + +#let divider(title) = { pad(y: 0.5em)[ - #align(center, line(length: 100%, stroke: 0.25pt)) + #grid( + columns: (1fr, auto, 1fr), + column-gutter: 1em, + align: (horizon, horizon, horizon), + line(length: 100%, stroke: 0.5pt), + text(size: 8pt, weight: "bold")[#title], + line(length: 100%, stroke: 0.5pt) + ) ] } @@ -29,8 +46,11 @@ #stack( spacing: 0.75em, [ - #text(weight: "bold")[#company, #location] #h(0.5em) - #text(style: "italic")[— #title] + #grid( + columns: (1fr, auto), + align(left)[#text(weight: "bold")[#company, #location]], + align(right)[#text(style: "italic")[#title]] + ) ], [#dates], [ @@ -48,7 +68,15 @@ year: "" ) = { block(spacing: 0.75em)[ - #text(weight: "bold")[#institute] #h(0.5em) - #text(style: "italic")[— #cert, #year] + #stack( + spacing: 0.75em, + [ + #grid( + columns: (1fr, auto), + text(weight: "bold")[#institute], + text(style: "italic")[#cert, #year] + ) + ] + ) ] }