GithubHelp home page GithubHelp logo

nivalamata / alpine-html-bootstrap Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pixelrocket-shop/alpine-html-bootstrap

0.0 0.0 0.0 5.17 MB

Alpine is a responsive Bootstrap 5 Ecommerce template with a "Ken Burns" effect on the homepage slideshow, angled banners, and a custom image hotspot banner with popout product cards.

Home Page: https://alpine-html-bootstrap.vercel.app

License: MIT License

JavaScript 9.65% HTML 47.93% SCSS 42.42%

alpine-html-bootstrap's Introduction

Alpine - Bootstrap 5 HTML Responsive Ecommerce Template

Overview

For the fashion focused online store, Alpine is a responsive Bootstrap 5 Ecommerce template with a "Ken Burns" effect on the homepage slideshow, angled banners, and a custom image hotspot banner with popout product cards. Large product images on category pages give you ample room for showcasing products while simultaneously providing easy navigation throughout the website. It's the perfect starting point for any fashion retail website, and the template's clean and minimal design means it's easy to modify and painless to integrate with your custom Ecommerce application. And above all, it's free.

View Demo | Download ZIP

Bootstrap 5 Responsive HTML Fashion Store Template

Table of contents

Requirements

If you do not intend to work with the template source code (and that means you will not be compiling it or running the Webpack dev server), you do not need to install anything. You can simply navigate to the dist folder and start editing the files.

Most developers will be editing the source code and will also be running Webpack to recompile the template files. If that's the case, then ensure that you have Node.js installed. You can download it from here

Quick Start

  • Download the latest release OR clone the repo: git clone https://github.com/PixelRocket-Shop/alpine-html-bootstrap.git
  • Install Node.js if you don't already have it on your system.
  • Open the project root in your command line.
  • run npm install in your command line.
  • run npm start to start Webpack devserver.
  • if you want to recompile the template files (which output to the dist folder), run npm run build

Template Pages

The template consists of 5 pages:

  • Homepage
  • Category page
  • Product page
  • Cart page
  • Checkout page

To keep code repetition to a minimum, we've used Handlebars.js as the templating engine and partials to quickly add the same code to different pages. We also use a Handlebars plugin for JSON data - this allows us to use loops and output a single HTML code block instead of repeating the same HTML.

Demo Link

Demo URL

Please note that this is an HTML template only. It does not connect to a database, and will not automatically work in a content management system (Wordpress etc). You will need to incorporate our code into your application.

Template Key Features

  • Homepage slideshow (using Swiper.js)
  • Built with Bootstrap 5
  • Fully responsive
  • Brand logo component
  • Homepage featured products slideshow component (using Swiper.js)
  • Image Hotspot component with popout product card (using Tippy.js)
  • Instagram slideshow component
  • Category listing card showing sale badge and discount percentage
  • Custom pagination component
  • Header Megamenu
  • Customer review component
  • Company review component
  • Related products slideshow component
  • Offcanvas category filter display
  • Header cart offcanvas display
  • Custom search overlay

Template File structure

๐Ÿ“ dist - Generated version of the template. Go here if you do not want to work with the template source code. But be warned: if you customise anything in this folder directly, and then later recompile the template using webpack, unless you move the dist folder out of the template, your changes will be overridden.

๐Ÿ“ node_modules - Directory where NPM installs dependancies. You will not see this folder until you complete the template installation. You do not need to create this folder.

๐Ÿ“ src - Template source code. Go here to customise your template.

๐Ÿ“ src/assets - Template assets such as CSS, JS, Images etc.

๐Ÿ“ src/data - Template JSON Data files. We use these JSON files to make your job easier to insert content into the template.

๐Ÿ“ src/html - Template pages. Go here to edit existing pages or add new pages.

๐Ÿ“ src/partials - Handlebars partial templates.

Handlebars

Handlebars is a template engine that allows us to keep our template source code as organised and as clean as possible. It cuts down on code duplication and through the use of helper functions, allows template developers to very quickly output large amounts of data with minimal code. You can read more about it here.

We use Handlebars for two main reasons: firstly, the use of Handlebars partials allows us to reference the same file in multiple HTML files and means that you only have to edit the code from a single source. If you're used to working with React or Vue, this would be the same as referencing a component. Secondly, the use of JSON data for our dummy catalogue data keeps our template code clean. We can easily output 10 dummy products on our listing page by outputting a basic Handlebars loop.

Example Handlebars Partial

Open the following file in our template: src/html/index.html.

Around line 46 you'll see the following code:

{{> swiper/swiper-hero-slideshow }}

That's a Handlebars partial. That code tells Handlebars to look inside a folder called swiper (located in the partials folder) and then to find a file called swiper-hero-slideshow and insert it into the index.html file when it is compiled.

There are a few important notes about our use of Handlebars partials:

  • All of our partials are stored inside src/partials. Do not place partials anywhere else.
  • We use .html as our partial file extension. We have also added .svg as a valid partial file extension.
  • If you have folders within folders inside your partial folder, only reference the folder the partial resides in. So "partials/header/navbars/navbar.html" would be referenced as "navbars/navbar".
  • Do not include the partial file extension. Note in the example above that we output "swiper-hero-slideshow" and not "swiper-hero-slideshow.html"

Handlebars Loops

Let's look at how we use Handlebars to keep our code base clean. Open up the category page: src/html/category.html.

Around line 56, you will find this code:

{{#if (config category-products)}}
    {{#each (limit category-products.entries 4)}}
        <div class="col-12 col-sm-6 col-md-4">
            {{> listing-cards/listing-card this }}
        </div>
    {{/each}}
{{/if}}

And that's our loop for a category page. We're passing in JSON data to our Handlebars loop, then inside the loop we are referencing a Handlebars partial and passing it the data for each loop item:

{{> listing-cards/listing-card this }}

Template JSON Data

The Webpack Handlebars plugin that we use comes with a very handy utility that allows us to pass in JSON files as template data.

Please navigate to: src/data. Here is where our template data JSON files reside. You can edit, remove or add your own to this folder.

Again, if we reference our category page loop:

{{#if (config category-products)}}
    {{#each (limit category-products.entries 4)}}
        <div class="col-12 col-sm-6 col-md-4">
            {{> listing-cards/listing-card this }}
        </div>
    {{/each}}
{{/if}}

The important part here with regards to template data is category-products.entries. What this means is that inside our data folder you will find a JSON file called "category-products". This category-products.json file has a "key" called "entries".

Customise Template Styles

All of the template's source CSS/SASS files are kept inside the template's assets folder. Navigate to src/assets/scss. Open up theme.scss with your editor.

This is the main entry point for all other SASS/CSS files.

Create New Pages

To create a new page, navigate in your code editor to: src/html. To make it easier to get the correct HTML in place, clone an existing page. Rename the newly-created file to whatever URL you require. And that's it. You are now free to open the new page with your code editor, make your changes, and then save the file. Quit Webpack devserver and restart it for the page to show up.

Bootstrap Documentation

Bootstrap already has a comprehensive documentation site that will guide you in setting up and using all default Bootstrap features. Bootstrap 5 is fully integrated to our template's source code. Please refer to Bootstrap's doc site first for any default Bootstrap features: Visit Bootstrap's Doc Site

Credits

Bootstrap

AOS.js

Unsplash

Pexels

Pixabay

MediumZoom.js

NoUiSlider.js

Simplebar.js

Swiper.js

Contact Us

You can find our website here or you can email us at [email protected]

alpine-html-bootstrap's People

Contributors

criketman66 avatar

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.