Introduction to Blogdown
Before you start, I recommend reading the following:
blogdown
: Creating Websites with R Markdown by Yihui Xie and Amber Thomas
Also note that I am a macOS user, and I use R, RStudio, Git (usually via GitHub), and terminal regularly, so I’m assuming familiarity here with all of these. If that is not the case, here are some places to get started:
- For Git: Happy Git with R by Jenny Bryan et al.
- For RStudio: DataCamp’s Working with the RStudio IDE (free) by Garrett Grolemund
- For Terminal: The Command Line Murder Mystery by Noah Veltman, and The UNIX Workbench by Sean Kross
I also have Xcode and Homebrew installed- you will probably need these to download Hugo. If you don’t have either but are on a mac, this link may help:
Introduction to static site generators and how domain names work:
GitHub
Go online to your GitHub account, and create a new repository (check to initialize with a
README
but don’t add.gitignore
- this will be taken care of later). For naming your repo, consider your future deployment plan:- If you are going to use Netlify to host the site, you can name this repository anything you want! {{% alert note %}} You can see some of the repo names used by members of the
rbind
organization here. {{% /alert %}} - If you want to host your site as a GitHub Page, you should name your repository
yourgithubusername.github.io
.
- If you are going to use Netlify to host the site, you can name this repository anything you want! {{% alert note %}} You can see some of the repo names used by members of the
Go to the main page of your new repository, and under the repository name, click the green Clone or download button.
In the Clone with HTTPs section, click on the clipboard icon to copy the clone URL for your new repository. You’ll paste this text into terminal in the next section.
Terminal or GitHub Desktop
Now you will clone your remote repository and create a local copy on your computer so you can sync between the two locations (using terminal or your alternative command line tool for a Windows machine). However, I recommend to use GitHub Desktop instead of the terminal for the cloning process. If you instead would like to use the terminal, this is how you proceed:
Use
cd
to navigate into the directory where you want your repo to beOnce there, type:
git clone [paste]
. So my command looked like this:
git clone https://github.com/apreshill/apreshill.git
And this is what printed to the terminal window:
Cloning into 'apreshill'...
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
Checking connectivity... done.
- Close terminal, you are done in there.
RStudio
- Install
blogdown
from your RStudio console. If you already havedevtools
installed like I did, you can just use the second line below:
if (!requireNamespace("devtools")) install.packages("devtools")
devtools::install_github("rstudio/blogdown")
- Install Hugo using the
blogdown
package helper function:
::install_hugo()
blogdown# or
library(blogdown)
install_hugo()
- Use the top menu buttons in RStudio to select
File -> New Project -> Existing Directory
, then browse to the directory on your computer where your GitHub repo is and click on the Create Project button.
- Now you should be “in” your project in RStudio. If you are using git for version control, edit your
*gitignore
file. This file should be viewable in your file viewer pane in RStudio. Below is what it should look like: the first four lines will automatically be in this file if you have set up your RStudio Project, but if you plan to use Netlify to deploy, you need to add thepublic/
line (read about here.)
.Rproj.user
.Rhistory
.RData
.Ruserdata
blogdown
.DS_Store # if a windows user, Thumbs.db instead
public/ # if using Netlify
Build your site in RStudio
Now you can finally build your site using the blogdown::new_site()
function. But first you should at least think about themes…
Picking a theme
There are over 90 Hugo themes. Here you can find an overview of some of the themes. Whatever theme you choose, you’ll need to pick one of 3 ways to make your new site:
- If you are happy with the default theme, which is the lithium theme, you can use:
blogdown::new_site() # default theme is lithium
- If you want a theme other than the default, you can specify the theme at the same time as you call the
new_site
function:
# for example, create a new site with the academic theme
blogdown::new_site(theme = "gcushen/hugo-academic", theme_example = TRUE)
- If instead you want to add the theme later, you can do this:
library(blogdown)
new_site() # default theme is lithium
# need to stop serving so can use the console again
install_theme("gcushen/hugo-academic", theme_example = TRUE, update_config = TRUE)
{{% alert note %}} Now is a good time to re-read about blogdown::serve_site()
and how LiveReload works (and how it blocks your R console by default) {{% /alert %}}
Update project options
In your project in RStudio, go to the top menu bar of RStudio and select Tools -> Project Options
and update following Yihui and Amber’s instructions.
Edit your configurations
Relevant reading:
blogdown
book chapter on configuration- You can also view Alison Hill’s
config.toml
file in GitHub
Now, edit the baseurl
in your config.toml
file. The URL should always end with a /
trailing slash. At this point, you probably haven’t deployed your site yet, so to view it locally you can use the Serve Site add-in, or run the blogdown::serve_site
function. Both of these baseurls worked for me when viewing locally:
baseurl = "https://example.com/"
baseurl = "/"
{{% alert warning %}} Make sure that the baseurl =
listed ends with a trailing slash /
! {{% /alert %}}
Go ahead and edit all the other elements in the config.toml
file now as you please- this is how you personalize your site.
Addins & workflow
Relevant reading:
Addins: use them- you won’t need the blogdown
library loaded in the console if you use the Addins. The workflow in RStudio at this point (again, just viewing locally because we haven’t deployed yet) works best like this:
- Open the RStudio project for the site
- Use the Serve Site add-in (only once due to LiveReload)
- View site in the RStudio viewer pane, and open in a new browser window while you work
- Select existing files to edit using the file pane in RStudio
- After making changes, click the save button (don’t
knit
!)- the console will reload, the viewer pane will update, and if you hit refresh in the browser your local view will also be updated - When happy with changes, add/commit/push changes to GitHub
Having blogdown::serve_site
running locally with LiveReload is especially useful as you can immediately see if you have made any mistakes.
The above workflow is only for editing existing files or posts, but not for creating new posts. For that, read on…
Posting
Relevant reading:
blogdown
book chapter on RStudio IDEblogdown
book chapter on output formats: on .md versus .Rmd posts
Bottom line:
Use the New Post addin. But, you need the console to do this, so you have to stop blogdown::serve_site
by clicking on the red Stop button first. The Addin is a Shiny interface that runs this code in your console: blogdown:::new_post_addin()
. So, your console needs to be unblocked for it to run. You also need to be “in” your RStudio project or it won’t work.
Draft posts
Relevant reading:
Whether you do a markdown or R Markdown post (see below), you should know that in the YAML front matter of your new file, you can add draft: TRUE
and you will be able to preview your post using blogdown::serve_site()
, but conveniently your post will not show up on your deployed site until you set it to false. Because this is a function built into Hugo, all posts (draft or not) will still end up in your GitHub repo though.
New markdown posts
Pick one of 2 methods:
- Use the New Post addin and with the radio button at the bottom select Format: Markdown (recommended)
- Use the console to author a new
.md
post:
::new_post()
blogdown::new_post(ext = '.md') # md is the default! blogdown
{{% alert note %}} Remember to use the Serve Site addin again so that you can immediately view your changes with every save using LiveReload. {{% /alert %}}
New R Markdown (.Rmd) posts
Again, you have your choice of one of 2 methods:
- Use the New Post addin and with the radio button at the bottom select Format: R Markdown (.Rmd) (recommended)
- Use the console to author a new
.Rmd
post:
::new_post(ext = '.Rmd') # md is the default! blogdown
After you edit your .Rmd
post, in addition to saving the changes in your .Rmd
file, you must use blogdown::serve_site
- this is how the output html
file needs to be generated.
{{% alert warning %}} Do not knit your .Rmd
posts- use blogdown::serve_site
instead. If you happen to hit the knit button, just Serve Site again to rewrite the .html
file. {{% /alert %}}
Ultimately, your YAML front matter looks something like this; note that some but not all features of rmarkdown::html_document
are supported in blogdown
:
---
: "My Post"
title: "John Doe"
author: "2017-02-14"
date:
output::html_page:
blogdown: true
toc: 1
toc_depth: true
number_sections: 6
fig_width---
{{% alert note %}} Remember to use the Serve Site addin again so that you can immediately view your changes with every save using LiveReload and your .html
file is properly output. {{% /alert %}}
Adding images to a post
If you want to include an image that is not a figure created from an R chunk, the recommended method is to:
- Add the image to your
/static/img/
folder, then - Reference the image using the relative file path as follows:
![my-image](/img/my-image.png)
Deploy in Netlify
Deploying in Netlify through GitHub is smooth. Here are some beginner instructions, but Netlify is so easy, I recommend that you skip dragging your public
folder in and instead automate the process through GitHub.
When you are ready to deploy, commit your changes and push to GitHub, then go online to Netlify.
Click on the Sign Up button and sign up using your existing GitHub account (no need to create another account)
Log in, and select:
New site from Git -> Continuous Deployment: GitHub
.From there, Netlify will allow you to select from your existing GitHub repositories. You’ll pick the repo you’ve been working from with
blogdown
, then you’ll configure your build. This involves specifying two important things: the build command and the publish directory (this should bepublic
).- More about the build command from Netlify: “For Hugo hosting,
hugo
will build and deploy with the version 0.17 ofhugo
. You can specify a specifichugo
release like this:hugo_0.15
. Currently0.13
,0.14
,0.15
,0.16
,0.17
,0.18
and0.19
are supported. For version0.20
and above, you’ll need to create a Build environment variable calledHUGO_VERSION
and set it to the version of your choice.” I opted for the former, and specifiedhugo_0.19
.
- More about the build command from Netlify: “For Hugo hosting,
You can check your hugo
version in terminal using the command hugo version
. This is what my output looked like, so I could run version 0.20
if I wanted to through Netlify, but I went with 0.19
and it works just fine.
$ hugo version
Hugo Static Site Generator v0.20.7 darwin/amd64 BuildDate: 2017-05-08T18:37:40-07:00
Netlify will deploy your site and assign you a random subdomain name of the form random-word-12345.netlify.com
. You should know that you can change this; e.g. to mynewsite.netlify.com
.
{{% alert note %}} Anytime you change your subdomain name, you need to update the baseurl
in your config.toml
file (e.g., baseurl = “https://mynewsite.netlify.com/”). {{% /alert %}}
At this point, you should be up and running with blogdown
, GitHub, and Netlify, but here are some ideas if you want to go further…
Going further
Custom CSS
Every Hugo theme is structured a little differently, but if you are interested, you can check out Alison Hill’s custom css to see how she customized the academic theme, which provides a way to link to a custom CSS file in the config.toml
file:
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
custom_css = ["blue.css"]
Formspree
Alison Hill used Formspree to make a contact form, which is an online service (managed on GitHub) that allows you to add an HTML form to your static site. No registration, just use the form and confirm your email address once. She added the following code into the contact widget:
<form action="https://formspree.io/your@email.com" method="POST">
<label for="name">Your name: </label>
<input type="text" name="name" required="required" placeholder="here"><br>
<label for="email">Your email: </label>
<input type="email" name="_replyto" required="required" placeholder="here"><br>
<label for="message">Your message:</label><br>
<textarea rows="4" name="message" id="message" required="required" class="form-control" placeholder="I can't wait to read this!"></textarea>
<input type="hidden" name="_next" value="/html/thanks.html" />
<input type="submit" value="Send" name="submit" class="btn btn-primary btn-outline">
<input type="hidden" name="_subject" value="Website message" />
<input type="text" name="_gotcha" style="display:none" />
</form>
*.rbind.io
domain names
You may want a different domain name than the one provided by Netlify. Alison opted for a free subdomain *.rbind.io
offered by RStudio. To do the same, head over to the rbind/support GitHub page and open a new issue. All you need to do is let them know what your Netlify subdomain name is (*.netlify.com
), and what you want your subdomain name to be (*.rbind.io
). The rbind
support team will help you take it from there!
{{% alert note %}} Again, you will need to update the baseurl
in your config.toml
file to reflect your new rbind subdomain name (so Alison’s is baseurl = “https://alison.rbind.io/”). {{% /alert %}}
That’s it!