├── README.md ├── css ├── pic.png ├── style.css └── vcomments.css ├── files.php ├── footer.php ├── functions.php ├── header.php ├── images ├── avatar.jpg ├── check.svg └── socials │ ├── email.svg │ ├── facebook.svg │ ├── flickr.svg │ ├── github.svg │ ├── google.svg │ ├── instagram.svg │ ├── wechat.svg │ └── weibo.svg ├── index.php ├── lib └── OwO │ ├── OwO.json │ ├── OwO.min.css │ ├── OwO.min.js │ └── OwOmini.json ├── page.php ├── post.php ├── screenshot.png ├── script ├── index.js └── post.js └── vcomments.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/README.md -------------------------------------------------------------------------------- /css/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/css/pic.png -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/css/style.css -------------------------------------------------------------------------------- /css/vcomments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/css/vcomments.css -------------------------------------------------------------------------------- /files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/files.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/header.php -------------------------------------------------------------------------------- /images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/avatar.jpg -------------------------------------------------------------------------------- /images/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/check.svg -------------------------------------------------------------------------------- /images/socials/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/email.svg -------------------------------------------------------------------------------- /images/socials/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/facebook.svg -------------------------------------------------------------------------------- /images/socials/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/flickr.svg -------------------------------------------------------------------------------- /images/socials/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/github.svg -------------------------------------------------------------------------------- /images/socials/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/google.svg -------------------------------------------------------------------------------- /images/socials/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/instagram.svg -------------------------------------------------------------------------------- /images/socials/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/wechat.svg -------------------------------------------------------------------------------- /images/socials/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/images/socials/weibo.svg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/index.php -------------------------------------------------------------------------------- /lib/OwO/OwO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/lib/OwO/OwO.json -------------------------------------------------------------------------------- /lib/OwO/OwO.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/lib/OwO/OwO.min.css -------------------------------------------------------------------------------- /lib/OwO/OwO.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/lib/OwO/OwO.min.js -------------------------------------------------------------------------------- /lib/OwO/OwOmini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/lib/OwO/OwOmini.json -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/page.php -------------------------------------------------------------------------------- /post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/post.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/screenshot.png -------------------------------------------------------------------------------- /script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/script/index.js -------------------------------------------------------------------------------- /script/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/script/post.js -------------------------------------------------------------------------------- /vcomments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seevil/bear/HEAD/vcomments.php --------------------------------------------------------------------------------