├── .gitignore
├── README.md
├── Vagrantfile
├── Vagrantprovision.sh
└── site
├── .env.example
├── .gitattributes
├── .gitignore
├── app
├── CMSPaginator.php
├── Console
│ ├── Commands
│ │ └── Inspire.php
│ └── Kernel.php
├── Events
│ └── Event.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Auth
│ │ │ ├── AuthController.php
│ │ │ └── PasswordController.php
│ │ ├── CMS
│ │ │ ├── BaseCrudController.php
│ │ │ └── EventsController.php
│ │ └── Controller.php
│ ├── Kernel.php
│ ├── Middleware
│ │ ├── Authenticate.php
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── VerifyCsrfToken.php
│ │ └── WordpressAuth.php
│ ├── Requests
│ │ └── Request.php
│ └── routes.php
├── Jobs
│ └── Job.php
├── Listeners
│ └── .gitkeep
├── Models
│ └── Event.php
├── Policies
│ └── .gitkeep
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── User.php
├── artisan
├── bootstrap
├── app.php
├── autoload.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── compile.php
├── database.php
├── filesystems.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── ModelFactory.php
├── migrations
│ ├── .gitkeep
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ └── 2015_09_12_115321_create_events_table.php
└── seeds
│ ├── .gitkeep
│ ├── DatabaseSeeder.php
│ └── EventSeeder.php
├── gulpfile.js
├── package.json
├── phpspec.yml
├── phpunit.xml
├── public
├── .htaccess
├── admin
│ ├── .htaccess
│ ├── index.php
│ ├── license.txt
│ ├── readme.html
│ ├── wp-activate.php
│ ├── wp-admin
│ │ ├── about.php
│ │ ├── admin-ajax.php
│ │ ├── admin-footer.php
│ │ ├── admin-functions.php
│ │ ├── admin-header.php
│ │ ├── admin-post.php
│ │ ├── admin.php
│ │ ├── async-upload.php
│ │ ├── comment.php
│ │ ├── credits.php
│ │ ├── css
│ │ │ ├── about-rtl.css
│ │ │ ├── about.css
│ │ │ ├── admin-menu-rtl.css
│ │ │ ├── admin-menu.css
│ │ │ ├── color-picker-rtl.css
│ │ │ ├── color-picker-rtl.min.css
│ │ │ ├── color-picker.css
│ │ │ ├── color-picker.min.css
│ │ │ ├── colors
│ │ │ │ ├── _admin.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ ├── blue
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ ├── coffee
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ ├── ectoplasm
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ ├── light
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ ├── midnight
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ ├── ocean
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ │ └── sunrise
│ │ │ │ │ ├── colors-rtl.css
│ │ │ │ │ ├── colors-rtl.min.css
│ │ │ │ │ ├── colors.css
│ │ │ │ │ ├── colors.min.css
│ │ │ │ │ └── colors.scss
│ │ │ ├── common-rtl.css
│ │ │ ├── common.css
│ │ │ ├── customize-controls-rtl.css
│ │ │ ├── customize-controls-rtl.min.css
│ │ │ ├── customize-controls.css
│ │ │ ├── customize-controls.min.css
│ │ │ ├── customize-nav-menus-rtl.css
│ │ │ ├── customize-nav-menus-rtl.min.css
│ │ │ ├── customize-nav-menus.css
│ │ │ ├── customize-nav-menus.min.css
│ │ │ ├── customize-widgets-rtl.css
│ │ │ ├── customize-widgets-rtl.min.css
│ │ │ ├── customize-widgets.css
│ │ │ ├── customize-widgets.min.css
│ │ │ ├── dashboard-rtl.css
│ │ │ ├── dashboard.css
│ │ │ ├── deprecated-media-rtl.css
│ │ │ ├── deprecated-media-rtl.min.css
│ │ │ ├── deprecated-media.css
│ │ │ ├── deprecated-media.min.css
│ │ │ ├── edit-rtl.css
│ │ │ ├── edit.css
│ │ │ ├── farbtastic-rtl.css
│ │ │ ├── farbtastic.css
│ │ │ ├── forms-rtl.css
│ │ │ ├── forms.css
│ │ │ ├── ie-rtl.css
│ │ │ ├── ie-rtl.min.css
│ │ │ ├── ie.css
│ │ │ ├── ie.min.css
│ │ │ ├── install-rtl.css
│ │ │ ├── install-rtl.min.css
│ │ │ ├── install.css
│ │ │ ├── install.min.css
│ │ │ ├── l10n-rtl.css
│ │ │ ├── l10n.css
│ │ │ ├── list-tables-rtl.css
│ │ │ ├── list-tables.css
│ │ │ ├── login-rtl.css
│ │ │ ├── login-rtl.min.css
│ │ │ ├── login.css
│ │ │ ├── login.min.css
│ │ │ ├── media-rtl.css
│ │ │ ├── media.css
│ │ │ ├── nav-menus-rtl.css
│ │ │ ├── nav-menus.css
│ │ │ ├── press-this-editor-rtl.css
│ │ │ ├── press-this-editor.css
│ │ │ ├── press-this-rtl.css
│ │ │ ├── press-this-rtl.min.css
│ │ │ ├── press-this.css
│ │ │ ├── press-this.min.css
│ │ │ ├── revisions-rtl.css
│ │ │ ├── revisions.css
│ │ │ ├── site-icon-rtl.css
│ │ │ ├── site-icon.css
│ │ │ ├── themes-rtl.css
│ │ │ ├── themes.css
│ │ │ ├── widgets-rtl.css
│ │ │ ├── widgets.css
│ │ │ ├── wp-admin-rtl.css
│ │ │ ├── wp-admin-rtl.min.css
│ │ │ ├── wp-admin.css
│ │ │ └── wp-admin.min.css
│ │ ├── custom-background.php
│ │ ├── custom-header.php
│ │ ├── customize.php
│ │ ├── edit-comments.php
│ │ ├── edit-form-advanced.php
│ │ ├── edit-form-comment.php
│ │ ├── edit-link-form.php
│ │ ├── edit-tag-form.php
│ │ ├── edit-tags.php
│ │ ├── edit.php
│ │ ├── export.php
│ │ ├── freedoms.php
│ │ ├── images
│ │ │ ├── align-center-2x.png
│ │ │ ├── align-center.png
│ │ │ ├── align-left-2x.png
│ │ │ ├── align-left.png
│ │ │ ├── align-none-2x.png
│ │ │ ├── align-none.png
│ │ │ ├── align-right-2x.png
│ │ │ ├── align-right.png
│ │ │ ├── arrows-2x.png
│ │ │ ├── arrows.png
│ │ │ ├── browser.png
│ │ │ ├── bubble_bg-2x.gif
│ │ │ ├── bubble_bg.gif
│ │ │ ├── comment-grey-bubble-2x.png
│ │ │ ├── comment-grey-bubble.png
│ │ │ ├── date-button-2x.gif
│ │ │ ├── date-button.gif
│ │ │ ├── generic.png
│ │ │ ├── icons32-2x.png
│ │ │ ├── icons32-vs-2x.png
│ │ │ ├── icons32-vs.png
│ │ │ ├── icons32.png
│ │ │ ├── imgedit-icons-2x.png
│ │ │ ├── imgedit-icons.png
│ │ │ ├── list-2x.png
│ │ │ ├── list.png
│ │ │ ├── loading.gif
│ │ │ ├── marker.png
│ │ │ ├── mask.png
│ │ │ ├── media-button-2x.png
│ │ │ ├── media-button-image.gif
│ │ │ ├── media-button-music.gif
│ │ │ ├── media-button-other.gif
│ │ │ ├── media-button-video.gif
│ │ │ ├── media-button.png
│ │ │ ├── menu-2x.png
│ │ │ ├── menu-vs-2x.png
│ │ │ ├── menu-vs.png
│ │ │ ├── menu.png
│ │ │ ├── no.png
│ │ │ ├── post-formats-vs.png
│ │ │ ├── post-formats.png
│ │ │ ├── post-formats32-vs.png
│ │ │ ├── post-formats32.png
│ │ │ ├── resize-2x.gif
│ │ │ ├── resize-rtl-2x.gif
│ │ │ ├── resize-rtl.gif
│ │ │ ├── resize.gif
│ │ │ ├── se.png
│ │ │ ├── sort-2x.gif
│ │ │ ├── sort.gif
│ │ │ ├── spinner-2x.gif
│ │ │ ├── spinner.gif
│ │ │ ├── stars-2x.png
│ │ │ ├── stars.png
│ │ │ ├── w-logo-blue.png
│ │ │ ├── w-logo-white.png
│ │ │ ├── wheel.png
│ │ │ ├── wordpress-logo-white.svg
│ │ │ ├── wordpress-logo.png
│ │ │ ├── wordpress-logo.svg
│ │ │ ├── wpspin_light-2x.gif
│ │ │ ├── wpspin_light.gif
│ │ │ ├── xit-2x.gif
│ │ │ ├── xit.gif
│ │ │ └── yes.png
│ │ ├── import.php
│ │ ├── includes
│ │ │ ├── admin-filters.php
│ │ │ ├── admin.php
│ │ │ ├── ajax-actions.php
│ │ │ ├── bookmark.php
│ │ │ ├── class-ftp-pure.php
│ │ │ ├── class-ftp-sockets.php
│ │ │ ├── class-ftp.php
│ │ │ ├── class-pclzip.php
│ │ │ ├── class-wp-comments-list-table.php
│ │ │ ├── class-wp-filesystem-base.php
│ │ │ ├── class-wp-filesystem-direct.php
│ │ │ ├── class-wp-filesystem-ftpext.php
│ │ │ ├── class-wp-filesystem-ftpsockets.php
│ │ │ ├── class-wp-filesystem-ssh2.php
│ │ │ ├── class-wp-importer.php
│ │ │ ├── class-wp-links-list-table.php
│ │ │ ├── class-wp-list-table.php
│ │ │ ├── class-wp-media-list-table.php
│ │ │ ├── class-wp-ms-sites-list-table.php
│ │ │ ├── class-wp-ms-themes-list-table.php
│ │ │ ├── class-wp-ms-users-list-table.php
│ │ │ ├── class-wp-plugin-install-list-table.php
│ │ │ ├── class-wp-plugins-list-table.php
│ │ │ ├── class-wp-posts-list-table.php
│ │ │ ├── class-wp-press-this.php
│ │ │ ├── class-wp-site-icon.php
│ │ │ ├── class-wp-terms-list-table.php
│ │ │ ├── class-wp-theme-install-list-table.php
│ │ │ ├── class-wp-themes-list-table.php
│ │ │ ├── class-wp-upgrader-skins.php
│ │ │ ├── class-wp-upgrader.php
│ │ │ ├── class-wp-users-list-table.php
│ │ │ ├── comment.php
│ │ │ ├── continents-cities.php
│ │ │ ├── dashboard.php
│ │ │ ├── deprecated.php
│ │ │ ├── export.php
│ │ │ ├── file.php
│ │ │ ├── image-edit.php
│ │ │ ├── image.php
│ │ │ ├── import.php
│ │ │ ├── list-table.php
│ │ │ ├── media.php
│ │ │ ├── menu.php
│ │ │ ├── meta-boxes.php
│ │ │ ├── misc.php
│ │ │ ├── ms-admin-filters.php
│ │ │ ├── ms-deprecated.php
│ │ │ ├── ms.php
│ │ │ ├── nav-menu.php
│ │ │ ├── plugin-install.php
│ │ │ ├── plugin.php
│ │ │ ├── post.php
│ │ │ ├── revision.php
│ │ │ ├── schema.php
│ │ │ ├── screen.php
│ │ │ ├── taxonomy.php
│ │ │ ├── template.php
│ │ │ ├── theme-install.php
│ │ │ ├── theme.php
│ │ │ ├── translation-install.php
│ │ │ ├── update-core.php
│ │ │ ├── update.php
│ │ │ ├── upgrade.php
│ │ │ ├── user.php
│ │ │ └── widgets.php
│ │ ├── index.php
│ │ ├── install-helper.php
│ │ ├── install.php
│ │ ├── js
│ │ │ ├── accordion.js
│ │ │ ├── accordion.min.js
│ │ │ ├── bookmarklet.js
│ │ │ ├── bookmarklet.min.js
│ │ │ ├── color-picker.js
│ │ │ ├── color-picker.min.js
│ │ │ ├── comment.js
│ │ │ ├── comment.min.js
│ │ │ ├── common.js
│ │ │ ├── common.min.js
│ │ │ ├── custom-background.js
│ │ │ ├── custom-background.min.js
│ │ │ ├── custom-header.js
│ │ │ ├── customize-controls.js
│ │ │ ├── customize-controls.min.js
│ │ │ ├── customize-nav-menus.js
│ │ │ ├── customize-nav-menus.min.js
│ │ │ ├── customize-widgets.js
│ │ │ ├── customize-widgets.min.js
│ │ │ ├── dashboard.js
│ │ │ ├── dashboard.min.js
│ │ │ ├── edit-comments.js
│ │ │ ├── edit-comments.min.js
│ │ │ ├── editor-expand.js
│ │ │ ├── editor-expand.min.js
│ │ │ ├── editor.js
│ │ │ ├── editor.min.js
│ │ │ ├── farbtastic.js
│ │ │ ├── gallery.js
│ │ │ ├── gallery.min.js
│ │ │ ├── image-edit.js
│ │ │ ├── image-edit.min.js
│ │ │ ├── inline-edit-post.js
│ │ │ ├── inline-edit-post.min.js
│ │ │ ├── inline-edit-tax.js
│ │ │ ├── inline-edit-tax.min.js
│ │ │ ├── iris.min.js
│ │ │ ├── language-chooser.js
│ │ │ ├── language-chooser.min.js
│ │ │ ├── link.js
│ │ │ ├── link.min.js
│ │ │ ├── media-gallery.js
│ │ │ ├── media-gallery.min.js
│ │ │ ├── media-upload.js
│ │ │ ├── media-upload.min.js
│ │ │ ├── media.js
│ │ │ ├── media.min.js
│ │ │ ├── nav-menu.js
│ │ │ ├── nav-menu.min.js
│ │ │ ├── password-strength-meter.js
│ │ │ ├── password-strength-meter.min.js
│ │ │ ├── plugin-install.js
│ │ │ ├── plugin-install.min.js
│ │ │ ├── post.js
│ │ │ ├── post.min.js
│ │ │ ├── postbox.js
│ │ │ ├── postbox.min.js
│ │ │ ├── press-this.js
│ │ │ ├── press-this.min.js
│ │ │ ├── revisions.js
│ │ │ ├── revisions.min.js
│ │ │ ├── set-post-thumbnail.js
│ │ │ ├── set-post-thumbnail.min.js
│ │ │ ├── svg-painter.js
│ │ │ ├── svg-painter.min.js
│ │ │ ├── tags-box.js
│ │ │ ├── tags-box.min.js
│ │ │ ├── tags.js
│ │ │ ├── tags.min.js
│ │ │ ├── theme.js
│ │ │ ├── theme.min.js
│ │ │ ├── updates.js
│ │ │ ├── updates.min.js
│ │ │ ├── user-profile.js
│ │ │ ├── user-profile.min.js
│ │ │ ├── user-suggest.js
│ │ │ ├── user-suggest.min.js
│ │ │ ├── widgets.js
│ │ │ ├── widgets.min.js
│ │ │ ├── word-count.js
│ │ │ ├── word-count.min.js
│ │ │ ├── wp-fullscreen-stub.js
│ │ │ ├── wp-fullscreen-stub.min.js
│ │ │ ├── xfn.js
│ │ │ └── xfn.min.js
│ │ ├── link-add.php
│ │ ├── link-manager.php
│ │ ├── link-parse-opml.php
│ │ ├── link.php
│ │ ├── load-scripts.php
│ │ ├── load-styles.php
│ │ ├── maint
│ │ │ └── repair.php
│ │ ├── media-new.php
│ │ ├── media-upload.php
│ │ ├── media.php
│ │ ├── menu-header.php
│ │ ├── menu.php
│ │ ├── moderation.php
│ │ ├── ms-admin.php
│ │ ├── ms-delete-site.php
│ │ ├── ms-edit.php
│ │ ├── ms-options.php
│ │ ├── ms-sites.php
│ │ ├── ms-themes.php
│ │ ├── ms-upgrade-network.php
│ │ ├── ms-users.php
│ │ ├── my-sites.php
│ │ ├── nav-menus.php
│ │ ├── network.php
│ │ ├── network
│ │ │ ├── about.php
│ │ │ ├── admin.php
│ │ │ ├── credits.php
│ │ │ ├── edit.php
│ │ │ ├── freedoms.php
│ │ │ ├── index.php
│ │ │ ├── menu.php
│ │ │ ├── plugin-editor.php
│ │ │ ├── plugin-install.php
│ │ │ ├── plugins.php
│ │ │ ├── profile.php
│ │ │ ├── settings.php
│ │ │ ├── setup.php
│ │ │ ├── site-info.php
│ │ │ ├── site-new.php
│ │ │ ├── site-settings.php
│ │ │ ├── site-themes.php
│ │ │ ├── site-users.php
│ │ │ ├── sites.php
│ │ │ ├── theme-editor.php
│ │ │ ├── theme-install.php
│ │ │ ├── themes.php
│ │ │ ├── update-core.php
│ │ │ ├── update.php
│ │ │ ├── upgrade.php
│ │ │ ├── user-edit.php
│ │ │ ├── user-new.php
│ │ │ └── users.php
│ │ ├── options-discussion.php
│ │ ├── options-general.php
│ │ ├── options-head.php
│ │ ├── options-media.php
│ │ ├── options-permalink.php
│ │ ├── options-reading.php
│ │ ├── options-writing.php
│ │ ├── options.php
│ │ ├── plugin-editor.php
│ │ ├── plugin-install.php
│ │ ├── plugins.php
│ │ ├── post-new.php
│ │ ├── post.php
│ │ ├── press-this.php
│ │ ├── profile.php
│ │ ├── revision.php
│ │ ├── setup-config.php
│ │ ├── theme-editor.php
│ │ ├── theme-install.php
│ │ ├── themes.php
│ │ ├── tools.php
│ │ ├── update-core.php
│ │ ├── update.php
│ │ ├── upgrade-functions.php
│ │ ├── upgrade.php
│ │ ├── upload.php
│ │ ├── user-edit.php
│ │ ├── user-new.php
│ │ ├── user
│ │ │ ├── about.php
│ │ │ ├── admin.php
│ │ │ ├── credits.php
│ │ │ ├── freedoms.php
│ │ │ ├── index.php
│ │ │ ├── menu.php
│ │ │ ├── profile.php
│ │ │ └── user-edit.php
│ │ ├── users.php
│ │ └── widgets.php
│ ├── wp-blog-header.php
│ ├── wp-comments-post.php
│ ├── wp-config-sample.php
│ ├── wp-config.php
│ ├── wp-content
│ │ ├── index.php
│ │ ├── plugins
│ │ │ ├── akismet
│ │ │ │ ├── .htaccess
│ │ │ │ ├── _inc
│ │ │ │ │ ├── akismet.css
│ │ │ │ │ ├── akismet.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ └── img
│ │ │ │ │ │ └── logo-full-2x.png
│ │ │ │ ├── akismet.php
│ │ │ │ ├── class.akismet-admin.php
│ │ │ │ ├── class.akismet-widget.php
│ │ │ │ ├── class.akismet.php
│ │ │ │ ├── index.php
│ │ │ │ ├── readme.txt
│ │ │ │ ├── views
│ │ │ │ │ ├── config.php
│ │ │ │ │ ├── get.php
│ │ │ │ │ ├── notice.php
│ │ │ │ │ ├── start.php
│ │ │ │ │ ├── stats.php
│ │ │ │ │ └── strict.php
│ │ │ │ └── wrapper.php
│ │ │ ├── hello.php
│ │ │ ├── index.php
│ │ │ └── laravel-bridge
│ │ │ │ ├── index.php
│ │ │ │ └── init-laravel.php
│ │ └── themes
│ │ │ ├── index.php
│ │ │ ├── twentyfifteen
│ │ │ ├── 404.php
│ │ │ ├── archive.php
│ │ │ ├── author-bio.php
│ │ │ ├── comments.php
│ │ │ ├── content-link.php
│ │ │ ├── content-none.php
│ │ │ ├── content-page.php
│ │ │ ├── content-search.php
│ │ │ ├── content.php
│ │ │ ├── css
│ │ │ │ ├── editor-style.css
│ │ │ │ ├── ie.css
│ │ │ │ └── ie7.css
│ │ │ ├── footer.php
│ │ │ ├── functions.php
│ │ │ ├── genericons
│ │ │ │ ├── COPYING.txt
│ │ │ │ ├── Genericons.eot
│ │ │ │ ├── Genericons.svg
│ │ │ │ ├── Genericons.ttf
│ │ │ │ ├── Genericons.woff
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ └── genericons.css
│ │ │ ├── header.php
│ │ │ ├── image.php
│ │ │ ├── inc
│ │ │ │ ├── back-compat.php
│ │ │ │ ├── custom-header.php
│ │ │ │ ├── customizer.php
│ │ │ │ └── template-tags.php
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ │ ├── color-scheme-control.js
│ │ │ │ ├── customize-preview.js
│ │ │ │ ├── functions.js
│ │ │ │ ├── html5.js
│ │ │ │ ├── keyboard-image-navigation.js
│ │ │ │ └── skip-link-focus-fix.js
│ │ │ ├── languages
│ │ │ │ └── twentyfifteen.pot
│ │ │ ├── page.php
│ │ │ ├── readme.txt
│ │ │ ├── rtl.css
│ │ │ ├── screenshot.png
│ │ │ ├── search.php
│ │ │ ├── sidebar.php
│ │ │ ├── single.php
│ │ │ └── style.css
│ │ │ ├── twentyfourteen
│ │ │ ├── 404.php
│ │ │ ├── archive.php
│ │ │ ├── author.php
│ │ │ ├── category.php
│ │ │ ├── comments.php
│ │ │ ├── content-aside.php
│ │ │ ├── content-audio.php
│ │ │ ├── content-featured-post.php
│ │ │ ├── content-gallery.php
│ │ │ ├── content-image.php
│ │ │ ├── content-link.php
│ │ │ ├── content-none.php
│ │ │ ├── content-page.php
│ │ │ ├── content-quote.php
│ │ │ ├── content-video.php
│ │ │ ├── content.php
│ │ │ ├── css
│ │ │ │ ├── editor-style.css
│ │ │ │ └── ie.css
│ │ │ ├── featured-content.php
│ │ │ ├── footer.php
│ │ │ ├── functions.php
│ │ │ ├── genericons
│ │ │ │ ├── COPYING.txt
│ │ │ │ ├── Genericons-Regular.otf
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.txt
│ │ │ │ ├── font
│ │ │ │ │ ├── genericons-regular-webfont.eot
│ │ │ │ │ ├── genericons-regular-webfont.svg
│ │ │ │ │ ├── genericons-regular-webfont.ttf
│ │ │ │ │ └── genericons-regular-webfont.woff
│ │ │ │ └── genericons.css
│ │ │ ├── header.php
│ │ │ ├── image.php
│ │ │ ├── images
│ │ │ │ ├── pattern-dark.svg
│ │ │ │ └── pattern-light.svg
│ │ │ ├── inc
│ │ │ │ ├── back-compat.php
│ │ │ │ ├── custom-header.php
│ │ │ │ ├── customizer.php
│ │ │ │ ├── featured-content.php
│ │ │ │ ├── template-tags.php
│ │ │ │ └── widgets.php
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ │ ├── customizer.js
│ │ │ │ ├── featured-content-admin.js
│ │ │ │ ├── functions.js
│ │ │ │ ├── html5.js
│ │ │ │ ├── keyboard-image-navigation.js
│ │ │ │ └── slider.js
│ │ │ ├── languages
│ │ │ │ └── twentyfourteen.pot
│ │ │ ├── page-templates
│ │ │ │ ├── contributors.php
│ │ │ │ └── full-width.php
│ │ │ ├── page.php
│ │ │ ├── readme.txt
│ │ │ ├── rtl.css
│ │ │ ├── screenshot.png
│ │ │ ├── search.php
│ │ │ ├── sidebar-content.php
│ │ │ ├── sidebar-footer.php
│ │ │ ├── sidebar.php
│ │ │ ├── single.php
│ │ │ ├── style.css
│ │ │ ├── tag.php
│ │ │ └── taxonomy-post_format.php
│ │ │ └── twentythirteen
│ │ │ ├── 404.php
│ │ │ ├── archive.php
│ │ │ ├── author-bio.php
│ │ │ ├── author.php
│ │ │ ├── category.php
│ │ │ ├── comments.php
│ │ │ ├── content-aside.php
│ │ │ ├── content-audio.php
│ │ │ ├── content-chat.php
│ │ │ ├── content-gallery.php
│ │ │ ├── content-image.php
│ │ │ ├── content-link.php
│ │ │ ├── content-none.php
│ │ │ ├── content-quote.php
│ │ │ ├── content-status.php
│ │ │ ├── content-video.php
│ │ │ ├── content.php
│ │ │ ├── css
│ │ │ ├── editor-style.css
│ │ │ └── ie.css
│ │ │ ├── footer.php
│ │ │ ├── functions.php
│ │ │ ├── genericons
│ │ │ ├── COPYING.txt
│ │ │ ├── Genericons-Regular.otf
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.txt
│ │ │ ├── font
│ │ │ │ ├── genericons-regular-webfont.eot
│ │ │ │ ├── genericons-regular-webfont.svg
│ │ │ │ ├── genericons-regular-webfont.ttf
│ │ │ │ └── genericons-regular-webfont.woff
│ │ │ └── genericons.css
│ │ │ ├── header.php
│ │ │ ├── image.php
│ │ │ ├── images
│ │ │ ├── dotted-line-2x.png
│ │ │ ├── dotted-line-light-2x.png
│ │ │ ├── dotted-line-light.png
│ │ │ ├── dotted-line.png
│ │ │ ├── headers
│ │ │ │ ├── circle-thumbnail.png
│ │ │ │ ├── circle.png
│ │ │ │ ├── diamond-thumbnail.png
│ │ │ │ ├── diamond.png
│ │ │ │ ├── star-thumbnail.png
│ │ │ │ └── star.png
│ │ │ ├── search-icon-2x.png
│ │ │ └── search-icon.png
│ │ │ ├── inc
│ │ │ ├── back-compat.php
│ │ │ └── custom-header.php
│ │ │ ├── index.php
│ │ │ ├── js
│ │ │ ├── functions.js
│ │ │ ├── html5.js
│ │ │ └── theme-customizer.js
│ │ │ ├── languages
│ │ │ └── twentythirteen.pot
│ │ │ ├── page.php
│ │ │ ├── readme.txt
│ │ │ ├── rtl.css
│ │ │ ├── screenshot.png
│ │ │ ├── search.php
│ │ │ ├── sidebar-main.php
│ │ │ ├── sidebar.php
│ │ │ ├── single.php
│ │ │ ├── style.css
│ │ │ ├── tag.php
│ │ │ └── taxonomy-post_format.php
│ ├── wp-cron.php
│ ├── wp-includes
│ │ ├── ID3
│ │ │ ├── getid3.lib.php
│ │ │ ├── getid3.php
│ │ │ ├── license.commercial.txt
│ │ │ ├── license.txt
│ │ │ ├── module.audio-video.asf.php
│ │ │ ├── module.audio-video.flv.php
│ │ │ ├── module.audio-video.matroska.php
│ │ │ ├── module.audio-video.quicktime.php
│ │ │ ├── module.audio-video.riff.php
│ │ │ ├── module.audio.ac3.php
│ │ │ ├── module.audio.dts.php
│ │ │ ├── module.audio.flac.php
│ │ │ ├── module.audio.mp3.php
│ │ │ ├── module.audio.ogg.php
│ │ │ ├── module.tag.apetag.php
│ │ │ ├── module.tag.id3v1.php
│ │ │ ├── module.tag.id3v2.php
│ │ │ ├── module.tag.lyrics3.php
│ │ │ └── readme.txt
│ │ ├── SimplePie
│ │ │ ├── Author.php
│ │ │ ├── Cache.php
│ │ │ ├── Cache
│ │ │ │ ├── Base.php
│ │ │ │ ├── DB.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Memcache.php
│ │ │ │ └── MySQL.php
│ │ │ ├── Caption.php
│ │ │ ├── Category.php
│ │ │ ├── Content
│ │ │ │ └── Type
│ │ │ │ │ └── Sniffer.php
│ │ │ ├── Copyright.php
│ │ │ ├── Core.php
│ │ │ ├── Credit.php
│ │ │ ├── Decode
│ │ │ │ └── HTML
│ │ │ │ │ └── Entities.php
│ │ │ ├── Enclosure.php
│ │ │ ├── Exception.php
│ │ │ ├── File.php
│ │ │ ├── HTTP
│ │ │ │ └── Parser.php
│ │ │ ├── IRI.php
│ │ │ ├── Item.php
│ │ │ ├── Locator.php
│ │ │ ├── Misc.php
│ │ │ ├── Net
│ │ │ │ └── IPv6.php
│ │ │ ├── Parse
│ │ │ │ └── Date.php
│ │ │ ├── Parser.php
│ │ │ ├── Rating.php
│ │ │ ├── Registry.php
│ │ │ ├── Restriction.php
│ │ │ ├── Sanitize.php
│ │ │ ├── Source.php
│ │ │ ├── XML
│ │ │ │ └── Declaration
│ │ │ │ │ └── Parser.php
│ │ │ └── gzdecode.php
│ │ ├── Text
│ │ │ ├── Diff.php
│ │ │ └── Diff
│ │ │ │ ├── Engine
│ │ │ │ ├── native.php
│ │ │ │ ├── shell.php
│ │ │ │ ├── string.php
│ │ │ │ └── xdiff.php
│ │ │ │ ├── Renderer.php
│ │ │ │ └── Renderer
│ │ │ │ └── inline.php
│ │ ├── admin-bar.php
│ │ ├── atomlib.php
│ │ ├── author-template.php
│ │ ├── bookmark-template.php
│ │ ├── bookmark.php
│ │ ├── cache.php
│ │ ├── canonical.php
│ │ ├── capabilities.php
│ │ ├── category-template.php
│ │ ├── category.php
│ │ ├── certificates
│ │ │ └── ca-bundle.crt
│ │ ├── class-IXR.php
│ │ ├── class-feed.php
│ │ ├── class-http.php
│ │ ├── class-json.php
│ │ ├── class-oembed.php
│ │ ├── class-phpass.php
│ │ ├── class-phpmailer.php
│ │ ├── class-pop3.php
│ │ ├── class-simplepie.php
│ │ ├── class-smtp.php
│ │ ├── class-snoopy.php
│ │ ├── class-wp-admin-bar.php
│ │ ├── class-wp-ajax-response.php
│ │ ├── class-wp-customize-control.php
│ │ ├── class-wp-customize-manager.php
│ │ ├── class-wp-customize-nav-menus.php
│ │ ├── class-wp-customize-panel.php
│ │ ├── class-wp-customize-section.php
│ │ ├── class-wp-customize-setting.php
│ │ ├── class-wp-customize-widgets.php
│ │ ├── class-wp-editor.php
│ │ ├── class-wp-embed.php
│ │ ├── class-wp-error.php
│ │ ├── class-wp-http-ixr-client.php
│ │ ├── class-wp-image-editor-gd.php
│ │ ├── class-wp-image-editor-imagick.php
│ │ ├── class-wp-image-editor.php
│ │ ├── class-wp-theme.php
│ │ ├── class-wp-walker.php
│ │ ├── class-wp-xmlrpc-server.php
│ │ ├── class-wp.php
│ │ ├── class.wp-dependencies.php
│ │ ├── class.wp-scripts.php
│ │ ├── class.wp-styles.php
│ │ ├── comment-template.php
│ │ ├── comment.php
│ │ ├── compat.php
│ │ ├── cron.php
│ │ ├── css
│ │ │ ├── admin-bar-rtl.css
│ │ │ ├── admin-bar-rtl.min.css
│ │ │ ├── admin-bar.css
│ │ │ ├── admin-bar.min.css
│ │ │ ├── buttons-rtl.css
│ │ │ ├── buttons-rtl.min.css
│ │ │ ├── buttons.css
│ │ │ ├── buttons.min.css
│ │ │ ├── customize-preview.css
│ │ │ ├── customize-preview.min.css
│ │ │ ├── dashicons.css
│ │ │ ├── dashicons.min.css
│ │ │ ├── editor-rtl.css
│ │ │ ├── editor-rtl.min.css
│ │ │ ├── editor.css
│ │ │ ├── editor.min.css
│ │ │ ├── jquery-ui-dialog-rtl.css
│ │ │ ├── jquery-ui-dialog-rtl.min.css
│ │ │ ├── jquery-ui-dialog.css
│ │ │ ├── jquery-ui-dialog.min.css
│ │ │ ├── media-views-rtl.css
│ │ │ ├── media-views-rtl.min.css
│ │ │ ├── media-views.css
│ │ │ ├── media-views.min.css
│ │ │ ├── wp-auth-check-rtl.css
│ │ │ ├── wp-auth-check-rtl.min.css
│ │ │ ├── wp-auth-check.css
│ │ │ ├── wp-auth-check.min.css
│ │ │ ├── wp-pointer-rtl.css
│ │ │ ├── wp-pointer-rtl.min.css
│ │ │ ├── wp-pointer.css
│ │ │ └── wp-pointer.min.css
│ │ ├── date.php
│ │ ├── default-constants.php
│ │ ├── default-filters.php
│ │ ├── default-widgets.php
│ │ ├── deprecated.php
│ │ ├── feed-atom-comments.php
│ │ ├── feed-atom.php
│ │ ├── feed-rdf.php
│ │ ├── feed-rss.php
│ │ ├── feed-rss2-comments.php
│ │ ├── feed-rss2.php
│ │ ├── feed.php
│ │ ├── fonts
│ │ │ ├── dashicons.eot
│ │ │ ├── dashicons.svg
│ │ │ ├── dashicons.ttf
│ │ │ └── dashicons.woff
│ │ ├── formatting.php
│ │ ├── functions.php
│ │ ├── functions.wp-scripts.php
│ │ ├── functions.wp-styles.php
│ │ ├── general-template.php
│ │ ├── http.php
│ │ ├── images
│ │ │ ├── admin-bar-sprite-2x.png
│ │ │ ├── admin-bar-sprite.png
│ │ │ ├── arrow-pointer-blue-2x.png
│ │ │ ├── arrow-pointer-blue.png
│ │ │ ├── blank.gif
│ │ │ ├── crystal
│ │ │ │ ├── archive.png
│ │ │ │ ├── audio.png
│ │ │ │ ├── code.png
│ │ │ │ ├── default.png
│ │ │ │ ├── document.png
│ │ │ │ ├── interactive.png
│ │ │ │ ├── license.txt
│ │ │ │ ├── spreadsheet.png
│ │ │ │ ├── text.png
│ │ │ │ └── video.png
│ │ │ ├── down_arrow-2x.gif
│ │ │ ├── down_arrow.gif
│ │ │ ├── icon-pointer-flag-2x.png
│ │ │ ├── icon-pointer-flag.png
│ │ │ ├── media
│ │ │ │ ├── archive.png
│ │ │ │ ├── audio.png
│ │ │ │ ├── code.png
│ │ │ │ ├── default.png
│ │ │ │ ├── document.png
│ │ │ │ ├── interactive.png
│ │ │ │ ├── spreadsheet.png
│ │ │ │ ├── text.png
│ │ │ │ └── video.png
│ │ │ ├── rss-2x.png
│ │ │ ├── rss.png
│ │ │ ├── smilies
│ │ │ │ ├── frownie.png
│ │ │ │ ├── icon_arrow.gif
│ │ │ │ ├── icon_biggrin.gif
│ │ │ │ ├── icon_confused.gif
│ │ │ │ ├── icon_cool.gif
│ │ │ │ ├── icon_cry.gif
│ │ │ │ ├── icon_eek.gif
│ │ │ │ ├── icon_evil.gif
│ │ │ │ ├── icon_exclaim.gif
│ │ │ │ ├── icon_idea.gif
│ │ │ │ ├── icon_lol.gif
│ │ │ │ ├── icon_mad.gif
│ │ │ │ ├── icon_mrgreen.gif
│ │ │ │ ├── icon_neutral.gif
│ │ │ │ ├── icon_question.gif
│ │ │ │ ├── icon_razz.gif
│ │ │ │ ├── icon_redface.gif
│ │ │ │ ├── icon_rolleyes.gif
│ │ │ │ ├── icon_sad.gif
│ │ │ │ ├── icon_smile.gif
│ │ │ │ ├── icon_surprised.gif
│ │ │ │ ├── icon_twisted.gif
│ │ │ │ ├── icon_wink.gif
│ │ │ │ ├── mrgreen.png
│ │ │ │ ├── rolleyes.png
│ │ │ │ └── simple-smile.png
│ │ │ ├── spinner-2x.gif
│ │ │ ├── spinner.gif
│ │ │ ├── toggle-arrow-2x.png
│ │ │ ├── toggle-arrow.png
│ │ │ ├── uploader-icons-2x.png
│ │ │ ├── uploader-icons.png
│ │ │ ├── wlw
│ │ │ │ ├── wp-comments.png
│ │ │ │ ├── wp-icon.png
│ │ │ │ └── wp-watermark.png
│ │ │ ├── wpicons-2x.png
│ │ │ ├── wpicons.png
│ │ │ ├── wpspin-2x.gif
│ │ │ ├── wpspin.gif
│ │ │ ├── xit-2x.gif
│ │ │ └── xit.gif
│ │ ├── js
│ │ │ ├── admin-bar.js
│ │ │ ├── admin-bar.min.js
│ │ │ ├── autosave.js
│ │ │ ├── autosave.min.js
│ │ │ ├── backbone.min.js
│ │ │ ├── colorpicker.js
│ │ │ ├── colorpicker.min.js
│ │ │ ├── comment-reply.js
│ │ │ ├── comment-reply.min.js
│ │ │ ├── crop
│ │ │ │ ├── cropper.css
│ │ │ │ ├── cropper.js
│ │ │ │ ├── marqueeHoriz.gif
│ │ │ │ └── marqueeVert.gif
│ │ │ ├── customize-base.js
│ │ │ ├── customize-base.min.js
│ │ │ ├── customize-loader.js
│ │ │ ├── customize-loader.min.js
│ │ │ ├── customize-models.js
│ │ │ ├── customize-models.min.js
│ │ │ ├── customize-preview-nav-menus.js
│ │ │ ├── customize-preview-nav-menus.min.js
│ │ │ ├── customize-preview-widgets.js
│ │ │ ├── customize-preview-widgets.min.js
│ │ │ ├── customize-preview.js
│ │ │ ├── customize-preview.min.js
│ │ │ ├── customize-views.js
│ │ │ ├── customize-views.min.js
│ │ │ ├── heartbeat.js
│ │ │ ├── heartbeat.min.js
│ │ │ ├── hoverIntent.js
│ │ │ ├── hoverIntent.min.js
│ │ │ ├── imgareaselect
│ │ │ │ ├── border-anim-h.gif
│ │ │ │ ├── border-anim-v.gif
│ │ │ │ ├── imgareaselect.css
│ │ │ │ ├── jquery.imgareaselect.js
│ │ │ │ └── jquery.imgareaselect.min.js
│ │ │ ├── jcrop
│ │ │ │ ├── Jcrop.gif
│ │ │ │ ├── jquery.Jcrop.min.css
│ │ │ │ └── jquery.Jcrop.min.js
│ │ │ ├── jquery
│ │ │ │ ├── jquery-migrate.js
│ │ │ │ ├── jquery-migrate.min.js
│ │ │ │ ├── jquery.color.min.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.form.min.js
│ │ │ │ ├── jquery.hotkeys.js
│ │ │ │ ├── jquery.hotkeys.min.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.masonry.min.js
│ │ │ │ ├── jquery.query.js
│ │ │ │ ├── jquery.schedule.js
│ │ │ │ ├── jquery.serialize-object.js
│ │ │ │ ├── jquery.table-hotkeys.js
│ │ │ │ ├── jquery.table-hotkeys.min.js
│ │ │ │ ├── jquery.ui.touch-punch.js
│ │ │ │ ├── suggest.js
│ │ │ │ ├── suggest.min.js
│ │ │ │ └── ui
│ │ │ │ │ ├── accordion.min.js
│ │ │ │ │ ├── autocomplete.min.js
│ │ │ │ │ ├── button.min.js
│ │ │ │ │ ├── core.min.js
│ │ │ │ │ ├── datepicker.min.js
│ │ │ │ │ ├── dialog.min.js
│ │ │ │ │ ├── draggable.min.js
│ │ │ │ │ ├── droppable.min.js
│ │ │ │ │ ├── effect-blind.min.js
│ │ │ │ │ ├── effect-bounce.min.js
│ │ │ │ │ ├── effect-clip.min.js
│ │ │ │ │ ├── effect-drop.min.js
│ │ │ │ │ ├── effect-explode.min.js
│ │ │ │ │ ├── effect-fade.min.js
│ │ │ │ │ ├── effect-fold.min.js
│ │ │ │ │ ├── effect-highlight.min.js
│ │ │ │ │ ├── effect-puff.min.js
│ │ │ │ │ ├── effect-pulsate.min.js
│ │ │ │ │ ├── effect-scale.min.js
│ │ │ │ │ ├── effect-shake.min.js
│ │ │ │ │ ├── effect-size.min.js
│ │ │ │ │ ├── effect-slide.min.js
│ │ │ │ │ ├── effect-transfer.min.js
│ │ │ │ │ ├── effect.min.js
│ │ │ │ │ ├── menu.min.js
│ │ │ │ │ ├── mouse.min.js
│ │ │ │ │ ├── position.min.js
│ │ │ │ │ ├── progressbar.min.js
│ │ │ │ │ ├── resizable.min.js
│ │ │ │ │ ├── selectable.min.js
│ │ │ │ │ ├── selectmenu.min.js
│ │ │ │ │ ├── slider.min.js
│ │ │ │ │ ├── sortable.min.js
│ │ │ │ │ ├── spinner.min.js
│ │ │ │ │ ├── tabs.min.js
│ │ │ │ │ ├── tooltip.min.js
│ │ │ │ │ └── widget.min.js
│ │ │ ├── json2.js
│ │ │ ├── json2.min.js
│ │ │ ├── masonry.min.js
│ │ │ ├── mce-view.js
│ │ │ ├── mce-view.min.js
│ │ │ ├── media-audiovideo.js
│ │ │ ├── media-audiovideo.min.js
│ │ │ ├── media-editor.js
│ │ │ ├── media-editor.min.js
│ │ │ ├── media-grid.js
│ │ │ ├── media-grid.min.js
│ │ │ ├── media-models.js
│ │ │ ├── media-models.min.js
│ │ │ ├── media-views.js
│ │ │ ├── media-views.min.js
│ │ │ ├── mediaelement
│ │ │ │ ├── background.png
│ │ │ │ ├── bigplay.png
│ │ │ │ ├── bigplay.svg
│ │ │ │ ├── controls.png
│ │ │ │ ├── controls.svg
│ │ │ │ ├── flashmediaelement.swf
│ │ │ │ ├── froogaloop.min.js
│ │ │ │ ├── loading.gif
│ │ │ │ ├── mediaelement-and-player.min.js
│ │ │ │ ├── mediaelementplayer.min.css
│ │ │ │ ├── silverlightmediaelement.xap
│ │ │ │ ├── skipback.png
│ │ │ │ ├── wp-mediaelement.css
│ │ │ │ ├── wp-mediaelement.js
│ │ │ │ └── wp-playlist.js
│ │ │ ├── plupload
│ │ │ │ ├── handlers.js
│ │ │ │ ├── handlers.min.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── plupload.flash.swf
│ │ │ │ ├── plupload.full.min.js
│ │ │ │ ├── plupload.silverlight.xap
│ │ │ │ ├── wp-plupload.js
│ │ │ │ └── wp-plupload.min.js
│ │ │ ├── quicktags.js
│ │ │ ├── quicktags.min.js
│ │ │ ├── shortcode.js
│ │ │ ├── shortcode.min.js
│ │ │ ├── swfobject.js
│ │ │ ├── swfupload
│ │ │ │ ├── handlers.js
│ │ │ │ ├── handlers.min.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── plugins
│ │ │ │ │ ├── swfupload.cookies.js
│ │ │ │ │ ├── swfupload.queue.js
│ │ │ │ │ ├── swfupload.speed.js
│ │ │ │ │ └── swfupload.swfobject.js
│ │ │ │ ├── swfupload.js
│ │ │ │ └── swfupload.swf
│ │ │ ├── thickbox
│ │ │ │ ├── loadingAnimation.gif
│ │ │ │ ├── macFFBgHack.png
│ │ │ │ ├── thickbox.css
│ │ │ │ └── thickbox.js
│ │ │ ├── tinymce
│ │ │ │ ├── langs
│ │ │ │ │ └── wp-langs-en.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── plugins
│ │ │ │ │ ├── charmap
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── colorpicker
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── compat3x
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── dialog.css
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── directionality
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── fullscreen
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── hr
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── lists
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── media
│ │ │ │ │ │ ├── moxieplayer.swf
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── paste
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── tabfocus
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── textcolor
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wordpress
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wpautoresize
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wpdialogs
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wpeditimage
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wpemoji
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wpgallery
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wplink
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── wptextpattern
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ └── wpview
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ ├── skins
│ │ │ │ │ ├── lightgray
│ │ │ │ │ │ ├── content.inline.min.css
│ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── readme.md
│ │ │ │ │ │ │ ├── tinymce-small.eot
│ │ │ │ │ │ │ ├── tinymce-small.svg
│ │ │ │ │ │ │ ├── tinymce-small.ttf
│ │ │ │ │ │ │ ├── tinymce-small.woff
│ │ │ │ │ │ │ ├── tinymce.eot
│ │ │ │ │ │ │ ├── tinymce.svg
│ │ │ │ │ │ │ ├── tinymce.ttf
│ │ │ │ │ │ │ └── tinymce.woff
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ │ ├── loader.gif
│ │ │ │ │ │ │ ├── object.gif
│ │ │ │ │ │ │ └── trans.gif
│ │ │ │ │ │ ├── skin.ie7.min.css
│ │ │ │ │ │ └── skin.min.css
│ │ │ │ │ └── wordpress
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ ├── audio.png
│ │ │ │ │ │ ├── dashicon-edit.png
│ │ │ │ │ │ ├── dashicon-no.png
│ │ │ │ │ │ ├── embedded.png
│ │ │ │ │ │ ├── gallery-2x.png
│ │ │ │ │ │ ├── gallery.png
│ │ │ │ │ │ ├── more-2x.png
│ │ │ │ │ │ ├── more.png
│ │ │ │ │ │ ├── pagebreak-2x.png
│ │ │ │ │ │ ├── pagebreak.png
│ │ │ │ │ │ ├── playlist-audio.png
│ │ │ │ │ │ ├── playlist-video.png
│ │ │ │ │ │ └── video.png
│ │ │ │ │ │ └── wp-content.css
│ │ │ │ ├── themes
│ │ │ │ │ └── modern
│ │ │ │ │ │ ├── theme.js
│ │ │ │ │ │ └── theme.min.js
│ │ │ │ ├── tiny_mce_popup.js
│ │ │ │ ├── tinymce.min.js
│ │ │ │ ├── utils
│ │ │ │ │ ├── editable_selects.js
│ │ │ │ │ ├── form_utils.js
│ │ │ │ │ ├── mctabs.js
│ │ │ │ │ └── validate.js
│ │ │ │ ├── wp-tinymce.js.gz
│ │ │ │ └── wp-tinymce.php
│ │ │ ├── tw-sack.js
│ │ │ ├── tw-sack.min.js
│ │ │ ├── twemoji.js
│ │ │ ├── twemoji.min.js
│ │ │ ├── underscore.min.js
│ │ │ ├── utils.js
│ │ │ ├── utils.min.js
│ │ │ ├── wp-a11y.js
│ │ │ ├── wp-a11y.min.js
│ │ │ ├── wp-ajax-response.js
│ │ │ ├── wp-ajax-response.min.js
│ │ │ ├── wp-auth-check.js
│ │ │ ├── wp-auth-check.min.js
│ │ │ ├── wp-backbone.js
│ │ │ ├── wp-backbone.min.js
│ │ │ ├── wp-emoji-loader.js
│ │ │ ├── wp-emoji-loader.min.js
│ │ │ ├── wp-emoji-release.min.js
│ │ │ ├── wp-emoji.js
│ │ │ ├── wp-emoji.min.js
│ │ │ ├── wp-list-revisions.js
│ │ │ ├── wp-list-revisions.min.js
│ │ │ ├── wp-lists.js
│ │ │ ├── wp-lists.min.js
│ │ │ ├── wp-pointer.js
│ │ │ ├── wp-pointer.min.js
│ │ │ ├── wp-util.js
│ │ │ ├── wp-util.min.js
│ │ │ ├── wpdialog.js
│ │ │ ├── wpdialog.min.js
│ │ │ ├── wplink.js
│ │ │ ├── wplink.min.js
│ │ │ ├── zxcvbn-async.js
│ │ │ ├── zxcvbn-async.min.js
│ │ │ └── zxcvbn.min.js
│ │ ├── kses.php
│ │ ├── l10n.php
│ │ ├── link-template.php
│ │ ├── load.php
│ │ ├── locale.php
│ │ ├── media-template.php
│ │ ├── media.php
│ │ ├── meta.php
│ │ ├── ms-blogs.php
│ │ ├── ms-default-constants.php
│ │ ├── ms-default-filters.php
│ │ ├── ms-deprecated.php
│ │ ├── ms-files.php
│ │ ├── ms-functions.php
│ │ ├── ms-load.php
│ │ ├── ms-settings.php
│ │ ├── nav-menu-template.php
│ │ ├── nav-menu.php
│ │ ├── option.php
│ │ ├── pluggable-deprecated.php
│ │ ├── pluggable.php
│ │ ├── plugin.php
│ │ ├── pomo
│ │ │ ├── entry.php
│ │ │ ├── mo.php
│ │ │ ├── po.php
│ │ │ ├── streams.php
│ │ │ └── translations.php
│ │ ├── post-formats.php
│ │ ├── post-template.php
│ │ ├── post-thumbnail-template.php
│ │ ├── post.php
│ │ ├── query.php
│ │ ├── registration-functions.php
│ │ ├── registration.php
│ │ ├── revision.php
│ │ ├── rewrite.php
│ │ ├── rss-functions.php
│ │ ├── rss.php
│ │ ├── script-loader.php
│ │ ├── session.php
│ │ ├── shortcodes.php
│ │ ├── taxonomy.php
│ │ ├── template-loader.php
│ │ ├── template.php
│ │ ├── theme-compat
│ │ │ ├── comments-popup.php
│ │ │ ├── comments.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ └── sidebar.php
│ │ ├── theme.php
│ │ ├── update.php
│ │ ├── user.php
│ │ ├── vars.php
│ │ ├── version.php
│ │ ├── widgets.php
│ │ ├── wlwmanifest.xml
│ │ ├── wp-db.php
│ │ └── wp-diff.php
│ ├── wp-links-opml.php
│ ├── wp-load.php
│ ├── wp-login.php
│ ├── wp-mail.php
│ ├── wp-settings.php
│ ├── wp-signup.php
│ ├── wp-trackback.php
│ └── xmlrpc.php
├── css
│ ├── app.css
│ ├── app.css.map
│ ├── bootstrap-datepicker.css
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap_backend.css
│ ├── bootstrap_backend.css.map
│ ├── cms.css
│ └── cms.css.map
├── favicon.ico
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── index.php
├── js
│ ├── bootstrap-datepicker.js
│ └── bootstrap.min.js
└── robots.txt
├── readme.md
├── resources
├── assets
│ ├── less.zip
│ ├── less
│ │ ├── bootstrap
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── custom_scaffolding.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins.less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── bootstrap_backend.less
│ │ └── cms.less
│ └── sass
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── admin_layout.blade.php
│ ├── cms
│ ├── common
│ │ └── pagination.blade.php
│ └── events
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── list.blade.php
│ │ └── partials
│ │ └── _form.blade.php
│ ├── errors
│ └── 503.blade.php
│ ├── vendor
│ └── .gitkeep
│ └── welcome.blade.php
├── server.php
├── storage
├── app
│ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
└── tests
├── ExampleTest.php
└── TestCase.php
/.gitignore:
--------------------------------------------------------------------------------
1 | /.vagrant
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Using Laravel 5 within WordPress : Creating the backend
2 |
3 | [View the full tutorial here](http://rundef.com/using-laravel-within-wordpress-backend)
4 |
5 |
6 |
7 |
8 | As you can see below, our Laravel-generated admin pages are fully integrated within WordPress.
9 |
10 | It looks pretty WordPress-ish, doesn't it ?
11 |
12 |
13 | 
14 |
15 | 
16 |
--------------------------------------------------------------------------------
/Vagrantfile:
--------------------------------------------------------------------------------
1 | Vagrant.configure(2) do |config|
2 | config.vm.box = "ubuntu/trusty64"
3 | config.vm.network "forwarded_port", guest: 80, host: 8080, auto_correct: true
4 | config.vm.network "private_network", ip: "10.10.10.10"
5 | config.vm.synced_folder "./site", "/home/vagrant/site",owner: "vagrant", group: "www-data", mount_options: ["dmode=775,fmode=664"]
6 |
7 | config.vm.provider "virtualbox" do |vb|
8 | vb.gui = false
9 | vb.memory = "1024"
10 | end
11 |
12 | config.vm.provision "shell", path: "Vagrantprovision.sh"
13 | end
--------------------------------------------------------------------------------
/site/.env.example:
--------------------------------------------------------------------------------
1 | APP_ENV=local
2 | APP_DEBUG=true
3 | APP_KEY=SomeRandomString
4 |
5 | DB_HOST=localhost
6 | DB_DATABASE=homestead
7 | DB_USERNAME=homestead
8 | DB_PASSWORD=secret
9 |
10 | CACHE_DRIVER=file
11 | SESSION_DRIVER=file
12 | QUEUE_DRIVER=sync
13 |
14 | MAIL_DRIVER=smtp
15 | MAIL_HOST=mailtrap.io
16 | MAIL_PORT=2525
17 | MAIL_USERNAME=null
18 | MAIL_PASSWORD=null
19 | MAIL_ENCRYPTION=null
20 |
--------------------------------------------------------------------------------
/site/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.less linguist-vendored
4 |
--------------------------------------------------------------------------------
/site/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /node_modules
3 | Homestead.yaml
4 | Homestead.json
5 | .env
6 |
--------------------------------------------------------------------------------
/site/app/CMSPaginator.php:
--------------------------------------------------------------------------------
1 | pageAlias = $pageAlias;
12 | }
13 |
14 | public function url($page)
15 | {
16 | if ($page <= 0) {
17 | $page = 1;
18 | }
19 |
20 | return crud_url($this->pageAlias, 'cms/'.$this->pageAlias.'?'.$this->pageName.'='.$page);
21 | }
22 | }
--------------------------------------------------------------------------------
/site/app/Console/Commands/Inspire.php:
--------------------------------------------------------------------------------
1 | comment(PHP_EOL.Inspiring::quote().PHP_EOL);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/site/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | ->hourly();
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/site/app/Events/Event.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/site/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | auth = $auth;
26 | }
27 |
28 | /**
29 | * Handle an incoming request.
30 | *
31 | * @param \Illuminate\Http\Request $request
32 | * @param \Closure $next
33 | * @return mixed
34 | */
35 | public function handle($request, Closure $next)
36 | {
37 | if ($this->auth->guest()) {
38 | if ($request->ajax()) {
39 | return response('Unauthorized.', 401);
40 | } else {
41 | return redirect()->guest('auth/login');
42 | }
43 | }
44 |
45 | return $next($request);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/site/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | auth = $auth;
26 | }
27 |
28 | /**
29 | * Handle an incoming request.
30 | *
31 | * @param \Illuminate\Http\Request $request
32 | * @param \Closure $next
33 | * @return mixed
34 | */
35 | public function handle($request, Closure $next)
36 | {
37 | if ($this->auth->check()) {
38 | return redirect('/home');
39 | }
40 |
41 | return $next($request);
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/site/app/Http/Middleware/VerifyCsrfToken.php:
--------------------------------------------------------------------------------
1 | 1,
14 | ];
15 | }
--------------------------------------------------------------------------------
/site/app/Policies/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rundef/laravel_wordpress/02c8860a307e9916249c60181b6d8cd07a4452c1/site/app/Policies/.gitkeep
--------------------------------------------------------------------------------
/site/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any application authentication / authorization services.
21 | *
22 | * @param \Illuminate\Contracts\Auth\Access\Gate $gate
23 | * @return void
24 | */
25 | public function boot(GateContract $gate)
26 | {
27 | parent::registerPolicies($gate);
28 |
29 | //
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/site/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any other events for your application.
23 | *
24 | * @param \Illuminate\Contracts\Events\Dispatcher $events
25 | * @return void
26 | */
27 | public function boot(DispatcherContract $events)
28 | {
29 | parent::boot($events);
30 |
31 | //
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/site/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/site/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/site/database/factories/ModelFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
15 | return [
16 | 'name' => $faker->name,
17 | 'email' => $faker->email,
18 | 'password' => bcrypt(str_random(10)),
19 | 'remember_token' => str_random(10),
20 | ];
21 | });
22 |
--------------------------------------------------------------------------------
/site/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rundef/laravel_wordpress/02c8860a307e9916249c60181b6d8cd07a4452c1/site/database/migrations/.gitkeep
--------------------------------------------------------------------------------
/site/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->string('name');
18 | $table->string('email')->unique();
19 | $table->string('password', 60);
20 | $table->rememberToken();
21 | $table->timestamps();
22 | });
23 | }
24 |
25 | /**
26 | * Reverse the migrations.
27 | *
28 | * @return void
29 | */
30 | public function down()
31 | {
32 | Schema::drop('users');
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/site/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
17 | $table->string('token')->index();
18 | $table->timestamp('created_at');
19 | });
20 | }
21 |
22 | /**
23 | * Reverse the migrations.
24 | *
25 | * @return void
26 | */
27 | public function down()
28 | {
29 | Schema::drop('password_resets');
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/site/database/migrations/2015_09_12_115321_create_events_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
12 | $table->boolean('active')->default(1);
13 | $table->date('start_date');
14 | $table->date('end_date');
15 | $table->string('name');
16 | $table->text('description')->nullable();
17 | $table->timestamps();
18 | $table->softDeletes();
19 | });
20 | }
21 |
22 | public function down()
23 | {
24 | Schema::drop('events');
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/site/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rundef/laravel_wordpress/02c8860a307e9916249c60181b6d8cd07a4452c1/site/database/seeds/.gitkeep
--------------------------------------------------------------------------------
/site/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(EventSeeder::class);
18 |
19 | Model::reguard();
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/site/database/seeds/EventSeeder.php:
--------------------------------------------------------------------------------
1 | 'McGill X-1 Demo Day 2015',
11 | 'start_date' => '2015-09-05',
12 | 'end_date' => '2015-09-05',
13 | 'description' => 'The McGill X-1 Accelerator is an intensive 10-week summer program to learn the skills to become better entrepreneurs from June 15 to September 9.'
14 | ]);
15 | Event::create([
16 | 'name' => '2015 Go Global Expo - Montreal',
17 | 'start_date' => '2015-09-26',
18 | 'end_date' => '2015-09-26',
19 | 'description' => 'The Go Global Expo (www.letsgoglobal.ca) is a FREE expo taking place September 26 at the Palais des Congrès in downtown Montreal. It features international opportunities for those who are considering a graduate or undergraduate degree abroad, an exchange, international work or internships, and volunteering abroad.'
20 | ]);
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/site/gulpfile.js:
--------------------------------------------------------------------------------
1 | var elixir = require('laravel-elixir');
2 |
3 | elixir(function(mix) {
4 | mix.sass('app.scss');
5 | mix.less('bootstrap_backend.less', 'public/css/bootstrap_backend.css');
6 | mix.less('cms.less', 'public/css/cms.css');
7 | mix.less('bootstrap/bootstrap.less', 'public/css/bootstrap.css');
8 | });
--------------------------------------------------------------------------------
/site/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "devDependencies": {
4 | "gulp": "^3.8.8"
5 | },
6 | "dependencies": {
7 | "laravel-elixir": "^3.0.0",
8 | "bootstrap-sass": "^3.0.0"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/site/phpspec.yml:
--------------------------------------------------------------------------------
1 | suites:
2 | main:
3 | namespace: App
4 | psr4_prefix: App
5 | src_path: app
--------------------------------------------------------------------------------
/site/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |