├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── check.html ├── configs.html ├── editor.html ├── index.html ├── jcs ├── a.js ├── cp.js ├── g.js ├── i.js ├── l.gif ├── m.css ├── m.js ├── p.js └── q.js ├── pics ├── date.png ├── err.png └── tag.png └── template ├── archives.otp.html ├── cloth.otp.html ├── comment.otp.html ├── index.html ├── library.js ├── loading.otp.html ├── loadingcloth.gif ├── main.js ├── main.json ├── main.otp.html ├── post.otp.html ├── postitem.otp.html ├── postlist.otp.html ├── search.js ├── style.css ├── tags.otp.html └── template.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | dod.xbottle.top -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/README.md -------------------------------------------------------------------------------- /check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/check.html -------------------------------------------------------------------------------- /configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/configs.html -------------------------------------------------------------------------------- /editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/editor.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/index.html -------------------------------------------------------------------------------- /jcs/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/a.js -------------------------------------------------------------------------------- /jcs/cp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/cp.js -------------------------------------------------------------------------------- /jcs/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/g.js -------------------------------------------------------------------------------- /jcs/i.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/i.js -------------------------------------------------------------------------------- /jcs/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/l.gif -------------------------------------------------------------------------------- /jcs/m.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/m.css -------------------------------------------------------------------------------- /jcs/m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/m.js -------------------------------------------------------------------------------- /jcs/p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/p.js -------------------------------------------------------------------------------- /jcs/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/jcs/q.js -------------------------------------------------------------------------------- /pics/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/pics/date.png -------------------------------------------------------------------------------- /pics/err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/pics/err.png -------------------------------------------------------------------------------- /pics/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/pics/tag.png -------------------------------------------------------------------------------- /template/archives.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/archives.otp.html -------------------------------------------------------------------------------- /template/cloth.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/cloth.otp.html -------------------------------------------------------------------------------- /template/comment.otp.html: -------------------------------------------------------------------------------- 1 | {[pid]} -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/index.html -------------------------------------------------------------------------------- /template/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/library.js -------------------------------------------------------------------------------- /template/loading.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/loading.otp.html -------------------------------------------------------------------------------- /template/loadingcloth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/loadingcloth.gif -------------------------------------------------------------------------------- /template/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/main.js -------------------------------------------------------------------------------- /template/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/main.json -------------------------------------------------------------------------------- /template/main.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/main.otp.html -------------------------------------------------------------------------------- /template/post.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/post.otp.html -------------------------------------------------------------------------------- /template/postitem.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/postitem.otp.html -------------------------------------------------------------------------------- /template/postlist.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/postlist.otp.html -------------------------------------------------------------------------------- /template/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/search.js -------------------------------------------------------------------------------- /template/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/style.css -------------------------------------------------------------------------------- /template/tags.otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/tags.otp.html -------------------------------------------------------------------------------- /template/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomeBottle/-O-/HEAD/template/template.json --------------------------------------------------------------------------------