https://yihui.name/en/2017/06/netlify-instead-of-github-pages/
Download the workshop bundle materials from my github repo: https://github.com/apreshill/blogdown-workshop
blogdown
was released on CRAN this week!
install.packages("blogdown")
blogdown
was released on CRAN this week!
install.packages("blogdown")
Or use the development version:
if (!requireNamespace("devtools")) install.packages("devtools")devtools::install_github("rstudio/blogdown")
blogdown::install_hugo()# orlibrary(blogdown)install_hugo()
blogdown::install_hugo()# orlibrary(blogdown)install_hugo()
Other relevant functions:
blogdown::update_hugo() # force an updateblogdown::hugo_version() # check version
You are recommended to use the RStudio IDE, but you do not have to.
File -> New Project -> New Directory
https://bookdown.org/yihui/blogdown/rstudio-ide.html#fig:project-options
https://blog.rstudio.com/2017/09/13/rstudio-v1.1---the-little-things/
Note: you'll be able to install Hugo automatically if you use this method.
blogdown::new_site()
blogdown::new_site()
blogdown::new_site(theme = "gcushen/hugo-academic", theme_example = TRUE)
blogdown::new_site()
blogdown::new_site(theme = "gcushen/hugo-academic", theme_example = TRUE)
blogdown::install_theme("gcushen/hugo-academic", theme_example = TRUE, update_config = TRUE)
https://gohugo.io/getting-started/directory-structure/
Know your way around:
.├── archetypes├── config.toml├── content├── data├── layouts├── public├── static└── themes
content/
means a directory named content instead of a file named content..├── archetypes├── config.toml├── content| └── posts├── data├── layouts├── public├── static└── themes
/static/css/style.css
means the file static/css/style.css
under the root directory of your website project instead of your operating system..├── archetypes├── config.toml├── content ├── data├── layouts├── public├── static| └── css| └── style.css└── themes
https://gohugo.io/themes/customizing/
When you use a theme cloned from its git repository, do not edit the theme’s files directly. Instead, theme customization in Hugo is a matter of overriding the templates made available to you in a theme. This provides the added flexibility of tweaking a theme to meet your needs while staying current with a theme’s upstream.
https://gohugo.io/themes/customizing/
When you use a theme cloned from its git repository, do not edit the theme’s files directly. Instead, theme customization in Hugo is a matter of overriding the templates made available to you in a theme. This provides the added flexibility of tweaking a theme to meet your needs while staying current with a theme’s upstream.
Note which folders are empty at the top level of your project:
.├── archetypes├── config.toml├── content├── data├── layouts├── public├── static└── themes
blogdown::serve_site()
blogdown::serve_site()
https://bookdown.org/yihui/blogdown/a-quick-example.html
Edit + save triggers
Blocks your console by design
https://bookdown.org/yihui/blogdown/a-quick-example.html
Edit + save triggers
Blocks your console by design
Don't try to view in your teeny tiny RStudio viewer; click: Show in new window
Starting now, the numbers of each file will correspond to which edit we are working on.
The logo file belongs in the /static/
directory:
/static/
stores all the static content for your future website: images, CSS, JavaScript, etc. When Hugo builds your site, all assets inside your static directory are copied over as-is.
https://gohugo.io/getting-started/directory-structure/
The logo file belongs in the /static/
directory:
/static/
stores all the static content for your future website: images, CSS, JavaScript, etc. When Hugo builds your site, all assets inside your static directory are copied over as-is.
https://gohugo.io/getting-started/directory-structure/
01-images
folder to /static/
The logo file belongs in the /static/
directory:
/static/
stores all the static content for your future website: images, CSS, JavaScript, etc. When Hugo builds your site, all assets inside your static directory are copied over as-is.
https://gohugo.io/getting-started/directory-structure/
Move 01-images
folder to /static/
Rename folder images
(so now you have a static/images/
folder with 2 .png files in it)
The logo file belongs in the /static/
directory:
/static/
stores all the static content for your future website: images, CSS, JavaScript, etc. When Hugo builds your site, all assets inside your static directory are copied over as-is.
https://gohugo.io/getting-started/directory-structure/
Move 01-images
folder to /static/
Rename folder images
(so now you have a static/images/
folder with 2 .png files in it)
Update config.toml
and save
[params.logo] url = "rladies-r-logo.png" width = 50 height = 50 alt = "Logo"
Yes!
Yes!
We saw:
/themes/<THEME>/static/images/logo.png
Yes!
We saw:
/themes/<THEME>/static/images/logo.png
Could be overwritten by:
/static/images/<rladies-r-logo.png>
Yes!
We saw:
/themes/<THEME>/static/images/logo.png
Could be overwritten by:
/static/images/<rladies-r-logo.png>
The filename <rladies-r-logo.png>
could have been anything, because there is a place to specify the url in the config.toml
file
This only works for templates that Hugo “knows about” (i.e., that follow its convention for folder structure and naming). If a theme imports template files in a creatively named directory, Hugo won’t know to look for the local /layouts first.
https://gohugo.io/themes/customizing/
02-about.md
file to /content/
Move 02-about.md
file to /content/
Delete the existing file about.md
Move 02-about.md
file to /content/
Delete the existing file about.md
Rename 02-about.md
--> about.md
1
[1] you should still have LiveReLoad running...
Yes!
/content/
stores all content for your website... Each top-level folder in Hugo is considered a content section. For example, if your site has two main sections—blog posts and your about page— you will have 1 directory atcontent/post/
and 1 filecontent/about.md
.
https://gohugo.io/getting-started/directory-structure/
Yes!
/content/
stores all content for your website... Each top-level folder in Hugo is considered a content section. For example, if your site has two main sections—blog posts and your about page— you will have 1 directory atcontent/post/
and 1 filecontent/about.md
.
https://gohugo.io/getting-started/directory-structure/
.├── archetypes├── config.toml├── content| └── post <<- path: `baseurl/post/` | └── about.md <<- path: `baseurl/about/`├── data├── layouts├── public├── static└── themes
config.toml
fileTop of your config.toml
file
Note the last line 😉
baseurl = "/"languageCode = "en-us"title = "R-Ladies PDX" theme = "hugo-lithium-theme"googleAnalytics = ""disqusShortname = ""ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]enableEmoji = true
Top of your config.toml
file
Note the last line 😉
baseurl = "/"languageCode = "en-us"title = "R-Ladies PDX" theme = "hugo-lithium-theme"googleAnalytics = ""disqusShortname = ""ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]enableEmoji = true
Yes!
Often the default settings are good enough, but the config file can provide highly granular control over how your site is rendered.
https://gohugo.io/getting-started/configuration/
Go to the All Variables, TOML section for the full list
Yes!
Often the default settings are good enough, but the config file can provide highly granular control over how your site is rendered.
https://gohugo.io/getting-started/configuration/
Go to the All Variables, TOML section for the full list
Note that the values nested under [params]
will populate the .Site.Params
variable for use in templates (more on this later)
In your config.toml
file:
[[menu.main]] name = "About" url = "/about/" weight = 1[[menu.main]] name = "Meetups" url = "https://www.meetup.com/R-Ladies-PDX/" weight = 2[[menu.main]] name = "Twitter" url = "https://twitter.com/RLadiesPDX" weight = 3
Yes!
The [[menu.main]]
in your config
file is special:
A menu entry in a menu template has specific variables and functions to make menu management easier.
https://gohugo.io/variables/menus/
/static/
create a new directory css
In /static/
create a new directory css
Move 05-rladies.css
file to /static/css/
In /static/
create a new directory css
Move 05-rladies.css
file to /static/css/
Rename 05-rladies.css
--> rladies.css
In /static/
create a new directory css
Move 05-rladies.css
file to /static/css/
Rename 05-rladies.css
--> rladies.css
In config.toml
, add last line: 1
[params] description = "A website built through Hugo and blogdown." customCSS = ["css/rladies.css"]
[1] how did I know the name of this parameter? 🕵🏽
/themes/
Yes!
Yes!
We saw:
/themes/<THEME>/static/css/main.css
Yes!
We saw:
/themes/<THEME>/static/css/main.css
Could be overwritten by style rules present in:
/static/<css/rladies.css>
Yes!
We saw:
/themes/<THEME>/static/css/main.css
Could be overwritten by style rules present in:
/static/<css/rladies.css>
The directory/filename <css/rladies.css>
could have been anything, because there is a place to specify the url in the config.toml
file
About Font Awesome:
Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
About Font Awesome:
Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
Go here to enter your email address and receive a Font Awesome embed code. We'll use mine for demo tonight.
About Font Awesome:
Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
Go here to enter your email address and receive a Font Awesome embed code. We'll use mine for demo tonight.
To use them, you need 2 things:
You know the drill now- always remove my numbers, ##-
, that are prepended to filename
font-awesome.min.css
to /static/css/
You know the drill now- always remove my numbers, ##-
, that are prepended to filename
Move font-awesome.min.css
to /static/css/
Create a new directory in layouts/
called partials
You know the drill now- always remove my numbers, ##-
, that are prepended to filename
Move font-awesome.min.css
to /static/css/
Create a new directory in layouts/
called partials
Move other head_custom.html
and nav.html
to /layouts/partials/
You know the drill now- always remove my numbers, ##-
, that are prepended to filename
Move font-awesome.min.css
to /static/css/
Create a new directory in layouts/
called partials
Move other head_custom.html
and nav.html
to /layouts/partials/
Note that you can use the icons anywhere, for example, you could add them to your About page:
For more information, contact us at <i class="fa fa-envelope-open" aria-hidden="true"></i><mailto:pdx@rladies.org>.
For more information, contact us at pdx@rladies.org.
Make changes to these sections in your config.toml
:
[[menu.main]] name = "About" pre = "" url = "/about/" weight = 1[[menu.main]] name = "Meetups" pre = "fa-meetup" url = "https://www.meetup.com/R-Ladies-PDX/" weight = 2[[menu.main]] name = "Twitter" pre = "fa-twitter" url = "https://twitter.com/RLadiesPDX" weight = 3[params] description = "A website built through Hugo and blogdown." customCSS = ["css/rladies.css", "css/font-awesome.min.css"]
...
...
Yes!
We saw:
/themes/<THEME>/layouts/partials/*<PARTIALNAME>.html
...
Yes!
We saw:
/themes/<THEME>/layouts/partials/*<PARTIALNAME>.html
Could be overwritten by:
/layouts/partials/*<PARTIALNAME>.html
...
Yes!
We saw:
/themes/<THEME>/layouts/partials/*<PARTIALNAME>.html
Could be overwritten by:
/layouts/partials/*<PARTIALNAME>.html
The <PARTIALNAME>
s must match; unless you want to edit how the partials are called within your templates:
{{ partial "<PATH>/<PARTIAL>.html" . }}
https://gohugo.io/templates/partials/
https://gohugo.io/templates/homepage/
The lookup order for the homepage template is as follows:
/layouts/index.html/layouts/_default/list.html/themes/<THEME>/layouts/index.html/themes/<THEME>/layouts/_default/list.html
https://gohugo.io/templates/homepage/
The lookup order for the homepage template is as follows:
/layouts/index.html/layouts/_default/list.html/themes/<THEME>/layouts/index.html/themes/<THEME>/layouts/_default/list.html
Which file on our site is currently serving as the homepage template?
index.html
?Where should we move the file index.html
?
Move index.html
--> /layouts/
1
[1] NOT to /layouts/partials/
Edit the config.toml
file
[params] description = "R-Ladies PDX is part of a world-wide organization to promote gender diversity in the R community. <br> To find more details about the R-Ladies global initiative, visit [rladies.org](https://rladies.org)." chapter = "Portland, Oregon" customCSS = ["css/rladies.css", "css/font-awesome.min.css"]
Edit the config.toml
file
[params] description = "R-Ladies PDX is part of a world-wide organization to promote gender diversity in the R community. <br> To find more details about the R-Ladies global initiative, visit [rladies.org](https://rladies.org)." chapter = "Portland, Oregon" customCSS = ["css/rladies.css", "css/font-awesome.min.css"]
Note that the chapter parameter is new. Now, this is a variable that can be referenced in templates as:
{{ .Site.Params.Chapter }}
Yes!
We saw that, even when there is no file here:
/themes/<THEME>/layouts/index.html
Yes!
We saw that, even when there is no file here:
/themes/<THEME>/layouts/index.html
We can make one here that serves as the homepage:
/layouts/index.html
Yes!
We saw that, even when there is no file here:
/themes/<THEME>/layouts/index.html
We can make one here that serves as the homepage:
/layouts/index.html
The filename index.html
has special status in Hugo, and is not a partial layout template.
You could also force a homepage by creating an _index.md
file that lives at the root of your /content/
folder (i.e., /content/_index.md
)
https://gohugo.io/templates/homepage/
How can we get them back? Ideas?
How can we get them back? Ideas?
Try adding this in the config.toml
file:
[[menu.main]] name = "Twitter" pre = "fa-twitter" url = "https://twitter.com/RLadiesPDX" weight = 3[[menu.main]] name = "News" pre = "fa-bullhorn" url = "/post/" weight = 4
Yes!
Yes!
While Hugo supports content nested at any level, the top levels (i.e.
/content/<DIRECTORIES>
) are special in Hugo
https://gohugo.io/content-management/organization/
Yes!
While Hugo supports content nested at any level, the top levels (i.e.
/content/<DIRECTORIES>
) are special in Hugo
https://gohugo.io/content-management/organization/
Without any additional configuration, the following will just work:
.└── content └── post ├── firstpost.md <<- https://example.com/post/firstpost/ └── happy └── ness.md <<- https://example.com/post/happy/ness/
/public/
. The publishing directory is by default /public/
.
Each time you serve your site locally, Hugo will generate your website to /public/
.
The publishing directory is by default /public/
.
Each time you serve your site locally, Hugo will generate your website to /public/
.
You can upload everything under /public/
to any web server that can serve static websites, and your website will be up and running.
The publishing directory is by default /public/
.
Each time you serve your site locally, Hugo will generate your website to /public/
.
You can upload everything under /public/
to any web server that can serve static websites, and your website will be up and running.
You could also use a continuous deployment service. When linked to a git repository, any git push triggers an automatic fresh deployment.
https://gohugo.io/hosting-and-deployment/hosting-on-netlify/
The publishing directory is by default /public/
.
Each time you serve your site locally, Hugo will generate your website to /public/
.
You can upload everything under /public/
to any web server that can serve static websites, and your website will be up and running.
You could also use a continuous deployment service. When linked to a git repository, any git push triggers an automatic fresh deployment.
https://gohugo.io/hosting-and-deployment/hosting-on-netlify/
public/
to your list of files for git to ignoreThis was the original site name: shepherd-brushes-37154
On Netlify, go into General -> Site details -> Site information -> Change site name
and update
Top of your config.toml
baseurl = "https://rladies-pdx.rbind.io/"
On Netlify, go into Domain settings -> Custom domain
and update
A minimal website example using blogdown Site: https://blogdown-demo.netlify.com GitHub: https://github.com/apreshill/blogdown-demo
Includes using citations in posts, including Rmd files of other output formats, and embedding htmlwidgets in posts
View the actual demo site: https://rladies-pdx.netlify.com
More on posting here: https://apreshill.rbind.io/post/up-and-running-with-blogdown/#build-your-site-in-rstudio
And here: https://bookdown.org/yihui/blogdown/output-format.html
To Yihui and RStudio for the blogdown package
To Yihui and Amber for inviting me to be a co-author on the blogdown book
To the rbind
group for awesome support
To the R-Ladies PDX organizers, Augustina and Deeksha, for allowing me to use them as a guinea pig- join the R-Ladies PDX meetup group!
Slides created via the R package xaringan.
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |