-
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
Showing
11 changed files
with
97 additions
and
167 deletions.
There are no files selected for viewing
This file was deleted.
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
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
File renamed without changes.
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,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" |
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,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. | ||
|
||
::: | ||
|
||
::: |
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
rmarkdown::render_site() | ||
rmarkdown::render(input = 'README.Rmd', output_format = 'github_document') |