Skip to content

Commit b300853

Browse files
update to latest hugo version
1 parent 3c1d128 commit b300853

177 files changed

Lines changed: 4087 additions & 2033 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: Rscript -e 'install.packages(c("rmarkdown","blogdown", "remotes"))'
2626

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

3030
- name: Build site with blogdown
3131
run: Rscript -e "blogdown::build_site()"

RealityBending.github.io.Rproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Version: 1.0
2+
ProjectId: 2d7e7739-7179-4beb-b9ec-27a35f0884b4
23

34
RestoreWorkspace: Default
45
SaveWorkspace: Default

config/_default/config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ module:
3636

3737
enableGitInfo: false
3838
summaryLength: 30
39-
paginate: 30
39+
pagination:
40+
pagerSize: 10
4041
enableEmoji: true
4142
enableRobotsTXT: true
4243
footnotereturnlinkcontents: <sup>^</sup>

content/jobs/phd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ Note that these are general guidelines that also apply to other contexts (master
144144

145145
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.
146146

147-
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.
147+
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.
148148

149149
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.

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-analytics/layouts/partials/blox-analytics/verification.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@
1919
{{- with site.Params.marketing.verification.baidu -}}
2020
<meta name="baidu-site-verification" content="{{ . }}" />
2121
{{- end -}}
22+
23+
{{ with site.Params.marketing.verification.naver }}
24+
<meta name="naver-site-verification" content="{{ . }}" />
25+
{{- end -}}

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/assets/css/libs/fontawesome/all.min.css

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/assets/js/_vendor/bootstrap.bundle.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/assets/scss/_vendor/bootstrap/_custom-forms.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
display: block;
1414
min-height: $font-size-base * $line-height-base;
1515
padding-left: $custom-control-gutter + $custom-control-indicator-size;
16-
color-adjust: exact; // Keep themed appearance for print
16+
print-color-adjust: exact; // Keep themed appearance for print
1717
}
1818

1919
.custom-control-inline {
@@ -91,7 +91,7 @@
9191
pointer-events: none;
9292
content: "";
9393
background-color: $custom-control-indicator-bg;
94-
border: $custom-control-indicator-border-color solid $custom-control-indicator-border-width;
94+
border: $custom-control-indicator-border-width solid $custom-control-indicator-border-color;
9595
@include box-shadow($custom-control-indicator-box-shadow);
9696
}
9797

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/assets/scss/_vendor/bootstrap/_nav.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,13 @@
3737

3838
.nav-link {
3939
margin-bottom: -$nav-tabs-border-width;
40+
background-color: transparent;
4041
border: $nav-tabs-border-width solid transparent;
4142
@include border-top-radius($nav-tabs-border-radius);
4243

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

@@ -73,6 +76,8 @@
7376

7477
.nav-pills {
7578
.nav-link {
79+
background: none;
80+
border: 0;
7681
@include border-radius($nav-pills-border-radius);
7782
}
7883

themes/github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/assets/scss/_vendor/bootstrap/_spinners.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
width: $spinner-width;
1212
height: $spinner-height;
1313
vertical-align: $spinner-vertical-align;
14-
border: $spinner-border-width solid currentColor;
14+
border: $spinner-border-width solid currentcolor;
1515
border-right-color: transparent;
1616
// stylelint-disable-next-line property-disallowed-list
1717
border-radius: 50%;
@@ -43,7 +43,7 @@
4343
width: $spinner-width;
4444
height: $spinner-height;
4545
vertical-align: $spinner-vertical-align;
46-
background-color: currentColor;
46+
background-color: currentcolor;
4747
// stylelint-disable-next-line property-disallowed-list
4848
border-radius: 50%;
4949
opacity: 0;

0 commit comments

Comments
 (0)