No commit activity in last 3 years
No release in over 3 years
Rails gem of the Bootstrap based admin theme SB Admin. Originally created by Start Bootstrap. You could check the original theme on https://github.com/BlackrockDigital/startbootstrap-sb-admin
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Gem Version

About

bootstrap_sb_admin_base_v1 is a Rails gem of the Bootstrap based admin theme SB Admin. Originally created by Start Bootstrap, all the credits of the development of the Bootstrap admin theme are of them. This is just and adaptation into Rails gem in order to make it easier to integrate all the assets (fonts, images, css and js) into a Rails application.

You can check the original Bootstrap admin theme repository here.

If you want the second version of this theme as a Rails gem, check this repository.

Installation

Add this line to your application's Gemfile:

gem 'bootstrap_sb_admin_base_v1'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bootstrap_sb_admin_base_v1

Usage

This gem has three dependencies: jquery-rails, font-awesome-sass and bootstrap in order to keep updated the versions of jQuery, Font Awesome and Bootstrap, so be sure to require these on your application.js before requiring the bootstrap_sb_admin_base_v1 file like so:

  //= require jquery3
  //= require popper
  //= require bootstrap
  //= require bootstrap_sb_admin_base_v1

and on the application.scss file, be sure to require the font-awesome-sass and bootstrap file:

    @import 'bootstrap';
    @import 'font-awesome-sprockets';
    @import 'font-awesome';
    @import 'bootstrap_sb_admin_base_v1';

And you're ready to use the HTML structure of the Bootstrap based admin theme SB Admin on your Rails application. All the details and documentation about this are here.


This project was developed by dreamingechoes. It adheres to its code of conduct and contributing guidelines, and uses an equivalent license.