Skip to content

Commit 26ec973

Browse files
committed
1 parent 0ca3e27 commit 26ec973

36 files changed

+150
-121
lines changed

layouts/partials/author.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{- $author := (.Params.author | default site.Params.author) }}
33
{{- $author_type := (printf "%T" $author) }}
44
{{- if (or (eq $author_type "[]string") (eq $author_type "[]interface {}")) }}
5-
{{- (delimit $author ", " ) }}
5+
{{- (delimit $author ", " | safeHTML ) }}
66
{{- else }}
77
{{- $author }}
88
{{- end }}

layouts/partials/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101

102102
{{- $lang := .Lang}}
103103
{{- $separator := or $label_text (not site.Params.disableThemeToggle)}}
104-
{{- with site.Home.AllTranslations }}
104+
{{- with site.Home.Translations }}
105105
<ul class="lang-switch">
106106
{{- if $separator }}<li>|</li>{{ end }}
107107
{{- range . -}}

layouts/partials/post_meta.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
{{- end }}
1818

1919
{{- with ($scratch.Get "meta") }}
20-
{{- delimit . "&nbsp;&middot;&nbsp;" -}}
20+
{{- delimit . "&nbsp;&middot;&nbsp;" | safeHTML -}}
2121
{{- end -}}

public/404.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
<meta name="description" content="I am a Professor of Subject at the University of Place. My research covers various topics. consequat.">
1111
<meta name="author" content="Name">
1212
<link rel="canonical" href="https://pascalmichaillat.org/hugo-website/404.html">
13-
<link crossorigin="anonymous" href="/hugo-website/assets/css/stylesheet.5c3d2aa85a103c2d32fb4f6cbe26e29098f291f6fedf6b1d5b502c91573ae1ce.css" integrity="sha256-XD0qqFoQPC0y&#43;09svibikJjykfb&#43;32sdW1AskVc64c4=" rel="preload stylesheet" as="style">
13+
<link crossorigin="anonymous" href="/hugo-website/assets/css/stylesheet.ceedb4bfad9c836660a1794574b00e044af05e0e43d78e579aecd60de809fae9.css" integrity="sha256-zu20v62cg2ZgoXlFdLAOBErwXg5D145XmuzWDegJ&#43;uk=" rel="preload stylesheet" as="style">
1414
<link rel="icon" href="https://pascalmichaillat.org/hugo-website/favicon.ico">
1515
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/hugo-website/favicon-16x16.png">
1616
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/hugo-website/favicon-32x32.png">
1717
<link rel="apple-touch-icon" href="https://pascalmichaillat.org/hugo-website/apple-touch-icon.png">
1818

1919
<meta name="theme-color" content="#2e2e33">
2020
<meta name="msapplication-TileColor" content="#2e2e33">
21+
<link rel="alternate" hreflang="en" href="https://pascalmichaillat.org/hugo-website/404.html">
2122
<noscript>
2223
<style>
2324
#theme-toggle,
@@ -116,7 +117,7 @@
116117
</main>
117118

118119
<footer class="footer">
119-
&copy; 2023 Prof. Name
120+
&copy; 2024 Prof. Name
120121
<span>
121122
&middot; Powered by
122123
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

public/archive/index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
<meta name="description" content="All the papers, courses, and data on this website—listed in chronological order.">
1111
<meta name="author" content="Name">
1212
<link rel="canonical" href="https://pascalmichaillat.org/hugo-website/archive/">
13-
<link crossorigin="anonymous" href="/hugo-website/assets/css/stylesheet.5c3d2aa85a103c2d32fb4f6cbe26e29098f291f6fedf6b1d5b502c91573ae1ce.css" integrity="sha256-XD0qqFoQPC0y&#43;09svibikJjykfb&#43;32sdW1AskVc64c4=" rel="preload stylesheet" as="style">
13+
<link crossorigin="anonymous" href="/hugo-website/assets/css/stylesheet.ceedb4bfad9c836660a1794574b00e044af05e0e43d78e579aecd60de809fae9.css" integrity="sha256-zu20v62cg2ZgoXlFdLAOBErwXg5D145XmuzWDegJ&#43;uk=" rel="preload stylesheet" as="style">
1414
<link rel="icon" href="https://pascalmichaillat.org/hugo-website/favicon.ico">
1515
<link rel="icon" type="image/png" sizes="16x16" href="https://pascalmichaillat.org/hugo-website/favicon-16x16.png">
1616
<link rel="icon" type="image/png" sizes="32x32" href="https://pascalmichaillat.org/hugo-website/favicon-32x32.png">
1717
<link rel="apple-touch-icon" href="https://pascalmichaillat.org/hugo-website/apple-touch-icon.png">
1818

1919
<meta name="theme-color" content="#2e2e33">
2020
<meta name="msapplication-TileColor" content="#2e2e33">
21+
<link rel="alternate" hreflang="en" href="https://pascalmichaillat.org/hugo-website/archive/">
2122
<noscript>
2223
<style>
2324
#theme-toggle,
@@ -243,7 +244,7 @@ <h3 class="archive-entry-title">Paper Title 1
243244
</main>
244245

245246
<footer class="footer">
246-
&copy; 2023 Prof. Name
247+
&copy; 2024 Prof. Name
247248
<span>
248249
&middot; Powered by
249250
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &

public/assets/css/stylesheet.ceedb4bfad9c836660a1794574b00e044af05e0e43d78e579aecd60de809fae9.css

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)