diff --git a/config/_default/params.yaml b/config/_default/params.yaml index 7b152f6..55e2ba4 100644 --- a/config/_default/params.yaml +++ b/config/_default/params.yaml @@ -8,7 +8,7 @@ hugoblox: schema: "2.0" identity: # Site name - shown in navbar, footer, copyright, and browser title by default - name: Elizabeth (Liz) A. O'Gorman Ph.D. + name: Elizabeth (Liz) A. O'Gorman, Ph.D. # Legal entity for copyright notices (defaults to name if not set) organization: "" # Schema.org type for structured data @@ -99,7 +99,7 @@ hugoblox: # Custom footer text (HTML supported) text: "" copyright: - notice: © {2026} {Elizabeth (Liz) A. O'Gorman Ph.D.}. All rights reserved. + notice: © {2026} {Elizabeth (Liz) A. O'Gorman, Ph.D.}. All rights reserved. content: math: enable: false diff --git a/data/authors/eaogorman.yaml b/data/authors/eaogorman.yaml index 2d60118..b45ec68 100644 --- a/data/authors/eaogorman.yaml +++ b/data/authors/eaogorman.yaml @@ -42,7 +42,7 @@ education: institution: "Duke University" start: "2018" end: "2025" - summary: "Dissertation: _Flexible, Real-Time Shaping of Zebra Finch Vocal Learning_. Advised by [John Pearson, PhD](https://pearsonlab.github.io/)." + summary: "Dissertation: _Flexible, Real-Time Shaping of Zebra Finch Vocal Learning_. Advised by [John Pearson, Ph.D.](https://pearsonlab.github.io/)." button: text: "Read Dissertation Abstract" url: "https://www.proquest.com/docview/3252071748" @@ -56,7 +56,7 @@ education: institution: "Emory University" start: "2014" end: "2018" - summary: "Honors Thesis: _Low-Dimensional Mapping of Corticostriatal Circuitry Dynamics Underlying Pair_. Advised by [Gordon Berman, PhD](https://faculty.college.emory.edu/sites/berman/)." + summary: "Honors Thesis: _Low-Dimensional Mapping of Corticostriatal Circuitry Dynamics Underlying Pair_. Advised by [Gordon Berman, Ph.D.](https://faculty.college.emory.edu/sites/berman/)." button: text: "Read Honors Thesis" url: "https://etd.library.emory.edu/concern/etds/b8515n39j?locale=en" diff --git a/layouts/partials/hbx/blocks/resume-biography-3/block.html b/layouts/partials/hbx/blocks/resume-biography-3/block.html index 4fb837a..8d060cc 100644 --- a/layouts/partials/hbx/blocks/resume-biography-3/block.html +++ b/layouts/partials/hbx/blocks/resume-biography-3/block.html @@ -430,7 +430,7 @@

{{ $education_heading | markdownify }}

-
+
{{ range $education }} {{ if reflect.IsMap . }} {{ $degree := "" }} @@ -460,7 +460,7 @@

{{ if $degree }} -

+

{{ $degree }}

{{ end }} @@ -468,13 +468,35 @@

{{ $year }}

{{ else if $start }}

- {{ $start }} - {{ if $end }}
{{ $end }}{{ end }} + {{ $start }}{{ if $end }} — {{ $end }}{{ end }}

{{ end }} {{ if $institution }}

{{ $institution }}

{{ end }} + {{/* Education summary (e.g., dissertation/thesis title and advisor) */}} + {{ $summary := "" }} + {{ with index . "summary" }}{{ $summary = printf "%v" . | strings.TrimSpace }}{{ end }} + {{ if $summary }} +
+ {{ $summary | markdownify }} +
+ {{ end }} + {{/* Education button (e.g., link to read thesis/dissertation) */}} + {{ $edu_button := index . "button" }} + {{ if and $edu_button (reflect.IsMap $edu_button) }} + {{ $btn_text := "" }} + {{ $btn_url := "" }} + {{ with index $edu_button "text" }}{{ $btn_text = printf "%v" . | strings.TrimSpace }}{{ end }} + {{ with index $edu_button "url" }}{{ $btn_url = printf "%v" . | strings.TrimSpace }}{{ end }} + {{ if and $btn_text $btn_url }} + + {{ $btn_text }} + + + {{ end }} + {{ end }}