diff options
author | 2022-08-13 00:09:40 -0700 | |
---|---|---|
committer | 2022-08-13 00:09:40 -0700 | |
commit | d54588c7a4adfa05969713111d36673f3a9b988e (patch) | |
tree | 3f41bf5171a9121517ced0f0e49160b3d86e932e /examples/blog/README.md | |
parent | d4b06f9d8e5d62893743b191c6bd108fc33b7805 (diff) | |
download | astro-d54588c7a4adfa05969713111d36673f3a9b988e.tar.gz astro-d54588c7a4adfa05969713111d36673f3a9b988e.tar.zst astro-d54588c7a4adfa05969713111d36673f3a9b988e.zip |
Update: blog template (#4283)
* add new blog template
* update placeholder images
* use svg favicon
* Update examples/blog/src/pages/blog/using-mdx.mdx
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
* fred pass
* more fred pass
Co-authored-by: Nate Moore <nate@astro.build>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'examples/blog/README.md')
-rw-r--r-- | examples/blog/README.md | 41 |
1 files changed, 15 insertions, 26 deletions
diff --git a/examples/blog/README.md b/examples/blog/README.md index fa874dba8..c5a53616b 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -11,37 +11,22 @@ npm init astro -- --template blog Features: - ✅ SEO-friendly setup with canonical URLs and OpenGraph data -- ✅ Full Markdown support +- ✅ `@astrojs/image` image optimizations +- ✅ Sitemap support +- ✅ Markdown & MDX support +- ✅ Minimal styling (make it your own!) +- ✅ 100/100 Lighthouse performance ## 🚀 Project Structure Inside of your Astro project, you'll see the following folders and files: ``` -├── public -│ ├── assets -│ │ └── blog -│ │ └── introducing-astro.jpg -│ ├── favicon.ico -│ ├── social.jpg -│ └── social.png -├── src -│ ├── components -│ │ ├── Author.astro -│ │ ├── BaseHead.astro -│ │ ├── BlogPostPreview.astro -│ │ ├── FollowMe.astro -│ │ ├── Header.astro -│ │ └── LikeButton.tsx -│ ├── layouts -│ │ └── BlogPost.astro -│ ├── pages -│ │ ├── index.astro -│ │ └── posts -│ │ ├── interactive-content.md -│ │ └── static-content.md -│ └── styles -│ └── blog.css +├── public/ +├── src/ +│ ├── components/ +│ ├── layouts/ +│ └── pages/ ├── astro.config.mjs ├── README.md ├── package.json @@ -69,4 +54,8 @@ All commands are run from the root of the project, from a terminal: ## 👀 Want to learn more? -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). +Check out [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). + +## Credit + +This theme is based off of the lovely [Bear Blog](https://github.com/HermanMartinus/bearblog/).
\ No newline at end of file |