Skip to content

Commit 651e825

Browse files
committed
Formatting.
1 parent 4faea2b commit 651e825

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

_layouts/about.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
---
44
<div class="post">
55
<header class="post-header">
6-
<h1 class="post-title">
6+
<h1 class="post-title about-page-title">
77
{% if site.title == 'blank' %}
88
{{ site.first_name }} {{ site.middle_name }}
99
{{ site.last_name }}

_pages/talks.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: page
33
permalink: /talks/
4-
title: talks & activities
5-
description: Conference and seminar talks, as well as conferences and workshops attended.
4+
title: Talks & Activities
5+
#description: Conference and seminar talks, as well as conferences and workshops attended.
66
nav: true
77
nav_order: 3
88
title_class: text-center
@@ -14,7 +14,7 @@ title_class: text-center
1414
{% if talks_section %}
1515
{% assign talks_list = talks_section.contents %}
1616
{% if talks_list and talks_list.size > 0 %}
17-
### talks and posters
17+
### Talks and posters
1818
{% for activity in talks_list %}
1919
{% assign type_line = activity.description | first | default: '' | strip_html | strip %}
2020
{% assign cleaned_type = type_line | remove: 'Type:' | strip %}
@@ -29,7 +29,7 @@ title_class: text-center
2929
{% if events_section %}
3030
{% assign events_list = events_section.contents %}
3131
{% if events_list and events_list.size > 0 %}
32-
### event participation
32+
### Event participation
3333
{% for activity in events_list %}
3434
* {{ activity.year }} • **{{ activity.title }}**{% if activity.institution %}, {{ activity.institution }}{% endif %}{% if activity.location %}, {{ activity.location }}{% endif %}
3535
{% endfor %}
@@ -40,7 +40,7 @@ title_class: text-center
4040
{% if seminars_section %}
4141
{% assign seminars_list = seminars_section.contents %}
4242
{% if seminars_list and seminars_list.size > 0 %}
43-
### seminar talks
43+
### Seminar talks
4444
{% for activity in seminars_list %}
4545
* {{ activity.year }} • **{{ activity.institution }}**{% if activity.location %}, {{ activity.location }}{% endif %}
4646
{% if activity.linkitems %}
@@ -53,7 +53,7 @@ title_class: text-center
5353
{% if stays_section %}
5454
{% assign stays_list = stays_section.contents %}
5555
{% if stays_list and stays_list.size > 0 %}
56-
### research stays
56+
### Research stays
5757
{% for stay in stays_list %}
5858
* {{ stay.year }} • **{{ stay.institution }}**{% if stay.location %}, {{ stay.location }}{% endif %}
5959
{% if stay.description %}{{ stay.description | join: ' • ' }}{% endif %}

_sass/_base.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,14 @@ footer.sticky-bottom {
595595
mjx-container[jax="CHTML"][display="true"] {
596596
display: unset;
597597
}
598+
599+
// Color all post titles with theme color (except about page)
600+
color: var(--global-theme-color);
601+
602+
// Exclude about page title from theme color
603+
&.about-page-title {
604+
color: inherit;
605+
}
598606
}
599607

600608
.post-list {

0 commit comments

Comments
 (0)