Skip to content

Commit

Permalink
Updating links
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Aug 19, 2024
1 parent baa99a8 commit f37b904
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,4 @@ libs
*.gz
*.docx
*.xlsx
lectures/*/*.html
labs/*/*.html
lectures/*/*.pdf
labs/*/*.pdf
_site
8 changes: 4 additions & 4 deletions README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ embed-resources: true

# PHS 7045: Advanced Programming

Welcome to Advanced Programming in R and HPC! You can find the syllabus [here](syllabus.md). Readings for the week can be found in the GitHub issues associated with them.
Welcome to Advanced Programming in R and HPC! You can find the syllabus [here](https://github.com/UofUEpiBio/PHS7045-advanced-programming/tree/main/syllabus.md). Readings for the week can be found in the GitHub issues associated with them.

## Contents

Expand Down Expand Up @@ -39,7 +39,7 @@ for (i in 1:nrow(dat)) {
Title = fifelse(
!is.na(issue),
sprintf(
"%s (Issue [%i](%s/issues/%i))",
"%s (Issue [%i](%s/issues/%i){target=\"_blank\"})",
name, issue, urlgit, issue
),
sprintf("%s", name)
Expand All @@ -48,15 +48,15 @@ for (i in 1:nrow(dat)) {
# Lecture links
Lecture = if (has_lecture & has_lecture_source) {
sprintf(
"[slides](%s/%s/slides.html) ([source](%s/tree/main/%s/slides.qmd))",
"[slides](%s/%s/slides.html){target=\"_blank\"} ([source](%s/tree/main/%s/slides.qmd){target=\"_blank\"})",
urlraw, id, urlgit, id
)
} else {""},
# Lab links
Lab = if (has_lab & has_lab_source) {
sprintf(
"[lab](%s/%s/lab.html) ([source](%s/tree/main/%s/lab.qmd))",
"[lab](%s/%s/lab.html){target=\"_blank\"} ([source](%s/tree/main/%s/lab.qmd){target=\"_blank\"})",
urlraw, id, urlgit, id
)
} else {""}
Expand Down
4 changes: 3 additions & 1 deletion syllabus.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Syllabus Advanced Programming<br>(Spring 2023)
# Syllabus Advanced Programming<br>(Spring 2024)

ALERT: This syllabus is a draft and is subject to change.

## Description

Expand Down

0 comments on commit f37b904

Please sign in to comment.