Skip to content
Snippets Groups Projects
Commit f097dd16 authored by Simona Doneva's avatar Simona Doneva
Browse files

added a few extra lines on how to modify

parent 7ddd1d76
No related branches found
No related tags found
No related merge requests found
Pipeline #341922 passed
......@@ -211,7 +211,29 @@ After a few seconds-minutes it should turn green for a successful deployment and
![6.deployment_done.png](docu_screenshots%2F6.deployment_done.png)
## Adding new content (news, people, publications, research areas)
To add new content, it is best to work with a clone of the github repository. There are many ways to work with Quarto and a common one is using RStudio. [Here](https://quarto.org/docs/get-started/hello/rstudio.html) you can get instructions to get started. The basic steps are:
1. Install RStudio.
2. Be sure that you have installed the tidyverse and palmerpenguins packages:
```
install.packages("tidyverse")
install.packages("palmerpenguins")
```
3. Open a .qmd file with RStudio.
4. Make the needed updates.
5. Test the changes by running from the button "Render" or with the command in the Console:
```
quarto::quarto_preview()
```
6. Commit to the Git repository.
The easiest approach for adding new content for news, people, publications and research areas is to duplicate the folder of an existing element, rename it, and modify its contents as needed.
As long as the keys in the new .qmd file remain unchanged and only the values are modified, the element will be read correctly.
For example when adding a new person, we would need to update these elements:
- **Title, Last, First, and Author ID**: Update with the new person's full name and unique identifier. The unique identifier should be the same used in the authors list of publications.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment