Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/_default/params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions data/authors/eaogorman.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
30 changes: 26 additions & 4 deletions layouts/partials/hbx/blocks/resume-biography-3/block.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ <h2 class="text-xl sm:text-2xl lg:text-3xl font-bold text-gray-900 dark:text-whi
{{ end }}
<h3 class="text-xl sm:text-2xl lg:text-3xl font-bold text-gray-900 dark:text-white tracking-tight">{{ $education_heading | markdownify }}</h3>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
{{ range $education }}
{{ if reflect.IsMap . }}
{{ $degree := "" }}
Expand Down Expand Up @@ -460,21 +460,43 @@ <h3 class="text-xl sm:text-2xl lg:text-3xl font-bold text-gray-900 dark:text-whi
</div>
<div class="flex-1 flex-grow">
{{ if $degree }}
<p class="text-xl font-bold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors">
<p class="text-base font-bold text-gray-900 dark:text-white group-hover:text-primary-600 dark:group-hover:text-primary-400 transition-colors">
{{ $degree }}
</p>
{{ end }}
{{ if $year }}
<p class="text-gray-500 dark:text-gray-400 text-sm mt-2">{{ $year }}</p>
{{ else if $start }}
<p class="text-gray-500 dark:text-gray-400 text-sm mt-2">
{{ $start }}
{{ if $end }}<br>{{ $end }}{{ end }}
{{ $start }}{{ if $end }} &mdash; {{ $end }}{{ end }}
</p>
{{ end }}
{{ if $institution }}
<p class="text-gray-700 dark:text-gray-300 text-base">{{ $institution }}</p>
{{ end }}
{{/* Education summary (e.g., dissertation/thesis title and advisor) */}}
{{ $summary := "" }}
{{ with index . "summary" }}{{ $summary = printf "%v" . | strings.TrimSpace }}{{ end }}
{{ if $summary }}
<div class="text-gray-600 dark:text-gray-400 text-sm mt-2 prose prose-sm dark:prose-invert max-w-none">
{{ $summary | markdownify }}
</div>
{{ 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 }}
<a href="{{ $btn_url | safeURL }}" target="_blank" rel="noopener"
class="inline-flex items-center text-sm text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300 font-medium mt-2 transition-colors">
{{ $btn_text }}
<span class="ml-1">&rarr;</span>
</a>
{{ end }}
{{ end }}
</div>
</div>
</div>
Expand Down