forked from nmfs-opensci/NOAA-branded-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
36 lines (24 loc) · 752 Bytes
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
title: ""
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Level 1
The file `_site.yml` specifies the look and nav bar structure. A footer can be added to that file in which case the same footer is added to each page. If you don't want that, then you can delete the `footer.html` bit in `_site.yml` and instead add this code at the end of each Rmd file.
```{r child="footerrmd.Rmd"}
```
## Level 2
Some information and a link. <http://rmarkdown.rstudio.com>.
Give installation instructions:
```
remotes::install_github("username/repo")
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
```{r child="disclaimer.Rmd"}
```