-
Notifications
You must be signed in to change notification settings - Fork 33
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
Showing
4 changed files
with
72 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
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
title: Practical Info | ||
subtitle: Venue, address, travel and contact information | ||
toc: false | ||
number-sections: false | ||
sidebar: false | ||
code-tools: false | ||
format: html | ||
--- | ||
|
||
```{r} | ||
#| eval: true | ||
#| include: false | ||
library(yaml) | ||
library(here) | ||
library(leaflet) | ||
library(readxl) | ||
# Set location in _quarto.yml | ||
loc <- sapply(unlist(strsplit(yaml::read_yaml(here("_quarto.yml"))$location,";|,")),trimws) | ||
dfr <- readxl::read_xlsx("info.xlsx") | ||
``` | ||
|
||
## Location | ||
|
||
```{r} | ||
#| echo: false | ||
#| eval: true | ||
#| results: "asis" | ||
cat("\n::: {.panel-tabset}\n") | ||
for (i in seq_along(loc)) { | ||
p <- loc[i] | ||
cat(paste0("\n### ", tools::toTitleCase(p), "\n")) | ||
if(p %in% dfr$location){ | ||
dfr1 <- dfr[dfr$location %in% p, , drop = FALSE] | ||
dfr1$address <- gsub(",", "<br>", dfr1$address) | ||
icons <- awesomeIcons(icon = dfr1$marker_icon, markerColor = dfr1$marker_colour, iconColor = "#FFFFFF", library = "fa") | ||
if(p != "online") { | ||
cat(knitr::knit_child(input = "assets/_child-info.qmd", envir = environment(), quiet = TRUE)) | ||
cat("\n") | ||
cat("\n", dfr1$address[1], "\n") | ||
} | ||
cat("\n", dfr1$description[1]) | ||
}else{ | ||
cat("No additional information is provided.") | ||
} | ||
cat("\n") | ||
} | ||
cat(":::\n") | ||
``` | ||
|
||
## Contact | ||
|
||
This workshop is run by the **National Bioinformatics Infrastructure Sweden | ||
(NBIS)**. NBIS is a platform at [SciLifeLab](https://www.scilifelab.se/) | ||
(Science For Life Laboratory) and the Swedish node of | ||
[Elixir](https://elixir-europe.org/). | ||
|
||
If you would like to get in touch with us regarding this workshop, please contact us at **edu.trr [at] nbis.se**. | ||
|
||
*** | ||
|
||
![](assets/logos/nbis-scilifelab.svg){height="26px"} |