├── .editorconfig ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .jscsrc ├── .jshintignore ├── .travis.yml ├── 404.php ├── README.md ├── README.txt ├── archive.php ├── author.php ├── category.php ├── comments.php ├── docker-compose.yml ├── eject.sh ├── externals ├── class-tgm-plugin-activation.php └── class-wp-bootstrap-navwalker.php ├── footer.php ├── formats ├── format-aside.php ├── format-audio.php ├── format-chat.php ├── format-gallery.php ├── format-image.php ├── format-link.php ├── format-quote.php ├── format-status.php ├── format-video.php └── format.php ├── front-page.php ├── functions.php ├── header-nonnav.php ├── header.php ├── home.php ├── includes ├── admin.php ├── breadcrumbs.php ├── comments.php ├── enqueue.php ├── login.php ├── menus.php ├── pagination.php ├── required_plugins.php └── styling.php ├── index.php ├── internals └── comments.php ├── licence.md ├── page.php ├── screenshot.png ├── search.php ├── sidebar-blog.php ├── sidebar.php ├── single.php ├── static ├── css │ ├── admin.css │ ├── app.css │ ├── bootstrap.min.css │ └── woocommerce.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ ├── favicons │ │ └── favicon.ico │ ├── logos │ │ ├── gramophone_placeholder.png │ │ └── wordpress.png │ └── psds │ │ ├── banner.psd │ │ └── screenshot.psd └── js │ ├── app.js │ ├── bootstrap.min.js │ ├── js.cookie.js │ └── tether.min.js ├── style.css ├── tag.php └── templates ├── page-full.php └── page-template.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.jshintignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/.travis.yml -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/404.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/README.txt -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/archive.php -------------------------------------------------------------------------------- /author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/author.php -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/category.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/comments.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/eject.sh -------------------------------------------------------------------------------- /externals/class-tgm-plugin-activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/externals/class-tgm-plugin-activation.php -------------------------------------------------------------------------------- /externals/class-wp-bootstrap-navwalker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/externals/class-wp-bootstrap-navwalker.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/footer.php -------------------------------------------------------------------------------- /formats/format-aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-aside.php -------------------------------------------------------------------------------- /formats/format-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-audio.php -------------------------------------------------------------------------------- /formats/format-chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-chat.php -------------------------------------------------------------------------------- /formats/format-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-gallery.php -------------------------------------------------------------------------------- /formats/format-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-image.php -------------------------------------------------------------------------------- /formats/format-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-link.php -------------------------------------------------------------------------------- /formats/format-quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-quote.php -------------------------------------------------------------------------------- /formats/format-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-status.php -------------------------------------------------------------------------------- /formats/format-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format-video.php -------------------------------------------------------------------------------- /formats/format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/formats/format.php -------------------------------------------------------------------------------- /front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/front-page.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/functions.php -------------------------------------------------------------------------------- /header-nonnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/header-nonnav.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/header.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/home.php -------------------------------------------------------------------------------- /includes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/admin.php -------------------------------------------------------------------------------- /includes/breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/breadcrumbs.php -------------------------------------------------------------------------------- /includes/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/comments.php -------------------------------------------------------------------------------- /includes/enqueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/enqueue.php -------------------------------------------------------------------------------- /includes/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/login.php -------------------------------------------------------------------------------- /includes/menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/menus.php -------------------------------------------------------------------------------- /includes/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/pagination.php -------------------------------------------------------------------------------- /includes/required_plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/required_plugins.php -------------------------------------------------------------------------------- /includes/styling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/includes/styling.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/index.php -------------------------------------------------------------------------------- /internals/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/internals/comments.php -------------------------------------------------------------------------------- /licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/licence.md -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/page.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/search.php -------------------------------------------------------------------------------- /sidebar-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/sidebar-blog.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/sidebar.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/single.php -------------------------------------------------------------------------------- /static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/css/admin.css -------------------------------------------------------------------------------- /static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/css/app.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/woocommerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/css/woocommerce.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /static/images/logos/gramophone_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/images/logos/gramophone_placeholder.png -------------------------------------------------------------------------------- /static/images/logos/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/images/logos/wordpress.png -------------------------------------------------------------------------------- /static/images/psds/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/images/psds/banner.psd -------------------------------------------------------------------------------- /static/images/psds/screenshot.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/images/psds/screenshot.psd -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/js/js.cookie.js -------------------------------------------------------------------------------- /static/js/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/static/js/tether.min.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/style.css -------------------------------------------------------------------------------- /tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/tag.php -------------------------------------------------------------------------------- /templates/page-full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/templates/page-full.php -------------------------------------------------------------------------------- /templates/page-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramophone-wp/Gramophone/HEAD/templates/page-template.php --------------------------------------------------------------------------------