Templist - HTML5 Premium Digital Marketplace Directory Responsive Website Template

Note:-

Please refer Faq's page in documentation itself for queries and customization like Colors, RTL, Dark style..etc.

Dashboard
Welcome to Templist - HTML5 Premium Digital Marketplace Directory Responsive Website Template
  • Created Date: 30/10/2020
  • Upadted Date: 13/01/2023
  • Author: Spruko
  • Company: Spruko Technologies Private Limited

Thank you for purchasing our project and being our valued customer. We hope you are happy with your purchase. Feel free to contact us at any time. We have a dedicated team to provide you with the best support. If you have any issues, please contact the Support Help Desk at https://support.spruko.com/.

If You Love Our Template Design Please don't forgot to rate it. Thank you so much!

Introduction
Welcome to Templist - HTML5 Premium Digital Marketplace Directory Responsive Website Template

Templist - Listing Template, With these template formats, it's very easy to create a presence and grab someone's attention around the web page Because the template is built using HTML5, CSS3, Bootstrap 5 framework and with Sass. So please before you start working with the template take a quick look on the documentation so that you can easily built your website.

If You Love Our Template Design Please don't forgot to rate it. Thank you so much! 😊

Template Description

Templist is a Bootstrap Listing & Dashboard template using modern and minimal design. It is fully flexible user-friendly and responsive. Templist Listing template is powered with HTML 5, SASS, & Bootstrap 5 which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 65+ HTML Pages & 50+ Plugins & more UI elements . No Need to do hard work for this template customization. We already designed it and you can easily design your website just how you like it. Advanced Form-Elements like Date pickers, form elements are included. This template is designed using Bootstrap5 framework. This Listing template is fully 100% Premium Listing Templates quality. This template designed for using HTML5,CSS3,Jquery. After Purchased this template you will get All HTML files,CSS, Scss and JS Files.

It has super clean flat user interface Listing Backend design, easy customizable components and widgets.The Template comes with a awesome unique design also we ensure you can easily design Listing template.

It is a fully responsive layout for all type of devices. Works on all major web browsers, Desktop, iPhone, iPad, Tablet and all other smart phone devices

Once you Purchase Templist , you will be able to get free download of all future updates.

Template Features
Horizonal Listing Vertical Dashboard Dark Theme
Transparent Theme RTL Ready 70+ HTML Pages
Bootstrap 5 Responsive Framework 24 * 7 Professional Company Support 20+ Plugins
File upload contact Page Lockscreen Page
Error Page Under Construction Page User Profile
Invoice Page Advanced Pricing Tables Easy to Customize
More Widgets Neat, clean and simple design W3C Validated
CSS Structure

style.css is the main CSS file located in assets/css folder of the package. Whole CSS file is well indexed with topic and its related code.

    
		body {
			position: relative;
			transition: all 300ms ease-in-out 0s;
			/*Global Font*/
			/*Floating*/
			/*Section Fix*/
			font-family: 'Nunito', sans-serif;
			font-size: 16px;
			-webkit-font-smoothing: antialiased;
			color:#3e396b;
			background-image:url(../images/backgrounds/bg3.png);
			background-repeat:repeat;
		}

		body .fleft {
			float: left;
		}
		body .fright {
			float: right;
		}
		body section.row, body header.row, body footer.row {
			margin: 0;
			position: relative;
		}
		img {
			height: auto;
			-ms-interpolation-mode: bicubic;
			display: inline-block;
			vertical-align: middle;
		}
		.full-width{
			width:100%;
		}
		.shadow{
			box-shadow: 0px 5px 0 0px rgba(222, 222, 248,0.5), 0 5px 25px 0 rgba(222, 222, 248,0.9)
		}
		.shadow-dark{
			box-shadow: 0px 5px 0 0px rgba(0, 0, 0,0.3), 0 5px 25px 0 rgba(0, 0, 0,0.3);
		}
		.shadow-green{
			box-shadow: 0px 5px 0 0px rgba(82, 194, 52,0.5), 0 5px 25px 0 rgba(82, 194, 52,0.9)
		}
		.shadow-blue{
			box-shadow: 0px 5px 0 0px rgba(51, 105, 231,0.5), 0 5px 25px 0 rgba(51, 105, 231,0.9)
		}
		.shadow-orange{
			box-shadow: 0px 5px 0 0px rgba(248, 54, 0,0.5), 0 5px 25px 0 rgba(248, 54, 0,0.9)
		}
		.shadow-purple{
			box-shadow: 0px 5px 0 0px rgba(102, 18, 140,0.5), 0 5px 25px 0 rgba(102, 18, 140,0.9)
		}


 
JS Structure

custom.js is the main javascript file having all the js code. File is located in assets/js/ folder. This file code is also well formatted and section in different respective function names.

Along with this chart library based js code and dashboard based js code are added in separate files for ease of use of user.


(function($) {
	"use strict";


	// ______________ Cover-image
	$(".cover-image").each(function(e) {
		var attr = $(this).attr('data-bs-image-src');
		if (typeof attr !== typeof undefined && attr !== false) {
			$(this).css('background', 'url(' + attr + ') center center');
		}
	});

	// ______________ Global Loader
	$(window).on("load", function(e) {
		$("#global-loader").fadeOut("slow");
	})

	// ______________ Color-skin
	$(document).on("click", "a[data-bs-theme]", function(e) {
        $("head link#theme").attr("href", $(this).data("theme"));
        $(this).toggleClass('active').siblings().removeClass('active');
    });
    $(document).on("click", "a[data-bs-effect]", function(e) {
        $("head link#effect").attr("href", $(this).data("effect"));
        $(this).toggleClass('active').siblings().removeClass('active');
    });


	// ______________Active Class
	$(".horizontalMenu-list li a").each(function(e) {
		var pageUrl = window.location.href.split(/[?#]/)[0];
		if (this.href == pageUrl) {
			$(this).addClass("active");
			$(this).parent().addClass("active"); // add active to li of the current link
			$(this).parent().parent().prev().addClass("active"); // add active class to an anchor
			$(this).parent().parent().prev().click(); // click the item to make it drop
		}
	});


	// ______________ Back to Top
	$(window).on("scroll", function(e) {
		if ($(this).scrollTop() > 0) {
			$('#back-to-top').fadeIn('slow');
		} else {
			$('#back-to-top').fadeOut('slow');
		}
	});
	$(document).on("click", "#back-to-top", function(e) {
		$("html, body").animate({
			scrollTop: 0
		}, 0);
		return false;
	});


});