-
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
c7dfa8f
commit f3306b0
Showing
18 changed files
with
278 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: main | ||
|
||
name: Quarto Publish | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Render and Publish | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# History files | ||
.Rhistory | ||
.Rapp.history | ||
|
||
# Session Data files | ||
.RData | ||
.RDataTmp | ||
|
||
# User-specific files | ||
.Ruserdata | ||
|
||
# Example code in package build process | ||
*-Ex.R | ||
|
||
# Output files from R CMD build | ||
/*.tar.gz | ||
|
||
# Output files from R CMD check | ||
/*.Rcheck/ | ||
|
||
# RStudio files | ||
.Rproj.user/ | ||
|
||
# produced vignettes | ||
vignettes/*.html | ||
vignettes/*.pdf | ||
|
||
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 | ||
.httr-oauth | ||
|
||
# knitr and R markdown default cache directories | ||
*_cache/ | ||
/cache/ | ||
|
||
# Temporary files created by R markdown | ||
*.utf8.md | ||
*.knit.md | ||
|
||
# R Environment Variables | ||
.Renviron | ||
|
||
# pkgdown site | ||
docs/ | ||
|
||
# translation temp files | ||
po/*~ | ||
|
||
# RStudio Connect folder | ||
rsconnect/ | ||
|
||
/.quarto/ | ||
|
||
.Rproj.user | ||
.DS_Store | ||
.Rhistoryt | ||
.Rhistory | ||
/.quarto/ | ||
/_*.local | ||
/.venv/ | ||
/.condaenv/ | ||
*_cache/ | ||
/env/ | ||
/_site/ | ||
|
||
|
||
/.luarc.json |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Version: 1.0 | ||
|
||
RestoreWorkspace: Default | ||
SaveWorkspace: Default | ||
AlwaysSaveHistory: Default | ||
|
||
EnableCodeIndexing: Yes | ||
UseSpacesForTab: Yes | ||
NumSpacesForTab: 2 | ||
Encoding: UTF-8 | ||
|
||
RnwWeave: Sweave | ||
LaTeX: pdfLaTeX |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# MtG_webpage | ||
MtG webpage |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"hash": "383c1d07ec26b9212362d709a7d8f3c4", | ||
"result": { | ||
"markdown": "---\ntitle: \"About\"\n---\n\n\nAbout this site\n\n\n::: {.cell}\n\n```{.r .cell-code}\n1 + 1\n```\n\n::: {.cell-output .cell-output-stdout}\n```\n[1] 2\n```\n:::\n:::\n", | ||
"supporting": [], | ||
"filters": [ | ||
"rmarkdown/pagebreak.lua" | ||
], | ||
"includes": {}, | ||
"engineDependencies": {}, | ||
"preserve": {}, | ||
"postProcess": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
project: | ||
type: website | ||
|
||
execute: | ||
freeze: auto | ||
|
||
website: | ||
navbar: | ||
background: primary | ||
search: true | ||
left: | ||
- href: index.qmd | ||
text: "Home" | ||
- href: subpages/ppl.qmd | ||
text: "People" | ||
- href: subpages/student_projects.qmd | ||
text: "Student projects" | ||
- href: subpages/science.qmd | ||
text: "Science" | ||
- href: subpages/software.qmd | ||
text: "Software" | ||
- href: subpages/pub.qmd | ||
text: "Publications" | ||
- href: subpages/teaching.qmd | ||
text: "Teaching" | ||
- href: subpages/archive.qmd | ||
text: "Archives and repositories" | ||
- about.qmd | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
css: styles.css | ||
toc: false | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "MtG_webpage" | ||
--- | ||
|
||
## Quantifying the completeness of the stratigraphic record and its role in reconstructing the tempo and mode of evolution | ||
|
||
Welcome to the webpage of the project. | ||
We develop numerical models to study the structure of the geological record. | ||
Our goal is to understand how time, environmental and evolutionary events are represented in imperfect, gappy records and to use this knowledge to reconstruct the history of life and palaeoclimate. | ||
|
||
We are funded by the European Union's European Research Council Starting Grant awarded to [Emilia Jarochowska](https://www.uu.nl/staff/EBJarochowska) (2023-2028). | ||
|
||
This project is a consortium composed by [Utrecht University](https://www.uu.nl/en/research/department-of-earth-sciences) and [the Netherlands eScience Center](https://www.esciencecenter.nl/). Some software used and developed in this project is a continuation of [AstroTOM](https://github.com/astro-turing). |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/* css styles */ |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "About" | ||
--- | ||
|
||
About this site | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "archive" | ||
--- | ||
|
||
archives and repositories go here |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
title: "Team" | ||
--- | ||
|
||
__Emilia Jarochowska__ | ||
Principal Investigator | ||
Utrecht University | ||
email: e.b.jarochowska [at] uu.nl | ||
Web page: [www.uu.nl/staff/EBJarochowska](https://www.uu.nl/staff/EBJarochowska) | ||
ORCID: [0000-0001-8937-9405](https://orcid.org/0000-0001-8937-9405) | ||
|
||
__Xianyi Liu__ | ||
Postdoctoral researcher | ||
Utrecht University | ||
email: x.liu6 [at] uu.nl | ||
Web page: [www.uu.nl/staff/XLiu6](https://www.uu.nl/staff/XLiu6) | ||
ORCID: [0000-0002-3851-116X](https://orcid.org/0000-0002-3851-116X) | ||
|
||
__Niklas Hohmann__ | ||
PhD student | ||
Utrecht University | ||
email: n.h.hohmann [at] uu.nl | ||
Web page: [www.uu.nl/staff/NHohmann](https://www.uu.nl/staff/NHHohmann) | ||
ORCID: [0000-0003-1559-1838](https://orcid.org/0000-0003-1559-1838) | ||
|
||
__Hanno Spreeuw__ | ||
Research Software Engineer | ||
Netherlands eScience Center | ||
email: h.spreeuw [at] esciencecenter.nl | ||
Web page: [www.esciencecenter.nl/team/dr-hanno-spreeuw/](https://www.esciencecenter.nl/team/dr-hanno-spreeuw) | ||
ORCID: [0000-0002-5057-0322](https://orcid.org/0000-0002-5057-0322) | ||
|
||
__Johan Hidding__ | ||
Research Software Engineer | ||
Netherlands eScience Center | ||
email: j.hidding [at] esciencecenter.nl | ||
Web page: [www.esciencecenter.nl/team/johan-hidding-msc/](https://www.esciencecenter.nl/team/johan-hidding-msc/) | ||
|
||
__Peter Burgess__ | ||
Collaborator | ||
University of Liverpool | ||
Web page: [www.liverpool.ac.uk/environmental-sciences/staff/peter-burgess](https://www.liverpool.ac.uk/environmental-sciences/staff/peter-burgess/) | ||
ORCID: [0000-0002-3812-4231](https://orcid.org/0000-0002-3812-4231) | ||
|
||
__David De Vleeschouwer__ | ||
Collaborator | ||
Westfälische Wilhelms-Universität Münster | ||
Web page: [www.uni-muenster.de/GeoPalaeontologie/erdsystemforschung/staff/DeVleeschouwer](https://www.uni-muenster.de/GeoPalaeontologie/erdsystemforschung/staff/DeVleeschouwer.html) | ||
ORCID: [0000-0002-3323-807X](https://orcid.org/0000-0002-3323-807X) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "pub" | ||
--- | ||
|
||
|
||
Publications go yeeeey |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "science" | ||
editor: visual | ||
--- | ||
|
||
|
||
Add amazing science here |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "software" | ||
editor: visual | ||
--- | ||
|
||
All the Software goes here |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "Student projects" | ||
--- | ||
|
||
Here is a list of potential student projects in our group: | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "teaching" | ||
--- | ||
|
||
Teaching is fun |