{title}
20 |42 |
├── .dockerignore ├── public ├── favicon.ico └── index.html ├── src ├── assets │ ├── logo.png │ └── styles │ │ ├── global.scss │ │ └── prism.css ├── components │ ├── myself │ │ ├── Resume.jsx │ │ └── Summary.jsx │ ├── posts │ │ ├── SearchContainer.jsx │ │ ├── NoPostMessage.jsx │ │ ├── PostsContainer.jsx │ │ ├── PostFullText.jsx │ │ ├── BaseContainer.jsx │ │ ├── PostComments.jsx │ │ └── AddNewCommnet.jsx │ └── common │ │ ├── Layout.jsx │ │ ├── Footer.jsx │ │ ├── SearchBar.jsx │ │ ├── SideBar.jsx │ │ └── NavBar.jsx ├── apis │ ├── base.js │ ├── metas.js │ └── posts.js ├── utils │ ├── consts.js │ ├── alert.js │ └── google.js ├── contexts │ └── PostContext.js └── reducers │ └── PostReducer.js ├── screenshots └── Code_Highlight.png ├── README.CN.md ├── pages ├── error.js ├── resume.js ├── post │ └── [pid].js ├── search.js ├── _document.js ├── category │ └── [cid].js ├── _app.js └── index.js ├── .gitignore ├── Dockerfile ├── buzzy.config.demo.js ├── prettier.config.js ├── babel.config.js ├── LICENSE ├── server.js ├── next.config.js ├── README.md └── package.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzycloud/buzzyblog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzycloud/buzzyblog/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /screenshots/Code_Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buzzycloud/buzzyblog/HEAD/screenshots/Code_Highlight.png -------------------------------------------------------------------------------- /README.CN.md: -------------------------------------------------------------------------------- 1 | :point_right: [English Documetation](README.md) 2 | 3 | :point_down: 中文文档 4 | 5 | --- 6 | 7 | ## Buzzy CMS 8 | -------------------------------------------------------------------------------- /pages/error.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const ErrorPage = () => { 4 | return
Comments
48 |81 | handleCommentOnChange({ author_email: value })} 87 | /> 88 | 89 | 90 | 91 |
92 |95 | handleCommentOnChange({ author_name: value })} 101 | /> 102 | 103 | 104 | 105 |
106 |