├── .htaccess ├── README.md ├── _admin ├── data │ ├── config.php │ ├── tpl │ │ └── test.php │ └── var.php ├── includes │ ├── Snoopy.class.php │ ├── data.php │ ├── function.php │ └── widget.php ├── index.php ├── init.php ├── module │ ├── index.php │ ├── page.php │ └── site.php ├── static │ ├── admin.js │ ├── core.css │ └── jquery-1.5.1.min.js └── template │ ├── _widget │ ├── select.php │ ├── text.php │ └── textarea.php │ ├── editPage.php │ ├── editPageReplace.php │ ├── editReplace.php │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── login.php │ ├── menu.php │ ├── pageAdvanced.php │ ├── pageList.php │ ├── pageReplace.php │ ├── siteAdvanced.php │ ├── siteBase.php │ └── siteReplace.php ├── index.php └── 修改说明.txt /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeowLove/7ghost/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeowLove/7ghost/HEAD/README.md -------------------------------------------------------------------------------- /_admin/data/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeowLove/7ghost/HEAD/_admin/data/config.php -------------------------------------------------------------------------------- /_admin/data/tpl/test.php: -------------------------------------------------------------------------------- 1 |