-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Blog Post “creating-a-blog-with-11ty-and-netlify-cms”
- Loading branch information
1 parent
19348c5
commit c33ba35
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: Creating a Blog with 11ty and Netlify CMS | ||
date: 2020-08-03T15:27:42.017Z | ||
description: In this tutorial, we will use 11ty and Netlify CMS to create a personal blog. | ||
tags: | ||
- 11ty | ||
- netlify | ||
--- | ||
This is a draft. | ||
|
||
What is 11ty? | ||
* It is a static site generator. | ||
|
||
# Creating a new 11ty Project | ||
Let's first install the eleventy CLI by running the following command. | ||
```text | ||
npm install -g @11ty/eleventy | ||
``` |