├── .gitignore ├── 404.php ├── README.md ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-144x144-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── archive.php ├── category.php ├── comments.php ├── crossdomain.xml ├── custom-posts ├── cp-functions.php ├── custom-post.php ├── single-custom-post.php └── taxonomy-taxonomy-type.php ├── editor-style.css ├── favicon.ico ├── footer.php ├── functions.php ├── header.php ├── humans.txt ├── inc ├── author_meta.php ├── comment-count.php ├── edit-post-link.php ├── entry-footer.php ├── error-msg.php ├── functions │ ├── asset-loader.php │ ├── comment-reply.php │ ├── comments.php │ ├── content-width.php │ ├── editor-styles.php │ ├── header.php │ ├── nav-menu.php │ ├── theme-support.php │ ├── title.php │ └── widgets.php ├── meta.php ├── pagination-posts.php ├── taxonomy.php └── widget-sidebar.php ├── index.php ├── js ├── main.js ├── plugins.js └── vendor │ └── modernizr-2.6.2.min.js ├── license.txt ├── page.php ├── pageblank.php ├── posthook.php ├── robots.txt ├── screenshot.png ├── screenshot.psd ├── search.php ├── searchform.php ├── sidebar.php ├── single.php ├── snippets ├── custom-nav-placement.php └── remove-more-jump-link.php ├── style.css ├── theme-unit └── theme-unit-test.xml ├── wpflex-options.php └── wpflex-readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/404.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/README.md -------------------------------------------------------------------------------- /apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/archive.php -------------------------------------------------------------------------------- /category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/category.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/comments.php -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/crossdomain.xml -------------------------------------------------------------------------------- /custom-posts/cp-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/custom-posts/cp-functions.php -------------------------------------------------------------------------------- /custom-posts/custom-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/custom-posts/custom-post.php -------------------------------------------------------------------------------- /custom-posts/single-custom-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/custom-posts/single-custom-post.php -------------------------------------------------------------------------------- /custom-posts/taxonomy-taxonomy-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/custom-posts/taxonomy-taxonomy-type.php -------------------------------------------------------------------------------- /editor-style.css: -------------------------------------------------------------------------------- 1 | /* 2 | EDITOR STYLE SHEET: ENJOY! 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/favicon.ico -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/header.php -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/humans.txt -------------------------------------------------------------------------------- /inc/author_meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/author_meta.php -------------------------------------------------------------------------------- /inc/comment-count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/comment-count.php -------------------------------------------------------------------------------- /inc/edit-post-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/edit-post-link.php -------------------------------------------------------------------------------- /inc/entry-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/entry-footer.php -------------------------------------------------------------------------------- /inc/error-msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/error-msg.php -------------------------------------------------------------------------------- /inc/functions/asset-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/asset-loader.php -------------------------------------------------------------------------------- /inc/functions/comment-reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/comment-reply.php -------------------------------------------------------------------------------- /inc/functions/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/comments.php -------------------------------------------------------------------------------- /inc/functions/content-width.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/content-width.php -------------------------------------------------------------------------------- /inc/functions/editor-styles.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inc/functions/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/header.php -------------------------------------------------------------------------------- /inc/functions/nav-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/nav-menu.php -------------------------------------------------------------------------------- /inc/functions/theme-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/theme-support.php -------------------------------------------------------------------------------- /inc/functions/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/title.php -------------------------------------------------------------------------------- /inc/functions/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/functions/widgets.php -------------------------------------------------------------------------------- /inc/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/meta.php -------------------------------------------------------------------------------- /inc/pagination-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/pagination-posts.php -------------------------------------------------------------------------------- /inc/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/taxonomy.php -------------------------------------------------------------------------------- /inc/widget-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/inc/widget-sidebar.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/index.php -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/js/main.js -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/js/plugins.js -------------------------------------------------------------------------------- /js/vendor/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/js/vendor/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/license.txt -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/page.php -------------------------------------------------------------------------------- /pageblank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayghostvisuals/wp-flex/HEAD/pageblank.php -------------------------------------------------------------------------------- /posthook.php: -------------------------------------------------------------------------------- 1 |