Skip to content

Commit

Permalink
overhaul to quarto
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelvy committed Jul 31, 2023
1 parent 78e7a7d commit 9d52954
Show file tree
Hide file tree
Showing 11 changed files with 97 additions and 167 deletions.
47 changes: 0 additions & 47 deletions 00template/README.Rmd

This file was deleted.

11 changes: 1 addition & 10 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,4 @@ Depends: R (>= 3.6.0)
License: CC-BY-SA
Encoding: UTF-8
Imports:
rmarkdown,
knitr,
yaml,
tidyverse,
devtools,
roxygen2,
here
Remotes:
rstudio/fontawesome,
rstudio/rmarkdown
rmarkdown
5 changes: 1 addition & 4 deletions LICENSE.Rmd → LICENSE.qmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
---
title: "Licensing and copyright information"
output:
html_document:
number_sections: false
toc: no
toc: false
---

The course material is licensed under the
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ knitr::opts_chunk$set(

### Description

```{r child = '_description.Rmd'}
```{r child = '_description.qmd'}
```

### Acknowledgments
Expand Down
File renamed without changes.
69 changes: 69 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
project:
type: website
output-dir: docs
preview:
port: 5896
browser: true
render:
- "*.qmd"
resources:
- "showcase/"

website:
title: "Intro to Programming for Analytics"
site-url: https://p4a.seas.gwu.edu/
favicon: images/favicon.ico
repo-url: https://github.com/emse-p4a-gwu/
description: 'Course website for the EMSE course "Exploratory Data Analysis" at GWU'
search: true
open-graph:
locale: es_ES
site-name: https://p4a.seas.gwu.edu/
twitter-card:
creator: "@johnhelveston"
site: "@johnhelveston"
image: "images/logo_square.png"
card-style: summary
navbar:
title: ""
left:
- text: ""
icon: fas fa-home
href: index.html
menu:
- text: "Fall 2019"
href: http://p4a.seas.gwu.edu/2019-Fall/
- text: "Fall 2020"
href: http://p4a.seas.gwu.edu/2020-Fall/
- text: "Spring 2022"
href: http://p4a.seas.gwu.edu/2022-Spring/
- text: "Spring 2023"
href: http://p4a.seas.gwu.edu/2023-Spring/
right:
- icon: list
menu:
- text: About
icon: question-circle-fill
href: about.qmd
- text: License
icon: award-fill
href: LICENSE.qmd
- text: Contact
icon: envelope-fill
href: mailto:[email protected]
- text: Source files
icon: github
href: https://github.com/emse-p4a-gwu/
page-footer:
center:
- text: '<a href="https://p4a.seas.gwu.edu/LICENSE.html">LICENSE: CC-BY-SA <i class="fab fa-creative-commons"></i><i class="fab fa-creative-commons-by"></i><i class="fab fa-creative-commons-sa"></i></a>'

format:
html:
theme: cyborg
css: styles.css
anchor-sections: true
smooth-scroll: true
link-external-newwindow: true
link-external-icon: false
include-in-header: "_includes/header.html"
54 changes: 0 additions & 54 deletions _site.yml

This file was deleted.

5 changes: 1 addition & 4 deletions about.Rmd → about.qmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
---
title: "About"
output:
html_document:
number_sections: false
toc: no
toc: false
---

This course was inspired by many other courses / resources that cover similar material. In addition to my own developed material, I have also modified material from other courses and workshops - a full list of sources can be found in the [LICENSE](LICENSE.html) page.
Expand Down
46 changes: 0 additions & 46 deletions index.Rmd

This file was deleted.

24 changes: 24 additions & 0 deletions index.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: 'EMSE 4571: Intro to Programming for Analytics'
---

<br>

::: {.grid}

::: {.g-col-3}

<img src="images/logo.png" width="200">

:::

::: {.g-col-9}

```{r child = '_description.qmd'}
```

Choose from the menu to view the course site for a particular semester or to view the showcase of prior student projects.

:::

:::
1 change: 0 additions & 1 deletion render.R
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
rmarkdown::render_site()
rmarkdown::render(input = 'README.Rmd', output_format = 'github_document')

0 comments on commit 9d52954

Please sign in to comment.