├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── ArticleController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Backend │ │ │ ├── ArticleController.php │ │ │ ├── AuthController.php │ │ │ ├── CategoryController.php │ │ │ ├── HomeController.php │ │ │ ├── LinkController.php │ │ │ ├── NavigationController.php │ │ │ ├── PageController.php │ │ │ ├── SystemController.php │ │ │ ├── TagController.php │ │ │ ├── UploadController.php │ │ │ └── UserController.php │ │ ├── CategoryController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── PageController.php │ │ ├── RssController.php │ │ ├── SearchController.php │ │ └── TagController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RejectNullValues.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Backend │ │ ├── Article │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Category │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Link │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Navigation │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Page │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Tag │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ ├── Upload │ │ │ ├── DirDeleteRequest.php │ │ │ ├── FileDeleteRequest.php │ │ │ ├── MakeDirRequest.php │ │ │ └── UploadStoreRequest.php │ │ └── User │ │ │ ├── CreateRequest.php │ │ │ └── UpdateRequest.php │ │ └── Request.php ├── Models │ ├── Article.php │ ├── ArticleTag.php │ ├── Category.php │ ├── Link.php │ ├── Navigation.php │ ├── Page.php │ ├── System.php │ ├── Tag.php │ └── User.php ├── Presenters │ ├── ArticlePresenter.php │ ├── ArticleTagPresenter.php │ ├── BackendPresenter.php │ ├── CategoryPresenter.php │ ├── LinkPresenter.php │ ├── NavigationPresenter.php │ ├── PagePresenter.php │ ├── SystemPresenter.php │ ├── TagPresenter.php │ └── UserPresenter.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── blog.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── debugbar.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_07_25_130523_create_articles_table.php │ ├── 2016_07_25_143011_create_tags_table.php │ ├── 2016_07_30_064321_create_categories_table.php │ ├── 2016_08_14_123836_add_users_table.php │ ├── 2016_08_24_162228_add_tags_table.php │ ├── 2016_08_28_145612_create_article_tags_table.php │ ├── 2016_08_31_143604_create_links_table.php │ ├── 2016_09_03_051144_create_navigations_table.php │ ├── 2016_09_10_113755_create_systems_table.php │ ├── 2016_09_21_134642_add_html_content_to_articles_table.php │ ├── 2016_09_24_132253_create_pages_table.php │ └── 2016_11_14_142731_change_valus_field_to_systems_table.php └── seeds │ ├── .gitkeep │ ├── DatabaseSeeder.php │ ├── SystemTableSeeder.php │ └── UserTableSeeder.php ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── backend.css ├── default │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ └── index.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── icons │ │ ├── github.png │ │ └── weibo.png │ └── js │ │ ├── bootstrap.min.js │ │ ├── index.js │ │ └── jQuery-2.2.0.min.js ├── favicon.ico ├── fonts │ └── vendor │ │ ├── Ionicons │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── bootstrap │ │ └── dist │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── font-awesome │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── images │ └── vendor │ │ └── _admin-lte@2.4.8@admin-lte │ │ └── plugins │ │ └── iCheck │ │ └── square │ │ ├── blue.png │ │ └── blue@2x.png ├── index.php ├── js │ ├── app.js │ ├── backend.js │ └── moell.js ├── layer │ ├── layer.js │ └── skin │ │ ├── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif │ │ └── layer.css ├── mix-manifest.json ├── robots.txt ├── share.js │ ├── css │ │ └── share.min.css │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ └── js │ │ ├── jquery.share.min.js │ │ └── social-share.min.js └── web.config ├── readme.md ├── resources ├── js │ ├── app.js │ ├── backend.js │ ├── bootstrap.js │ ├── components │ │ └── ExampleComponent.vue │ ├── moell.js │ └── simplemde.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ ├── app.scss │ └── backend.scss └── views │ ├── backend │ ├── alert │ │ ├── success.blade.php │ │ └── warning.blade.php │ ├── article │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── category │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── home.blade.php │ ├── home.blade.php~ │ ├── link │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── login.blade.php │ ├── navigation │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── page │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── system │ │ └── index.blade.php │ ├── tag │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── upload │ │ ├── index.blade.php │ │ └── upload.blade.php │ └── user │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── default │ ├── article.blade.php │ ├── author.blade.php │ ├── category_article.blade.php │ ├── comment │ │ ├── disqus.blade.php │ │ ├── duoshuo.blade.php │ │ └── index.blade.php │ ├── footer.blade.php │ ├── home.blade.php │ ├── hot.blade.php │ ├── link.blade.php │ ├── navigation.blade.php │ ├── page.blade.php │ ├── search_article.blade.php │ ├── show_article.blade.php │ ├── show_page.blade.php │ ├── tag.blade.php │ └── tag_article.blade.php │ ├── errors │ └── 503.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ └── backend.blade.php │ ├── vendor │ └── .gitkeep │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/LinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/LinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/NavigationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/NavigationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/SystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/SystemController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/UploadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Backend/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RssController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/RssController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/SearchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Controllers/TagController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/RejectNullValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/RejectNullValues.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Article/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Article/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Article/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Article/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Category/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Category/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Category/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Category/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Link/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Link/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Link/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Link/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Navigation/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Navigation/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Navigation/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Navigation/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Page/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Page/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Page/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Page/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Tag/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Tag/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Tag/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Tag/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Upload/DirDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Upload/DirDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Upload/FileDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Upload/FileDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Upload/MakeDirRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Upload/MakeDirRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/Upload/UploadStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/Upload/UploadStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/User/CreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/User/CreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Backend/User/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Backend/User/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Article.php -------------------------------------------------------------------------------- /app/Models/ArticleTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/ArticleTag.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Link.php -------------------------------------------------------------------------------- /app/Models/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Navigation.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/System.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Presenters/ArticlePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/ArticlePresenter.php -------------------------------------------------------------------------------- /app/Presenters/ArticleTagPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/ArticleTagPresenter.php -------------------------------------------------------------------------------- /app/Presenters/BackendPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/BackendPresenter.php -------------------------------------------------------------------------------- /app/Presenters/CategoryPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/CategoryPresenter.php -------------------------------------------------------------------------------- /app/Presenters/LinkPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/LinkPresenter.php -------------------------------------------------------------------------------- /app/Presenters/NavigationPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/NavigationPresenter.php -------------------------------------------------------------------------------- /app/Presenters/PagePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/PagePresenter.php -------------------------------------------------------------------------------- /app/Presenters/SystemPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/SystemPresenter.php -------------------------------------------------------------------------------- /app/Presenters/TagPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/TagPresenter.php -------------------------------------------------------------------------------- /app/Presenters/UserPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Presenters/UserPresenter.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/blog.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2016_07_25_130523_create_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_07_25_130523_create_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2016_07_25_143011_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_07_25_143011_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2016_07_30_064321_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_07_30_064321_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_14_123836_add_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_08_14_123836_add_users_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_24_162228_add_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_08_24_162228_add_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_28_145612_create_article_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_08_28_145612_create_article_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2016_08_31_143604_create_links_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_08_31_143604_create_links_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_03_051144_create_navigations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_09_03_051144_create_navigations_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_10_113755_create_systems_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_09_10_113755_create_systems_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_21_134642_add_html_content_to_articles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_09_21_134642_add_html_content_to_articles_table.php -------------------------------------------------------------------------------- /database/migrations/2016_09_24_132253_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_09_24_132253_create_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2016_11_14_142731_change_valus_field_to_systems_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/migrations/2016_11_14_142731_change_valus_field_to_systems_table.php -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/SystemTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/seeds/SystemTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/database/seeds/UserTableSeeder.php -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/backend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/css/backend.css -------------------------------------------------------------------------------- /public/default/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/css/animate.css -------------------------------------------------------------------------------- /public/default/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/default/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/css/index.css -------------------------------------------------------------------------------- /public/default/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/default/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/default/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/default/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/default/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/default/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/icons/github.png -------------------------------------------------------------------------------- /public/default/icons/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/icons/weibo.png -------------------------------------------------------------------------------- /public/default/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/default/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/default/js/jQuery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/default/js/jQuery-2.2.0.min.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/Ionicons/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/Ionicons/ionicons.eot -------------------------------------------------------------------------------- /public/fonts/vendor/Ionicons/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/Ionicons/ionicons.svg -------------------------------------------------------------------------------- /public/fonts/vendor/Ionicons/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/Ionicons/ionicons.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/Ionicons/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/Ionicons/ionicons.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/bootstrap/dist/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/vendor/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/images/vendor/_admin-lte@2.4.8@admin-lte/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/images/vendor/_admin-lte@2.4.8@admin-lte/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /public/images/vendor/_admin-lte@2.4.8@admin-lte/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/images/vendor/_admin-lte@2.4.8@admin-lte/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/js/backend.js -------------------------------------------------------------------------------- /public/js/moell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/js/moell.js -------------------------------------------------------------------------------- /public/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/layer.js -------------------------------------------------------------------------------- /public/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /public/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/default/icon.png -------------------------------------------------------------------------------- /public/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /public/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /public/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /public/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/layer/skin/layer.css -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/share.js/css/share.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/css/share.min.css -------------------------------------------------------------------------------- /public/share.js/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/fonts/iconfont.eot -------------------------------------------------------------------------------- /public/share.js/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/fonts/iconfont.svg -------------------------------------------------------------------------------- /public/share.js/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/fonts/iconfont.ttf -------------------------------------------------------------------------------- /public/share.js/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/fonts/iconfont.woff -------------------------------------------------------------------------------- /public/share.js/js/jquery.share.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/js/jquery.share.min.js -------------------------------------------------------------------------------- /public/share.js/js/social-share.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/share.js/js/social-share.min.js -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/js/backend.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/moell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/js/moell.js -------------------------------------------------------------------------------- /resources/js/simplemde.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/backend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/sass/backend.scss -------------------------------------------------------------------------------- /resources/views/backend/alert/success.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/alert/success.blade.php -------------------------------------------------------------------------------- /resources/views/backend/alert/warning.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/alert/warning.blade.php -------------------------------------------------------------------------------- /resources/views/backend/article/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/article/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/article/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/article/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/article/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/article/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/category/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/category/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/category/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/category/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/category/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/category/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/home.blade.php -------------------------------------------------------------------------------- /resources/views/backend/home.blade.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/home.blade.php~ -------------------------------------------------------------------------------- /resources/views/backend/link/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/link/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/link/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/link/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/link/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/link/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/login.blade.php -------------------------------------------------------------------------------- /resources/views/backend/navigation/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/navigation/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/navigation/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/navigation/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/navigation/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/navigation/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/page/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/page/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/page/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/page/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/page/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/page/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/system/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/system/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/tag/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/tag/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/tag/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/tag/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/tag/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/tag/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/upload/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/upload/index.blade.php -------------------------------------------------------------------------------- /resources/views/backend/upload/upload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/upload/upload.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/backend/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/backend/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/default/article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/article.blade.php -------------------------------------------------------------------------------- /resources/views/default/author.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/author.blade.php -------------------------------------------------------------------------------- /resources/views/default/category_article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/category_article.blade.php -------------------------------------------------------------------------------- /resources/views/default/comment/disqus.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/comment/disqus.blade.php -------------------------------------------------------------------------------- /resources/views/default/comment/duoshuo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/comment/duoshuo.blade.php -------------------------------------------------------------------------------- /resources/views/default/comment/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/comment/index.blade.php -------------------------------------------------------------------------------- /resources/views/default/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/footer.blade.php -------------------------------------------------------------------------------- /resources/views/default/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/home.blade.php -------------------------------------------------------------------------------- /resources/views/default/hot.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/hot.blade.php -------------------------------------------------------------------------------- /resources/views/default/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/link.blade.php -------------------------------------------------------------------------------- /resources/views/default/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/default/page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/page.blade.php -------------------------------------------------------------------------------- /resources/views/default/search_article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/search_article.blade.php -------------------------------------------------------------------------------- /resources/views/default/show_article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/show_article.blade.php -------------------------------------------------------------------------------- /resources/views/default/show_page.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/show_page.blade.php -------------------------------------------------------------------------------- /resources/views/default/tag.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/tag.blade.php -------------------------------------------------------------------------------- /resources/views/default/tag_article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/default/tag_article.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/backend.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/layouts/backend.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moell-peng/moell-blog/HEAD/webpack.mix.js --------------------------------------------------------------------------------