generated from jhudsl/OTTR_Template_Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstructure.Rmd
31 lines (18 loc) · 913 Bytes
/
structure.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
---
title: "Structure"
output: html_document
---
## Title
To change the title of the website, modify the `name` line of the `_site.yml` file.
```{r, fig.align='center', fig.alt= "Change title", echo = FALSE, out.width="40%"}
knitr::include_graphics("resources/images/title.png")
```
## Modifying pages
Pages are specified in the navigation bar by the lines that say `-text:` and `href:`.
The `-text` specifies what the navigation bar will say for that tab.
The `href` specifies which rendered Rmd file to use for that tab, it needs to be the html version of this file.
The tabs are aligned to the left in the order listed.
You can also add icons to these tabs using [font awesome](https://fontawesome.com/) as is shown for the contact page.
```{r, fig.align='center', fig.alt= "Page modification", echo = FALSE, out.width="40%"}
knitr::include_graphics("resources/images/page_modification.png")
```