├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── core ├── api.go ├── api_test.go ├── constants.go ├── model.go └── query.go ├── go.mod ├── go.sum ├── main.go ├── pure.sample.yaml ├── screens ├── gitcus-config.png ├── homepage.png └── postpage.png └── templates ├── base ├── footer.html └── navbar.html ├── css ├── base.css ├── color-modes.css ├── markdown.css └── post.css └── pages ├── error.html ├── index.html ├── post.html └── tags.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | .vscode 4 | pure.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/README.md -------------------------------------------------------------------------------- /core/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/core/api.go -------------------------------------------------------------------------------- /core/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/core/api_test.go -------------------------------------------------------------------------------- /core/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/core/constants.go -------------------------------------------------------------------------------- /core/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/core/model.go -------------------------------------------------------------------------------- /core/query.go: -------------------------------------------------------------------------------- 1 | package core 2 | 3 | type PostQuery struct { 4 | Next *string 5 | } 6 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/main.go -------------------------------------------------------------------------------- /pure.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/pure.sample.yaml -------------------------------------------------------------------------------- /screens/gitcus-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/screens/gitcus-config.png -------------------------------------------------------------------------------- /screens/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/screens/homepage.png -------------------------------------------------------------------------------- /screens/postpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/screens/postpage.png -------------------------------------------------------------------------------- /templates/base/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/base/footer.html -------------------------------------------------------------------------------- /templates/base/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/base/navbar.html -------------------------------------------------------------------------------- /templates/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/css/base.css -------------------------------------------------------------------------------- /templates/css/color-modes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/css/color-modes.css -------------------------------------------------------------------------------- /templates/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/css/markdown.css -------------------------------------------------------------------------------- /templates/css/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/css/post.css -------------------------------------------------------------------------------- /templates/pages/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/pages/error.html -------------------------------------------------------------------------------- /templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/pages/index.html -------------------------------------------------------------------------------- /templates/pages/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/pages/post.html -------------------------------------------------------------------------------- /templates/pages/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeetaoGoooo/pure/HEAD/templates/pages/tags.html --------------------------------------------------------------------------------