- ',
16 | 'after' => '
Get started here.', 'bootstrap-basic'), esc_url(admin_url('post-new.php'))); 18 | ?>
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |├── index.html ├── css ├── fix-bootstrap.css ├── widget-blocks │ └── calendar.css ├── flexvideo.css ├── main.css └── bootstrap-theme.min.css ├── screenshot.png ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── img ├── content-post-format-image.png ├── content-post-format-link.png ├── content-post-format-quote.png └── content-post-format-video.png ├── js ├── main.js └── vendor │ ├── npm.js │ ├── html5shiv.min.js │ ├── respond.min.js │ ├── html5shiv.js │ └── modernizr.min.js ├── sidebar-left.php ├── sidebar-right.php ├── inc ├── template-widgets-hook.php ├── BootstrapBasicAdminHelp.php ├── BootstrapBasic.php ├── BootstrapBasicWp5.php ├── widgets │ ├── BootstrapBasicAutoRegisterWidgets.php │ ├── BootstrapBasicSearchWidget.php │ └── BootstrapBasicLegacySearchWidget.php ├── template-functions.php ├── views │ └── BootstrapBasicAdminHelp_v.php ├── extras.php ├── BootstrapBasicMyWalkerNavMenu.php └── template-tags.php ├── .github └── FUNDING.yml ├── content-page.php ├── LICENSE ├── page.php ├── no-results.php ├── footer.php ├── single.php ├── index.php ├── readme.txt ├── searchform.php ├── search.php ├── content-single.php ├── changelog.md ├── content-quote.php ├── content-aside.php ├── content-link.php ├── content.php ├── 404.php ├── style.css ├── header.php ├── archive.php ├── image.php ├── comments.php ├── .phpcs.xml.dist ├── functions.php └── languages └── bootstrap-basic.pot /index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/fix-bootstrap.css: -------------------------------------------------------------------------------- 1 | /* 2 | This file is for hot fix for Bootstrap. 3 | */ 4 | 5 | 6 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/screenshot.png -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /img/content-post-format-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/img/content-post-format-image.png -------------------------------------------------------------------------------- /img/content-post-format-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/img/content-post-format-link.png -------------------------------------------------------------------------------- /img/content-post-format-quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/img/content-post-format-quote.png -------------------------------------------------------------------------------- /img/content-post-format-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/img/content-post-format-video.png -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rundiz-WP/bootstrap-basic/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Main Javascript. 3 | * This file is for who want to make this theme as a new parent theme and you are ready to code your js here. 4 | */ -------------------------------------------------------------------------------- /sidebar-left.php: -------------------------------------------------------------------------------- 1 | 2 |
Get started here.', 'bootstrap-basic'), esc_url(admin_url('post-new.php'))); 18 | ?>
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |