Git Product home page Git Product logo

plainadmin / plain-free-bootstrap-admin-template Goto Github PK

View Code? Open in Web Editor NEW
332.0 8.0 59.0 7.69 MB

Free Vanilla JavaScript Bootstrap 5 Admin and Dashboard Template that comes with all essential dashboard components, elements, charts, graph and application pages.

Home Page: https://plainadmin.com/

License: MIT License

HTML 77.36% CSS 13.41% JavaScript 1.10% SCSS 8.13%
bootstrap admin-dashboard admin-template free dashboard html-admin backend bootstrap5 charts graphs

plain-free-bootstrap-admin-template's Introduction

PlainAdmin - Free Vanilla JS Bootstrap 5 Admin Dashboard Template

PlainAdmin is a free and open-source Vanilla JS admin dashboard template based on Bootstrap 5 that comes with 5 unique dashboard variations, 300+ essential dashboard components, pages, UI elements, charts, graphs, application UI pages, and more. to provide everything you need to build a data-rich backend or admin panel for almost any sort of web app.

plainadmindemo

It comes with a minimal UI design that suits almost any kind of web project and offers the best possible user experience. PlainAdmin comes with SCSS files, an organized codebase, gulp support for efficient workflow, rich documentation, and everything else that you can expect from a modern admin template.

PlainAdmin is built with vanilla Javascript (no jQuery), Bootstrap 5 and the simplest possible way to make it easy to maintain and easy to port your back-end projects.

If you are looking for a high-quality free admin template that comes with all essential dashboard components and features then, PlainAdmin is the perfect choice for you.

Update Logs - 2.0 :

  • Rebranded the entire template.
  • Updated the style guide
  • The sidebar menu icons have been updated.
  • The overall design of the sidebar has been enhanced.
  • The header menu icons have been updated.
  • The design of the header dropdown has been updated.
  • Additional buttons have been added to the Button Page.
  • Updated essential dependencies
  • The charts code has been adjusted to accommodate the updated version.
  • UX and UI enhancements

Update Logs - 1.2 :

  • Added Kanban (App) [PRO]
  • Added File Manager (App) [PRO]
  • Dependencies updated
  • FullCalender updated

Update Logs - 1.1.2 :

  • FullCalender updated
  • Dependencies updates

Update Logs - 1.1.1 :

  • Updated to v5.1.3 (Latest)
  • Fixed minor bugs
  • Changed primary color
  • Multiple sidebar variations
  • Improved UX
  • Optimized codebase

Update Logs - 1.1 :

  • Updated to Bootstrap 5.1.1
  • Fixed minor bugs
  • Enhanced the UI and Improved Typography

plain-free-bootstrap-admin-template's People

Contributors

juhan-ahamed avatar mkd7x avatar musharofchy avatar shafiqhammad5 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

plain-free-bootstrap-admin-template's Issues

lineicons.css incorrect file references

Currently the font files are being referenced in lowercase:

@font-face {
  font-family: 'lineicons';
  src: url('../fonts/lineicons.eot');
  src: url('../fonts/lineicons.eot') format('embedded-opentype'),
       url('../fonts/lineicons.woff2') format('woff2'),
       url('../fonts/lineicons.woff') format('woff'),
       url('../fonts/lineicons.ttf') format('truetype'),
       url('../fonts/lineicons.svg') format('svg');
}

When it should be:

@font-face {
  font-family: 'lineicons';
  src: url('../fonts/LineIcons.eot');
  src: url('../fonts/LineIcons.eot') format('embedded-opentype'),
       url('../fonts/LineIcons.woff2') format('woff2'),
       url('../fonts/LineIcons.woff') format('woff'),
       url('../fonts/LineIcons.ttf') format('truetype'),
       url('../fonts/LineIcons.svg') format('svg');
}

This causes a 404 error when trying to fetch the font files from a web server.

SVG icons on menu

First, fantastic template.

On menu there are icons in SVG that doesn't included both from Lineicons or MDI. Is there a template to create the SVG or the icons created online?ย 

Active for slidebar

Help me set active for slidebar using jquery:

$(function () {
  var url = window.location.href;
  $(".sidebar-nav a").each(function () {
    if (url === this.href) {
      console.log(url);
      console.log(this.href);
      $(this).addClass("active");
      $(this).closest(".nav-item.nav-item-has-children").find("a[data-bs-toggle='collapse']").removeClass("collapsed");
      $(this).closest(".nav-item.nav-item-has-children").find(".collapse.dropdown-nav").addClass("show").attr("aria-expanded", "true");
      $(this).closest(".nav-item.nav-item-has-children").find(".collapse.dropdown-nav li a").addClass("active");
    } else {
      $(this).removeClass("active");
      $(this).closest(".nav-item.nav-item-has-children").find("a[data-bs-toggle='collapse']").addClass("collapsed");
      $(this).closest(".nav-item.nav-item-has-children").find(".collapse.dropdown-nav li a").removeClass("active");
    }
  });
  $(".nav-item").each(function () {
    if ($(this).find("a.active").length > 0) {
      $(this).addClass("active");
    } else {
      $(this).removeClass("active");
    }
  });
});

lineicons.css stylesheet

Hi,

Seems that there is an issue with the stylesheet assets/css/LineIcons.css on index.html while the file is named lineicons.css in that folder :
<link rel="stylesheet" href="assets/css/LineIcons.css" />

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.