-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c796109
commit 72c053d
Showing
4 changed files
with
47 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,43 +14,49 @@ ignoreFiles = ["\\.qmd$", "\\.ipynb$", "\\.Rmd$", "\\.Rmarkdown$", "_cache$", "i | |
introtag = "introduction" | ||
intro = "PhD Candidate in Brain Imaging & Genetics, Data Scientist within Anti-Money Laundering at DNB" | ||
|
||
favicon = "images/avatar.png" # default sns thumbnail | ||
favicon = "avatar.png" | ||
|
||
description = "Daniel Roelfs' personal website" # Site description. | ||
keywords = "blog,personal,coding" # Site keywords. | ||
avatarurl = "images/avatar.png" # Contain the path of the optional avatar in the static folder. | ||
iconsource = "simple-icons" | ||
|
||
description = "Daniel Roelfs' personal website" | ||
keywords = "blog, personal, coding" | ||
|
||
customcss = ["custom_style.css"] | ||
|
||
# Social links | ||
[[params.social]] | ||
name = "Twitter" | ||
icon = "twitter" | ||
weight = 1 | ||
url = "https://twitter.com/dthroelfs/" | ||
[[params.social]] | ||
name = "GitHub" | ||
icon = "github" | ||
weight = 2 | ||
weight = 1 | ||
url = "https://github.com/danielroelfs/" | ||
[[params.social]] | ||
name = "Twitter" | ||
icon = "x" | ||
weight = 2 | ||
url = "https://twitter.com/dthroelfs/" | ||
[[params.social]] | ||
name = "ORCID" | ||
icon = "user" | ||
icon = "orcid" | ||
weight = 3 | ||
url = "https://orcid.org/0000-0002-1083-002X" | ||
[[params.social]] | ||
name = "Google Scholar" | ||
icon = "book-open" | ||
icon = "googlescholar" | ||
weight = 4 | ||
url = "https://scholar.google.com/citations?user=QmVQcsAAAAAJ&hl=en" | ||
[[params.social]] | ||
name = "LinkedIn" | ||
icon = "linkedin" | ||
weight = 5 | ||
url = "https://www.linkedin.com/in/danielroelfs/" | ||
[[params.social]] | ||
name = "GoodReads" | ||
icon = "goodreads" | ||
weight = 6 | ||
url = "mailto:[email protected]" | ||
[[params.social]] | ||
name = "Mail" | ||
icon = "mail" | ||
icon = "minutemailer" | ||
weight = 7 | ||
url = "mailto:[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule typography
updated
9 files
+1 −1 | .github/workflows/build-site.yaml | |
+44 −0 | .github/workflows/test-build.yaml | |
+39 −29 | exampleSite/config.toml | |
+7 −0 | layouts/_default/single.html | |
+25 −5 | layouts/index.html | |
+2 −2 | layouts/partials/footer.html | |
+4 −0 | layouts/partials/head.html | |
+6 −2 | layouts/partials/script.html | |
+80 −12 | static/css/style.css |