├── .editorconfig ├── .gitignore ├── 404.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── css │ ├── editor-style.css │ └── style-default.css ├── fonts │ ├── Elusive-Icons.eot │ ├── Elusive-Icons.svg │ ├── Elusive-Icons.ttf │ ├── Elusive-Icons.woff │ ├── elusive-webfont.less │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── _main.js │ ├── megadrop.js │ └── vendor │ ├── fastclick.js │ ├── html5shiv.js │ ├── jquery-1.11.0.min.js │ ├── jquery.cookie.js │ ├── jquery.fittext.js │ ├── jquery.fitvids.js │ ├── less.min.js │ ├── modernizr.min.js │ ├── placeholder.js │ ├── respond.min.js │ └── retina.js ├── base.php ├── bbpress ├── content-archive-forum.php ├── content-search.php ├── content-single-forum.php ├── content-single-topic.php ├── form-reply.php ├── form-search.php ├── form-topic.php ├── loop-forums.php ├── loop-replies.php ├── loop-search-forum.php ├── loop-search-reply.php ├── loop-search.php ├── loop-single-forum.php ├── loop-single-reply.php ├── loop-single-topic.php ├── loop-topics.php ├── pagination-replies.php ├── pagination-search.php ├── pagination-topics.php └── user-details.php ├── buddypress ├── activity │ ├── activity-loop.php │ ├── entry.php │ ├── index.php │ └── post-form.php └── css │ └── buddypress.css ├── framework ├── bootstrap │ ├── assets │ │ ├── css │ │ │ └── style-default.css │ │ ├── js │ │ │ └── bootstrap.min.js │ │ └── less │ │ │ ├── app.less │ │ │ ├── blog.less │ │ │ ├── buddypress.less │ │ │ ├── footer.less │ │ │ ├── gradients.less │ │ │ ├── headers.less │ │ │ ├── layout.less │ │ │ ├── menus.less │ │ │ ├── navlist.less │ │ │ ├── social.less │ │ │ ├── vendor │ │ │ └── bootstrap │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.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 │ │ │ │ ├── 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 │ │ │ └── widgets.less │ ├── class-SS_Framework_Bootstrap.php │ ├── framework.php │ ├── includes │ │ ├── class-Shoestrap_Advanced.php │ │ ├── class-Shoestrap_Background.php │ │ ├── class-Shoestrap_Blog.php │ │ ├── class-Shoestrap_Branding.php │ │ ├── class-Shoestrap_Breadcrumbs.php │ │ ├── class-Shoestrap_Footer.php │ │ ├── class-Shoestrap_Header.php │ │ ├── class-Shoestrap_Jumbotron.php │ │ ├── class-Shoestrap_Layout.php │ │ ├── class-Shoestrap_Menus.php │ │ ├── class-Shoestrap_Nav_Menu_Widget.php │ │ ├── class-Shoestrap_Nav_Walker.php │ │ ├── class-Shoestrap_Navlist_Walker.php │ │ ├── class-Shoestrap_Options.php │ │ ├── class-Shoestrap_Social.php │ │ ├── class-Shoestrap_Typography.php │ │ ├── customizer.php │ │ ├── gallery.php │ │ ├── webfonts.json │ │ └── widgets.php │ └── templates │ │ └── top-bar.php ├── class-SS_Framework.php ├── compilers │ ├── less-php │ │ ├── Cache.php │ │ ├── Less.php │ │ ├── Version.php │ │ └── class-Shoestrap_Less_php.php │ └── sass-php │ │ ├── class-Shoestrap_Sass_php.php │ │ └── scss.inc.php └── core │ └── class-SS_Framework_Core.php ├── functions.php ├── index.php ├── lang └── shoestrap.pot ├── lib ├── bbpress.php ├── buddypress.php ├── class-Shoestrap_Color.php ├── class-Shoestrap_Image.php ├── class-TGM_Plugin_Activation.php ├── cleanup.php ├── comments.php ├── config.php ├── dependencies.php ├── deprecated.php ├── footer.php ├── functions-core.php ├── init.php ├── meta.php ├── post-formats.php ├── scripts.php ├── sidebar.php ├── template.php ├── titles.php ├── updater │ ├── EDD_Theme_Updater.php │ └── updater.php ├── utils.php ├── widgets.php └── wrapper.php ├── page.php ├── screenshot.png ├── single.php ├── style.css ├── template-0.php ├── template-1.php ├── template-2.php ├── template-3.php ├── template-4.php ├── template-5.php └── templates ├── comment.php ├── comments.php ├── content-page.php ├── content-single.php ├── content.php ├── footer.php ├── head.php ├── searchform.php └── sidebar.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/404.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/css/editor-style.css -------------------------------------------------------------------------------- /assets/css/style-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/css/style-default.css -------------------------------------------------------------------------------- /assets/fonts/Elusive-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/Elusive-Icons.eot -------------------------------------------------------------------------------- /assets/fonts/Elusive-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/Elusive-Icons.svg -------------------------------------------------------------------------------- /assets/fonts/Elusive-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/Elusive-Icons.ttf -------------------------------------------------------------------------------- /assets/fonts/Elusive-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/Elusive-Icons.woff -------------------------------------------------------------------------------- /assets/fonts/elusive-webfont.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/elusive-webfont.less -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/js/_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/_main.js -------------------------------------------------------------------------------- /assets/js/megadrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/megadrop.js -------------------------------------------------------------------------------- /assets/js/vendor/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/fastclick.js -------------------------------------------------------------------------------- /assets/js/vendor/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/html5shiv.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/jquery.cookie.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.fittext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/jquery.fittext.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/jquery.fitvids.js -------------------------------------------------------------------------------- /assets/js/vendor/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/less.min.js -------------------------------------------------------------------------------- /assets/js/vendor/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/modernizr.min.js -------------------------------------------------------------------------------- /assets/js/vendor/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/placeholder.js -------------------------------------------------------------------------------- /assets/js/vendor/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/respond.min.js -------------------------------------------------------------------------------- /assets/js/vendor/retina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/assets/js/vendor/retina.js -------------------------------------------------------------------------------- /base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/base.php -------------------------------------------------------------------------------- /bbpress/content-archive-forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/content-archive-forum.php -------------------------------------------------------------------------------- /bbpress/content-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/content-search.php -------------------------------------------------------------------------------- /bbpress/content-single-forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/content-single-forum.php -------------------------------------------------------------------------------- /bbpress/content-single-topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/content-single-topic.php -------------------------------------------------------------------------------- /bbpress/form-reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/form-reply.php -------------------------------------------------------------------------------- /bbpress/form-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/form-search.php -------------------------------------------------------------------------------- /bbpress/form-topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/form-topic.php -------------------------------------------------------------------------------- /bbpress/loop-forums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-forums.php -------------------------------------------------------------------------------- /bbpress/loop-replies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-replies.php -------------------------------------------------------------------------------- /bbpress/loop-search-forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-search-forum.php -------------------------------------------------------------------------------- /bbpress/loop-search-reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-search-reply.php -------------------------------------------------------------------------------- /bbpress/loop-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-search.php -------------------------------------------------------------------------------- /bbpress/loop-single-forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-single-forum.php -------------------------------------------------------------------------------- /bbpress/loop-single-reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-single-reply.php -------------------------------------------------------------------------------- /bbpress/loop-single-topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-single-topic.php -------------------------------------------------------------------------------- /bbpress/loop-topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/loop-topics.php -------------------------------------------------------------------------------- /bbpress/pagination-replies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/pagination-replies.php -------------------------------------------------------------------------------- /bbpress/pagination-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/pagination-search.php -------------------------------------------------------------------------------- /bbpress/pagination-topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/pagination-topics.php -------------------------------------------------------------------------------- /bbpress/user-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/bbpress/user-details.php -------------------------------------------------------------------------------- /buddypress/activity/activity-loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/buddypress/activity/activity-loop.php -------------------------------------------------------------------------------- /buddypress/activity/entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/buddypress/activity/entry.php -------------------------------------------------------------------------------- /buddypress/activity/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/buddypress/activity/index.php -------------------------------------------------------------------------------- /buddypress/activity/post-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/buddypress/activity/post-form.php -------------------------------------------------------------------------------- /buddypress/css/buddypress.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/bootstrap/assets/css/style-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/css/style-default.css -------------------------------------------------------------------------------- /framework/bootstrap/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/app.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/blog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/blog.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/buddypress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/buddypress.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/footer.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/gradients.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/headers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/headers.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/layout.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/menus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/menus.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/navlist.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/navlist.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/social.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/social.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/alerts.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/badges.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/button-groups.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/buttons.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/carousel.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/close.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/code.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/component-animations.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/forms.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/grid.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/input-groups.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/labels.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/list-group.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/media.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/modals.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/navbar.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/navs.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/normalize.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/pager.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/pagination.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/panels.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/popovers.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/print.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/tables.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/theme.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/tooltip.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/type.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/utilities.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/variables.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/vendor/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/vendor/bootstrap/wells.less -------------------------------------------------------------------------------- /framework/bootstrap/assets/less/widgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/assets/less/widgets.less -------------------------------------------------------------------------------- /framework/bootstrap/class-SS_Framework_Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/class-SS_Framework_Bootstrap.php -------------------------------------------------------------------------------- /framework/bootstrap/framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/framework.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Advanced.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Background.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Blog.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Branding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Branding.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Breadcrumbs.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Footer.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Header.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Jumbotron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Jumbotron.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Layout.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Menus.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Nav_Menu_Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Nav_Menu_Widget.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Nav_Walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Nav_Walker.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Navlist_Walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Navlist_Walker.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Options.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Social.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/class-Shoestrap_Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/class-Shoestrap_Typography.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/customizer.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/gallery.php -------------------------------------------------------------------------------- /framework/bootstrap/includes/webfonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/webfonts.json -------------------------------------------------------------------------------- /framework/bootstrap/includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/includes/widgets.php -------------------------------------------------------------------------------- /framework/bootstrap/templates/top-bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/bootstrap/templates/top-bar.php -------------------------------------------------------------------------------- /framework/class-SS_Framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/class-SS_Framework.php -------------------------------------------------------------------------------- /framework/compilers/less-php/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/less-php/Cache.php -------------------------------------------------------------------------------- /framework/compilers/less-php/Less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/less-php/Less.php -------------------------------------------------------------------------------- /framework/compilers/less-php/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/less-php/Version.php -------------------------------------------------------------------------------- /framework/compilers/less-php/class-Shoestrap_Less_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/less-php/class-Shoestrap_Less_php.php -------------------------------------------------------------------------------- /framework/compilers/sass-php/class-Shoestrap_Sass_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/sass-php/class-Shoestrap_Sass_php.php -------------------------------------------------------------------------------- /framework/compilers/sass-php/scss.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/compilers/sass-php/scss.inc.php -------------------------------------------------------------------------------- /framework/core/class-SS_Framework_Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/framework/core/class-SS_Framework_Core.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/functions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/index.php -------------------------------------------------------------------------------- /lang/shoestrap.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lang/shoestrap.pot -------------------------------------------------------------------------------- /lib/bbpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/bbpress.php -------------------------------------------------------------------------------- /lib/buddypress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/buddypress.php -------------------------------------------------------------------------------- /lib/class-Shoestrap_Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/class-Shoestrap_Color.php -------------------------------------------------------------------------------- /lib/class-Shoestrap_Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/class-Shoestrap_Image.php -------------------------------------------------------------------------------- /lib/class-TGM_Plugin_Activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/class-TGM_Plugin_Activation.php -------------------------------------------------------------------------------- /lib/cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/cleanup.php -------------------------------------------------------------------------------- /lib/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/comments.php -------------------------------------------------------------------------------- /lib/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/config.php -------------------------------------------------------------------------------- /lib/dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/dependencies.php -------------------------------------------------------------------------------- /lib/deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/deprecated.php -------------------------------------------------------------------------------- /lib/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/footer.php -------------------------------------------------------------------------------- /lib/functions-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/functions-core.php -------------------------------------------------------------------------------- /lib/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/init.php -------------------------------------------------------------------------------- /lib/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/meta.php -------------------------------------------------------------------------------- /lib/post-formats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/post-formats.php -------------------------------------------------------------------------------- /lib/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/scripts.php -------------------------------------------------------------------------------- /lib/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/sidebar.php -------------------------------------------------------------------------------- /lib/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/template.php -------------------------------------------------------------------------------- /lib/titles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/titles.php -------------------------------------------------------------------------------- /lib/updater/EDD_Theme_Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/updater/EDD_Theme_Updater.php -------------------------------------------------------------------------------- /lib/updater/updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/updater/updater.php -------------------------------------------------------------------------------- /lib/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/utils.php -------------------------------------------------------------------------------- /lib/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/widgets.php -------------------------------------------------------------------------------- /lib/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/lib/wrapper.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/page.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/screenshot.png -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/style.css -------------------------------------------------------------------------------- /template-0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-0.php -------------------------------------------------------------------------------- /template-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-1.php -------------------------------------------------------------------------------- /template-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-2.php -------------------------------------------------------------------------------- /template-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-3.php -------------------------------------------------------------------------------- /template-4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-4.php -------------------------------------------------------------------------------- /template-5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/template-5.php -------------------------------------------------------------------------------- /templates/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/comment.php -------------------------------------------------------------------------------- /templates/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/comments.php -------------------------------------------------------------------------------- /templates/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/content-page.php -------------------------------------------------------------------------------- /templates/content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/content-single.php -------------------------------------------------------------------------------- /templates/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/content.php -------------------------------------------------------------------------------- /templates/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/footer.php -------------------------------------------------------------------------------- /templates/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/head.php -------------------------------------------------------------------------------- /templates/searchform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/searchform.php -------------------------------------------------------------------------------- /templates/sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemonkey-jack/shoestrap-3/HEAD/templates/sidebar.php --------------------------------------------------------------------------------