-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
33 lines (28 loc) · 816 Bytes
/
index.Rmd
File metadata and controls
33 lines (28 loc) · 816 Bytes
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
---
title: "My Distill Website"
description: |
Welcome to the website. I hope you enjoy it!
This is the site created under distill package.
site: distill::distill_website
output:
html_document:
code_folding: show
theme:
bg: "#202123"
fg: "#B8BCC2"
primary: "#EA80FC"
base_font:
google: Prompt
heading_font:
google: Proza Libre
version: 3
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
if (requireNamespace("thematic"))
thematic::thematic_rmd(font = "auto")
# Learn more about creating websites with Distill at:
# https://rstudio.github.io/distill/website.html
# Learn more about publishing to GitHub Pages at:
# https://rstudio.github.io/distill/publish_website.html#github-pages
```