diff options
author | 2021-05-17 17:45:41 -0500 | |
---|---|---|
committer | 2021-05-17 17:45:41 -0500 | |
commit | d6cedac38e25fbec8425e020c16393fd70f0adf6 (patch) | |
tree | 4bda69f8ec6ab76d75f1f98b141886ce5305df4d /examples/blog/README.md | |
parent | d8a78298f354e775c1a3ad8b2d44e372969b0c39 (diff) | |
download | astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.tar.gz astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.tar.zst astro-d6cedac38e25fbec8425e020c16393fd70f0adf6.zip |
Improve blog template (#217)
Diffstat (limited to 'examples/blog/README.md')
-rw-r--r-- | examples/blog/README.md | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/examples/blog/README.md b/examples/blog/README.md index f1894ad62..2a20654f2 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -1,15 +1,22 @@ # Astro Blog Example +Features: + +- ✅ SEO-friendly setup with canonical URLs and OpenGraph data +- ✅ Full Markdown support +- ✅ RSS 2.0 generation +- ✅ Sitemap.xml generation + ## Setup ``` -npm install +yarn ``` ## Dev ``` -npm start +yarn start ``` Preview at `http://localhost:3000` @@ -17,7 +24,7 @@ Preview at `http://localhost:3000` ## Build ``` -npm build +yarn build ``` Will output static site at `./dist` |