Buzzer

Subscribe

Accordion

  • Lorem ipsum

    Lorem ipsum dolor sit amet, elit. Placeat, quibusdam! Voluptate nobis

  • Dolor sit amet

    Lorem ipsum dolor sit amet, consectetur adipisicing Voluptate nobis

Image Gallery

Introduction

We’ve created this admin panel for everyone who wants to create any templates based on our ready components. Our mission is to deliver a user-friendly, clear and easy administration panel, that can be used by both, simple websites and sophisticated systems. The only requirement is a basic HTML and CSS knowledge—as a reward, you’ll be able to manage and visualize different types of data in the easiest possible way!

buzzer is a popular open source WebApp template for admin dashboards and admin panels. It’s responsive HTML template, which is based on the Bootstrap 4X framework. It utilizes all of the Bootstrap components in design and re-styles many commonly used plugins to create a consistent design that can be used as a user interface for backend applications.

buzzer is based on a modular design, which allows it to be easily customised and built upon any backend project in no-time. Our documentation will guide you through installing the template and exploring the various components that are bundled with the template.


Grunt File & Installation

The JavaScript Task Runner.

Installing Grunt: Run npm install grunt --save-dev command from your teminal to install grunt within your project.

Grunt Sass: Run grunt sass command from your project directory. It will compile SASS to CSS for the project. This will read the file `assets/scss/filename.scss` and output a plain-css file to `/assets/css/filename.css`.

Grunt JSHint: Run grunt jshint command from your project directory. It will checks all *.js files under `assetsjs/filename` for common syntax or coding errors using the JSHint utility.

Grunt Sprite: Run grunt sprite command from your project directory.

Further help: To get more help on the grunt checkout Grunt

Note: However, any SASS code you write must be able compile via Grunt as well.It will generate pre-compiled javascript templates. Reads all the *.html files from `assets/js/filename` and outputs `assets/js/filename.templates.js`. Template.js will contains code of UI design and will be change each time you build solution through above command.

Grunt is a JavaScript task runner, a tool used to automatically perform frequent tasks such as minification, compilation, unit testing, and linting. It uses a command-line interface to run custom tasks defined in a file.


SCSS Structure

Before you can use Sass, you need to set it up on your project. If you want to just browse here, go ahead, but we recommend you go install Sass first. Go here if you want to learn how to get everything setup.


Folder Structure

HTML/
├── Light
    ├── HTML/
    ├── assets/
       ├── css/
       ├── fonts/
       ├── js/
       ├── sass/
├── assets/
   ├── images/
   ├── vendor/
├── Doc HTML

Font Used

Google fonts are used in the template. They are as follows: Source Sans Pro

Font Awesome: Click to See

All Images are used: Pexels.com


RequireJS Structure

Configuration

Before using AMD modules, you need to include requirejs.js fileinto the document's head. This file contains the requirejs lib andbasic RequireJS configuration:

The document's head will contain the next lines of code:


<script src="assets/js/require.min.js"></script>
<script src="assets/js/main.js"></script>

Configure paths in the main.js file:


require.config({
    shim: {
        'bootstrap':                ['jquery'],
        'datepicker':               ['bootstrap', 'jquery'],
        'summernote':               ['jquery'],
        'fullcalendar':             ['jquery'],
        'nestable':                 ['jquery'],
        'sweetalert':               ['jquery'],
    },
    paths: {
        
        'core': 'assets/js/core',
        // main js file path
        'jquery':                   '../assets/plugins/jquery/jquery-3.3.1.min',
        'bootstrap':                '../assets/plugins/bootstrap/js/bootstrap.bundle.min',
        'datepicker':               '../assets/plugins/bootstrap-datepicker/js/bootstrap-datepicker.min',
        'bootstrap_multiselect':    '../assets/plugins/bootstrap-multiselect/bootstrap-multiselect',
        'jquery_multiselect':       '../assets/plugins/multi-select/js/jquery.multi-select',
    }
});

window.buzzer= {
    colors: {
        'blue': '#467fcf',
    }
};
require(['core']);

requirejs.config({
    baseUrl: '.',
});

Usage

After you include the required files and configure paths, you need to load coremain.js file before any Buzzer component. Then you canuse Buzzer components.


require(['c3', 'jquery'], function(c3, $) {
    ...
});