Skip to content

Commit

Permalink
update to latest hugo version
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Jan 6, 2025
1 parent 3c1d128 commit b300853
Show file tree
Hide file tree
Showing 177 changed files with 4,087 additions and 2,033 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: Rscript -e 'install.packages(c("rmarkdown","blogdown", "remotes"))'

- name: Install hugo
run: Rscript -e 'blogdown::install_hugo(version="0.134.0")' # Update to the latest version
run: Rscript -e 'blogdown::install_hugo(version="0.139.4")' # Update to the latest version

- name: Build site with blogdown
run: Rscript -e "blogdown::build_site()"
Expand Down
1 change: 1 addition & 0 deletions RealityBending.github.io.Rproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Version: 1.0
ProjectId: 2d7e7739-7179-4beb-b9ec-27a35f0884b4

RestoreWorkspace: Default
SaveWorkspace: Default
Expand Down
3 changes: 2 additions & 1 deletion config/_default/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ module:

enableGitInfo: false
summaryLength: 30
paginate: 30
pagination:
pagerSize: 10
enableEmoji: true
enableRobotsTXT: true
footnotereturnlinkcontents: <sup>^</sup>
Expand Down
2 changes: 1 addition & 1 deletion content/jobs/phd.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ Note that these are general guidelines that also apply to other contexts (master

The key thing is to keep in mind that we receive a ***lot*** of applications (few hundreds for some positions). The first mistake you want to avoid is to have a generic, impersonal application: do address specific people (and **do not make mistakes in the spelling of their names**, it happens often and is a turn-off), and try to concisely paint a profile of yourself that the recruiter can easily picture and form an image of: what is your background, where do you come from, what are your expertise, interests and goals. This should really be one tightly written paragraph (you can expand on this in your CV). We often see long and convoluted CVs and cover letters, that try to show "a bit of everything", leaving the reader with little more than a sense of confusion.

Next, after providing a clear depiction of who you are, you want to show that you have **done your homework about where you are applying**: be specific about the people of the department (e.g., "I am particularly interested in working with Dr. X because of their work on Y"), or the papers ("I particularly enjoyed your paper on X because of Y"). This shows that you are motivated and that you are not just sending the same application to 100 different places.
Next, after providing a clear depiction of who you are, you want to show that you have **done your homework about where you are applying**: be specific about the people of the department (e.g., "I am particularly interested in working with Dr. X because of their work on Y"), or the papers ("I particularly enjoyed your paper on X because of Y"). This shows that you are motivated and that you are not just sending the same application to 100 different places. That being said, do not list *everything* that is written on someone's website or profile, because it makes it look like you just copied and pasted it. Be genuine, personal and specific. It is tempting to use AI to generate these kinds of things, but I would advise against it. Putting it the time, effort, and hard work will pay off.

Finally, you want to show that you are a good fit for the position, and show that you have experience in the methods that are used in the lab, that you have experience in the field, etc.
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@
{{- with site.Params.marketing.verification.baidu -}}
<meta name="baidu-site-verification" content="{{ . }}" />
{{- end -}}

{{ with site.Params.marketing.verification.naver }}
<meta name="naver-site-verification" content="{{ . }}" />
{{- end -}}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
display: block;
min-height: $font-size-base * $line-height-base;
padding-left: $custom-control-gutter + $custom-control-indicator-size;
color-adjust: exact; // Keep themed appearance for print
print-color-adjust: exact; // Keep themed appearance for print
}

.custom-control-inline {
Expand Down Expand Up @@ -91,7 +91,7 @@
pointer-events: none;
content: "";
background-color: $custom-control-indicator-bg;
border: $custom-control-indicator-border-color solid $custom-control-indicator-border-width;
border: $custom-control-indicator-border-width solid $custom-control-indicator-border-color;
@include box-shadow($custom-control-indicator-box-shadow);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,13 @@

.nav-link {
margin-bottom: -$nav-tabs-border-width;
background-color: transparent;
border: $nav-tabs-border-width solid transparent;
@include border-top-radius($nav-tabs-border-radius);

@include hover-focus() {
// Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link
isolation: isolate;
border-color: $nav-tabs-link-hover-border-color;
}

Expand Down Expand Up @@ -73,6 +76,8 @@

.nav-pills {
.nav-link {
background: none;
border: 0;
@include border-radius($nav-pills-border-radius);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
width: $spinner-width;
height: $spinner-height;
vertical-align: $spinner-vertical-align;
border: $spinner-border-width solid currentColor;
border: $spinner-border-width solid currentcolor;
border-right-color: transparent;
// stylelint-disable-next-line property-disallowed-list
border-radius: 50%;
Expand Down Expand Up @@ -43,7 +43,7 @@
width: $spinner-width;
height: $spinner-height;
vertical-align: $spinner-vertical-align;
background-color: currentColor;
background-color: currentcolor;
// stylelint-disable-next-line property-disallowed-list
border-radius: 50%;
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@
height: 0;
overflow: hidden;
@include transition($transition-collapse);

&.width {
width: 0;
height: auto;
@include transition($transition-collapse-width);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ $caret-spacing: $caret-width * .85 !default;
$transition-base: all .2s ease-in-out !default;
$transition-fade: opacity .15s linear !default;
$transition-collapse: height .35s ease !default;
$transition-collapse-width: width .35s ease !default;

$embed-responsive-aspect-ratios: () !default;
$embed-responsive-aspect-ratios: join(
Expand Down Expand Up @@ -319,7 +320,7 @@ $display-line-height: $headings-line-height !default;
$lead-font-size: $font-size-base * 1.25 !default;
$lead-font-weight: 300 !default;

$small-font-size: 80% !default;
$small-font-size: .875em !default;

$text-muted: $gray-600 !default;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Bootstrap Grid v4.6.1 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors
* Copyright 2011-2022 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Bootstrap Reboot v4.6.1 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Bootstrap Reboot v4.6.2 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors
* Copyright 2011-2022 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Bootstrap v4.6.1 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Bootstrap v4.6.2 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors
* Copyright 2011-2022 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
word-spacing: normal;
line-break: auto;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
'fi': 'Suomi'
'fr': 'Français'
'he': 'עברית'
'hr': 'Hrvatski'
'hu': 'Magyar'
'id': 'Bahasa Indonesia'
'it': 'Italiano'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ go 1.15

require (
github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1
github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.2
github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.3
)
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sitemap:
changefreq: weekly
module:
hugoVersion:
min: '0.123.3'
min: '0.134.1'
extended: true
imports:
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: موقع

- id: paper-conference
- id: pub_paper_conference
translation: ورقة مؤتمر

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location # Location
translation: অবস্থান

- id: paper-conference # Conference paper
- id: pub_paper_conference # Conference paper
translation: সম্মেলন নিবন্ধ

- id: pub_article_journal # Journal article
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Ubicació

- id: paper-conference
- id: pub_paper_conference
translation: Conference paper

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Místo

- id: paper-conference
- id: pub_paper_conference
translation: Materiál ke konferenci

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Lokation

- id: paper-conference
- id: pub_paper_conference
translation: Konference artikel

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Ort

- id: paper-conference
- id: pub_paper_conference
translation: Konferenzpapier

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Τοποθεσία

- id: paper-conference
- id: pub_paper_conference
translation: Conference paper

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Localización

- id: paper-conference
- id: pub_paper_conference
translation: Artículo de conferencia

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Asukoht

- id: paper-conference
- id: pub_paper_conference
translation: Ettekanne

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Kokalekua

- id: paper-conference
- id: pub_paper_conference
translation: Konferentzia-artikulua

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: مکان

- id: paper-conference
- id: pub_paper_conference
translation: مقاله کنفرانسی

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Sijainti

- id: paper-conference
- id: pub_paper_conference
translation: Konferenssijulkaisu

- id: pub_article_journal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: Lieu

- id: paper-conference
- id: pub_paper_conference
translation: Article de conférence

- id: pub_article_journal
Expand Down Expand Up @@ -262,4 +262,4 @@
# Published with

- id: published_with
translation: Publié avec {hugoblox} — le générateur {repo_link}libre{/repo_link} de site web gratuit permetant aux créateurs de s'épanouir.
translation: Publié avec {hugoblox} — le générateur {repo_link}libre{/repo_link} de site web gratuit permettant aux créateurs de s'épanouir.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
- id: location
translation: מיקום

- id: paper-conference
- id: pub_paper_conference
translation: נייר ועידה

- id: pub_article_journal
Expand Down
Loading

0 comments on commit b300853

Please sign in to comment.