feat(v2): bootstrap blog post page and card (#2584)

* feat(v2): init the blog post card

* feat(v2): Update card design

* chore(v2): remove unused dependency

* feat(v2): add post list

* feat(v2): improve html tags

* chore(v2): run prettier

* feat(v2): remove old tag

* feat(v2): apply suggestions
This commit is contained in:
Fanny 2020-04-12 11:41:34 -03:00 committed by GitHub
parent 9c1abcddab
commit f61b92d86a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 189 additions and 2 deletions

View file

@ -8,6 +8,9 @@
module.exports = function preset(context, opts = {}) {
return {
themes: [['@docusaurus/theme-bootstrap', opts.theme]],
plugins: [['@docusaurus/plugin-content-pages', opts.pages]],
plugins: [
['@docusaurus/plugin-content-pages', opts.pages],
['@docusaurus/plugin-content-blog', opts.blog],
],
};
};