├── .gitignore ├── LICENSE ├── Plugin.php ├── README.md ├── ShortCode.php ├── assets ├── iframebtn.png ├── iframebtn2.png ├── iframepanel.png ├── iframesetting.png └── logo.jpg ├── function ├── footer.php ├── form.php └── header.php └── static └── js ├── bg ├── a0.js ├── a1.js ├── a2.js ├── a3.js ├── a4.js ├── a5.js ├── a6.js ├── a7.js ├── a8.js ├── a9.js ├── b1.js ├── b2.js ├── b3.js ├── b4.js ├── b5.js ├── b6.js ├── b7.js ├── b8.js └── b9.js ├── edit.js ├── extend.js └── qrcode.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/README.md -------------------------------------------------------------------------------- /ShortCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/ShortCode.php -------------------------------------------------------------------------------- /assets/iframebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/assets/iframebtn.png -------------------------------------------------------------------------------- /assets/iframebtn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/assets/iframebtn2.png -------------------------------------------------------------------------------- /assets/iframepanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/assets/iframepanel.png -------------------------------------------------------------------------------- /assets/iframesetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/assets/iframesetting.png -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /function/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/function/footer.php -------------------------------------------------------------------------------- /function/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/function/form.php -------------------------------------------------------------------------------- /function/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/function/header.php -------------------------------------------------------------------------------- /static/js/bg/a0.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/bg/a1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a1.js -------------------------------------------------------------------------------- /static/js/bg/a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a2.js -------------------------------------------------------------------------------- /static/js/bg/a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a3.js -------------------------------------------------------------------------------- /static/js/bg/a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a4.js -------------------------------------------------------------------------------- /static/js/bg/a5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a5.js -------------------------------------------------------------------------------- /static/js/bg/a6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a6.js -------------------------------------------------------------------------------- /static/js/bg/a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a7.js -------------------------------------------------------------------------------- /static/js/bg/a8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a8.js -------------------------------------------------------------------------------- /static/js/bg/a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/a9.js -------------------------------------------------------------------------------- /static/js/bg/b1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b1.js -------------------------------------------------------------------------------- /static/js/bg/b2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b2.js -------------------------------------------------------------------------------- /static/js/bg/b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b3.js -------------------------------------------------------------------------------- /static/js/bg/b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b4.js -------------------------------------------------------------------------------- /static/js/bg/b5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b5.js -------------------------------------------------------------------------------- /static/js/bg/b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b6.js -------------------------------------------------------------------------------- /static/js/bg/b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b7.js -------------------------------------------------------------------------------- /static/js/bg/b8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b8.js -------------------------------------------------------------------------------- /static/js/bg/b9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/bg/b9.js -------------------------------------------------------------------------------- /static/js/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/edit.js -------------------------------------------------------------------------------- /static/js/extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/extend.js -------------------------------------------------------------------------------- /static/js/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSuperman/Pretty_for_handsome/HEAD/static/js/qrcode.min.js --------------------------------------------------------------------------------