├── ico ├── favicon.png ├── apple-touch-icon-114-precomposed.png ├── apple-touch-icon-144-precomposed.png ├── apple-touch-icon-57-precomposed.png └── apple-touch-icon-72-precomposed.png ├── screenshot.png ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── rtl.css ├── inc ├── jetpack.php ├── customizer.php ├── extras.php ├── custom-header.php ├── general │ └── class-Upbootwp_Walker_Nav_Menu.php └── template-tags.php ├── less ├── breadcrumbs.less ├── component-animations.less ├── wells.less ├── close.less ├── thumbnails.less ├── utilities.less ├── media.less ├── pager.less ├── jumbotron.less ├── badges.less ├── code.less ├── labels.less ├── bootstrap.less ├── upbootwp-wordpress.less ├── alerts.less ├── progress-bars.less ├── grid.less ├── print.less ├── pagination.less ├── list-group.less ├── scaffolding.less ├── tooltip.less ├── modals.less ├── popovers.less ├── input-groups.less ├── buttons.less ├── dropdowns.less ├── panels.less ├── tables.less ├── carousel.less ├── responsive-utilities.less ├── button-groups.less ├── navs.less ├── type.less ├── theme.less ├── normalize.less ├── forms.less └── glyphicons.less ├── style.css ├── readme.md ├── searchform.php ├── content-page.php ├── footer.php ├── sidebar.php ├── single.php ├── page-templates ├── content-full-width.php └── content-left-sidebar.php ├── no-results.php ├── page.php ├── search.php ├── index.php ├── header.php ├── 404.php ├── content-single.php ├── content.php ├── archive.php ├── image.php ├── comments.php ├── functions.php └── languages └── _s.pot /ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/ico/favicon.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/screenshot.png -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upplex/upBootstrap3WP/HEAD/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: upBootWP 3 | 4 | Adding support for language written in a Right To Left (RTL) direction is easy - 5 | it's just a matter of overwriting all the horizontal positioning attributes 6 | of your CSS stylesheet in a separate stylesheet file named rtl.css. 7 | 8 | http://codex.wordpress.org/Right_to_Left_Language_Support 9 | 10 | */ 11 | 12 | /* 13 | body { 14 | direction: rtl; 15 | unicode-bidi: embed; 16 | } 17 | */ -------------------------------------------------------------------------------- /inc/jetpack.php: -------------------------------------------------------------------------------- 1 | 'main', 17 | 'footer' => 'page', 18 | ) ); 19 | } 20 | add_action( 'after_setup_theme', 'upbootwp_jetpack_setup' ); 21 | -------------------------------------------------------------------------------- /less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | > li { 13 | display: inline-block; 14 | + li:before { 15 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 16 | padding: 0 5px; 17 | color: @breadcrumb-color; 18 | } 19 | } 20 | > .active { 21 | color: @breadcrumb-active-color; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | &.in { 21 | display: block; 22 | } 23 | } 24 | .collapsing { 25 | position: relative; 26 | height: 0; 27 | overflow: hidden; 28 | .transition(height .35s ease); 29 | } 30 | -------------------------------------------------------------------------------- /less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid darken(@well-bg, 7%); 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: upBootWP 3 | Theme URI: http://upplex.de/bootstrap-3-wordpress-theme-framework/ 4 | Author: upplex 5 | Author URI: http://upplex.de 6 | Description: upBootWP is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc. and Twitter Bootstrap 3. Feel free to edit it. 7 | Version: 0.1 8 | License: GNU General Public License 9 | License URI: license.txt 10 | Text Domain: upbootwp 11 | Domain Path: /languages/ 12 | Tags: 13 | 14 | This theme, like WordPress, is licensed under the GPL. 15 | Use it to make something cool, have fun, and share what you've learned with others. 16 | 17 | upBootWP is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc. and Twitter Bootstrap 3 18 | 19 | */ -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # [BootstrapWP - Wordpress Theme Framework v1.1 ](http://upplex.de/bootstrap-3-wordpress-theme-framework/) 2 | 3 | Based on Twitter Bootstrap 3.0.3 4 | 5 | To get started with Bootstrap 3, check out [http://getbootstrap.com](http://getbootstrap.com)! 6 | 7 | By [upplex - webdesign](http://upplex.de) 8 | 9 | ## Quick start 10 | 11 | Copy the Folder in your Wordpress theme folder and enable it on the theme page. 12 | 13 | ## Bugs and feature requests 14 | 15 | Have a bug or a feature request? [Please open a new issue](https://github.com/upplex/upBootstrap3WP/issues). 16 | 17 | ## Contributing 18 | 19 | Submit your pull request and I will check it. 20 | 21 | ## Copyright and license 22 | 23 | Copyright 2014 upplex under GPL 3.0(LICENSE) 24 | -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- 1 | 9 |
15 | -------------------------------------------------------------------------------- /content-page.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 |