resources.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. ---
  2. layout: page
  3. title: Bootstrap Resources
  4. description: "A curated list of quality Bootstrap resources and Bootstrap plugins maintained by Start Bootstrap."
  5. meta-title: "Bootstrap Resources and Plugins List"
  6. meta-description: "A comprehensive list of the best Bootstrap resources and third party plugins from around the web - curated by Start Bootstrap"
  7. permalink: /bootstrap-resources/
  8. ---
  9. <div class="container">
  10. <div class="row">
  11. <div class="col-lg-3 resources-sidebar">
  12. <div class="sticky-top">
  13. <ul class="nav flex-column">
  14. <li class="nav-item">
  15. <a class="nav-link" href="#official">Official Bootstrap Resources</a>
  16. </li>
  17. <li class="nav-item">
  18. <a class="nav-link" id="resourcesThemes" href="#themes">Bootstrap Templates &amp; Themes</a>
  19. <ul class="nav flex-column ml-3" id="resourcesThemesExpand">
  20. <li class="nav-item">
  21. <a class="nav-link" href="#premium-marketplaces">Premium Marketplaces</a>
  22. </li>
  23. <li class="nav-item">
  24. <a class="nav-link" href="#premium-vendors">Premium Vendors</a>
  25. </li>
  26. <li class="nav-item">
  27. <a class="nav-link" href="#free-themes">Free Templates &amp; Themes</a>
  28. </li>
  29. <li class="nav-item">
  30. <a class="nav-link" href="#showcases">Bootstrap Showcases</a>
  31. </li>
  32. </ul>
  33. </li>
  34. <li class="nav-item">
  35. <a class="nav-link" href="#dev-tools">Bootstrap Development Tools</a>
  36. <ul class="nav flex-column ml-3">
  37. <li class="nav-item">
  38. <a class="nav-link" href="#integration">Framework Integrations</a>
  39. </li>
  40. <li class="nav-item">
  41. <a class="nav-link" href="#visual-builders">Visual Builders</a>
  42. </li>
  43. <li class="nav-item">
  44. <a class="nav-link" href="#other-dev">Other Tools</a>
  45. </li>
  46. </ul>
  47. </li>
  48. <li class="nav-item">
  49. <a class="nav-link" href="#plugins">Bootstrap Plugins</a>
  50. <ul class="nav flex-column ml-3">
  51. <li class="nav-item">
  52. <a class="nav-link" href="#plugins-form">Form Plugins</a>
  53. </li>
  54. <li class="nav-item">
  55. <a class="nav-link" href="#plugins-table">Table Plugins</a>
  56. </li>
  57. <li class="nav-item">
  58. <a class="nav-link" href="#plugins-menu">Menu &amp; Navigation Plugins</a>
  59. </li>
  60. <li class="nav-item">
  61. <a class="nav-link" href="#plugins-notification">Notification Plugins</a>
  62. </li>
  63. <li class="nav-item">
  64. <a class="nav-link" href="#plugins-modal">Modal Plugins</a>
  65. </li>
  66. <li class="nav-item">
  67. <a class="nav-link" href="#plugins-buttons">Button Plugins</a>
  68. </li>
  69. <li class="nav-item">
  70. <a class="nav-link" href="#plugins-other">Other Plugins</a>
  71. </li>
  72. </ul>
  73. </li>
  74. </ul>
  75. <a href="#submitResource" data-toggle="modal" class="ml-2 mt-4 btn btn-sm btn-primary border-0">Submit a Resource</a>
  76. </div>
  77. </div>
  78. <div class="col-lg-9 resources">
  79. <!-- Official Bootstrap Resources -->
  80. <h2 class="page-header" id="official">Official Bootstrap Resources</h2>
  81. <p class="lead">Projects created and maintained by the Bootstrap creators.</p>
  82. <div class="table-responsive">
  83. <table class="table table-bordered table-striped">
  84. <thead>
  85. <tr>
  86. <th class="resource-name">Name</th>
  87. <th>Description</th>
  88. </tr>
  89. </thead>
  90. <tbody>
  91. {% for resource in site.data.resources-official %}
  92. <tr>
  93. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  94. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  95. </tr>
  96. {% endfor %}
  97. </tbody>
  98. </table>
  99. </div>
  100. <!-- Carbon Native Test -->
  101. <div class="native-standard"></div>
  102. <h2 class="page-header" id="themes">Bootstrap Templates &amp; Themes</h2>
  103. <hr>
  104. <!-- Premium Bootstrap Themes & Templates -->
  105. <h3 class="pt-4" id="premium-marketplaces">Premium Marketplaces</h3>
  106. <p class="lead">Purchase Bootstrap themes, or sell your own custom designed Bootstrap themes on these third-party marketplace websites!</p>
  107. <div class="table-responsive">
  108. <table class="table table-bordered table-striped">
  109. <thead>
  110. <tr>
  111. <th class="resource-name">Name</th>
  112. <th>Description</th>
  113. </tr>
  114. </thead>
  115. <tbody>
  116. {% for resource in site.data.resources-templates-premium-marketplaces %}
  117. <tr>
  118. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  119. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  120. </tr>
  121. {% endfor %}
  122. </tbody>
  123. </table>
  124. </div>
  125. <!-- Premium Bootstrap UI Kits -->
  126. <h3 class="pt-4" id="premium-vendors">Premium Vendors</h3>
  127. <p class="lead">Premium vendors only sell their own in-house created content, as opposed to marketplace websites that sell themes submitted by a variety of third-party users.</p>
  128. <div class="table-responsive">
  129. <table class="table table-bordered table-striped">
  130. <thead>
  131. <tr>
  132. <th class="resource-name">Name</th>
  133. <th>Description</th>
  134. </tr>
  135. </thead>
  136. <tbody>
  137. {% for resource in site.data.resources-templates-premium-vendors %}
  138. <tr>
  139. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  140. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  141. </tr>
  142. {% endfor %}
  143. </tbody>
  144. </table>
  145. </div>
  146. <!-- Free Bootstrap Themes & Templates -->
  147. <h3 class="pt-4" id="free-themes">Free Templates &amp; Themes</h3>
  148. <p class="lead">Download free Bootstrap templates and themes on the following websites.</p>
  149. <div class="table-responsive">
  150. <table class="table table-bordered table-striped">
  151. <thead>
  152. <tr>
  153. <th class="resource-name">Name</th>
  154. <th>Description</th>
  155. </tr>
  156. </thead>
  157. <tbody>
  158. {% for resource in site.data.resources-templates-free %}
  159. <tr>
  160. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  161. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  162. </tr>
  163. {% endfor %}
  164. </tbody>
  165. </table>
  166. </div>
  167. <!-- Bootstrap Showcases -->
  168. <h3 class="pt-4" id="showcases">Bootstrap Showcases</h3>
  169. <p class="lead">Get inspired for your next Bootstrap project by browsing examples of websites built with Bootstrap!</p>
  170. <div class="table-responsive">
  171. <table class="table table-bordered table-striped">
  172. <thead>
  173. <tr>
  174. <th class="resource-name">Name</th>
  175. <th>Description</th>
  176. </tr>
  177. </thead>
  178. <tbody>
  179. {% for resource in site.data.resources-templates-showcases %}
  180. <tr>
  181. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  182. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  183. </tr>
  184. {% endfor %}
  185. </tbody>
  186. </table>
  187. </div>
  188. <!-- Bootstrap Development Tools -->
  189. <h2 class="page-header" id="dev-tools">Bootstrap Development Tools</h2>
  190. <hr>
  191. <!-- Bootstrap Integrations -->
  192. <h3 class="pt-4" id="integration">Framework Integrations</h3>
  193. <p class="lead">Bootstrap components rewritten to integrate with the most popular development frameworks and CMS systems</p>
  194. <h5 class="mt-4">JavaScript</h5>
  195. <div class="table-responsive">
  196. <table class="table table-bordered table-striped">
  197. <thead>
  198. <tr>
  199. <th class="resource-name">Name</th>
  200. <th>Description</th>
  201. </tr>
  202. </thead>
  203. <tbody>
  204. {% for resource in site.data.resources-dev-framework-js %}
  205. <tr>
  206. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  207. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  208. </tr>
  209. {% endfor %}
  210. </tbody>
  211. </table>
  212. </div>
  213. <h5 class="mt-4">WordPress</h5>
  214. <div class="table-responsive">
  215. <table class="table table-bordered table-striped">
  216. <thead>
  217. <tr>
  218. <th class="resource-name">Name</th>
  219. <th>Description</th>
  220. </tr>
  221. </thead>
  222. <tbody>
  223. {% for resource in site.data.resources-dev-framework-wordpress %}
  224. <tr>
  225. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  226. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  227. </tr>
  228. {% endfor %}
  229. </tbody>
  230. </table>
  231. </div>
  232. <h3 class="pt-4" id="visual-builders">Visual Builders</h3>
  233. <p class="lead">Visual builder applications for creating custom versions of Bootstrap and Bootstrap components.</p>
  234. <div class="table-responsive">
  235. <table class="table table-bordered table-striped">
  236. <thead>
  237. <tr>
  238. <th class="resource-name">Name</th>
  239. <th>Description</th>
  240. </tr>
  241. </thead>
  242. <tbody>
  243. {% for resource in site.data.resources-dev-visual %}
  244. <tr>
  245. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  246. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  247. </tr>
  248. {% endfor %}
  249. </tbody>
  250. </table>
  251. </div>
  252. <h3 class="pt-4" id="other-dev">Other Development Tools</h3>
  253. <p class="lead">Helpful tools for developers to use while creating with Bootstrap.</p>
  254. <div class="table-responsive">
  255. <table class="table table-bordered table-striped">
  256. <thead>
  257. <tr>
  258. <th class="resource-name">Name</th>
  259. <th>Description</th>
  260. </tr>
  261. </thead>
  262. <tbody>
  263. {% for resource in site.data.resources-dev-other %}
  264. <tr>
  265. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  266. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  267. </tr>
  268. {% endfor %}
  269. </tbody>
  270. </table>
  271. </div>
  272. <h2 class="page-header" id="plugins">Bootstrap Plugins</h2>
  273. <hr>
  274. <!-- Form Plugins -->
  275. <h3 class="pt-4" id="plugins-form">Form Plugins</h3>
  276. <div class="table-responsive">
  277. <table class="table table-bordered table-striped">
  278. <thead>
  279. <tr>
  280. <th class="resource-name">Name</th>
  281. <th>Description</th>
  282. </tr>
  283. </thead>
  284. <tbody>
  285. {% for resource in site.data.resources-plugins-form %}
  286. <tr>
  287. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  288. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  289. </tr>
  290. {% endfor %}
  291. </tbody>
  292. </table>
  293. </div>
  294. <!-- Table Plugins -->
  295. <h3 class="pt-4" id="plugins-table">Table Plugins</h3>
  296. <div class="table-responsive">
  297. <table class="table table-bordered table-striped">
  298. <thead>
  299. <tr>
  300. <th class="resource-name">Name</th>
  301. <th>Description</th>
  302. </tr>
  303. </thead>
  304. <tbody>
  305. {% for resource in site.data.resources-plugins-table %}
  306. <tr>
  307. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  308. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  309. </tr>
  310. {% endfor %}
  311. </tbody>
  312. </table>
  313. </div>
  314. <!-- Navigation Plugins -->
  315. <h3 class="pt-4" id="plugins-menu">Menu &amp; Navigation Plugins</h3>
  316. <div class="table-responsive">
  317. <table class="table table-bordered table-striped">
  318. <thead>
  319. <tr>
  320. <th class="resource-name">Name</th>
  321. <th>Description</th>
  322. </tr>
  323. </thead>
  324. <tbody>
  325. {% for resource in site.data.resources-plugins-nav %}
  326. <tr>
  327. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  328. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  329. </tr>
  330. {% endfor %}
  331. </tbody>
  332. </table>
  333. </div>
  334. <!-- Notification Plugins -->
  335. <h3 class="pt-4" id="plugins-notification">Notification Plugins</h3>
  336. <div class="table-responsive">
  337. <table class="table table-bordered table-striped">
  338. <thead>
  339. <tr>
  340. <th class="resource-name">Name</th>
  341. <th>Description</th>
  342. </tr>
  343. </thead>
  344. <tbody>
  345. {% for resource in site.data.resources-plugins-notification %}
  346. <tr>
  347. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  348. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  349. </tr>
  350. {% endfor %}
  351. </tbody>
  352. </table>
  353. </div>
  354. <!-- Modal Plugins -->
  355. <h3 class="pt-4" id="plugins-modal">Modal Plugins</h3>
  356. <div class="table-responsive">
  357. <table class="table table-bordered table-striped">
  358. <thead>
  359. <tr>
  360. <th class="resource-name">Name</th>
  361. <th>Description</th>
  362. </tr>
  363. </thead>
  364. <tbody>
  365. {% for resource in site.data.resources-plugins-modal %}
  366. <tr>
  367. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  368. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  369. </tr>
  370. {% endfor %}
  371. </tbody>
  372. </table>
  373. </div>
  374. <!-- Button Plugins -->
  375. <h3 class="pt-4" id="plugins-buttons">Button Plugins</h3>
  376. <div class="table-responsive">
  377. <table class="table table-bordered table-striped">
  378. <thead>
  379. <tr>
  380. <th class="resource-name">Name</th>
  381. <th>Description</th>
  382. </tr>
  383. </thead>
  384. <tbody>
  385. {% for resource in site.data.resources-plugins-button %}
  386. <tr>
  387. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  388. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  389. </tr>
  390. {% endfor %}
  391. </tbody>
  392. </table>
  393. </div>
  394. <!-- Other Plugins -->
  395. <h3 class="pt-4" id="plugins-other">Other Plugins</h3>
  396. <div class="table-responsive">
  397. <table class="table table-bordered table-striped">
  398. <thead>
  399. <tr>
  400. <th class="resource-name">Name</th>
  401. <th>Description</th>
  402. </tr>
  403. </thead>
  404. <tbody>
  405. {% for resource in site.data.resources-plugins-other %}
  406. <tr>
  407. <td><a href="{{ resource.link }}" rel="nofollow" target="_blank">{{ resource.name }}</a></td>
  408. <td>{{ resource.description }} {% if resource.supports contains 'bs2' %}<span class="badge badge-secondary">BS2</span>{% endif %} {% if resource.supports contains 'bs3' %}<span class="badge badge-secondary">BS3</span>{% endif %} {% if resource.supports contains 'bs4' %}<span class="badge badge-info">BS4</span>{% endif %}</td>
  409. </tr>
  410. {% endfor %}
  411. </tbody>
  412. </table>
  413. </div>
  414. </div>
  415. </div>
  416. </div>
  417. <!-- Submit a Resource Modal -->
  418. <div class="modal fade" id="submitResource" tabindex="-1" role="dialog" aria-labelledby="submitResourceModal" aria-hidden="true">
  419. <div class="modal-dialog" role="document">
  420. <div class="modal-content">
  421. <div class="modal-header">
  422. <h5 class="modal-title" id="myModalLabel">Submit a Resource</h5>
  423. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  424. <span aria-hidden="true">&times;</span>
  425. </button>
  426. </div>
  427. <div class="modal-body">
  428. <p>To submit a resource for review, please send an email to <strong><a href="mailto:feedback@startbootstrap.com">feedback@startbootstrap.com</a></strong> with the following information:</p>
  429. <ul>
  430. <li>The name/title of the resource</li>
  431. <li>A URL for the resource</li>
  432. <li>A brief description of the resource</li>
  433. </ul>
  434. <p>Each submission is reviewed for quality and relevance. If you have a quality resource that is relevant to Bootstrap then it will most likely be added to the resources page!</p>
  435. </div>
  436. </div>
  437. </div>
  438. </div>
  439. <!-- Script for Carbon Native Test -->
  440. <script>
  441. (function(){
  442. if(typeof _bsa !== 'undefined' && _bsa) {
  443. _bsa.init('custom', 'CE7DV2JN', 'placement:startbootstrapcom',
  444. {
  445. target: '.native-standard',
  446. template: `
  447. <a href="##link##" class="native-banner" style="background: linear-gradient(-30deg, ##backgroundColor##E5, ##backgroundColor##E5 45%, ##backgroundColor## 45%) #fff;">
  448. <div class="native-main">
  449. <img class="native-img" src="##logo##">
  450. <div class="native-details" style="color: ##textColor##">
  451. <span class="native-company">Sponsored by ##company##</span>
  452. <span class="native-desc">##description##</span>
  453. </div>
  454. <span class="native-cta" style="color: ##ctaTextColor##; background-color: ##ctaBackgroundColor##;">##callToAction##</span>
  455. </div>
  456. </a>
  457. <a class="native-via" href="##adViaLink##">Ads via BuySellAds</a>
  458. `,
  459. }
  460. );
  461. }
  462. })();
  463. </script>