Installation
Basic tips and quick quide that will help you build your first page.
Get started with Reveal Template which is extended version of Bootstrap, the world’s most popular framework for building responsive, mobile-first sites, with predefined styles and a template starter page. While this is extended Bootstrap 4 template we avoid to overwrite default utilities or components. If you are already familiar with Bootstrap syntax, you're ready to go. All upgrades with advanced and premium features are explained in following documentation so please use the side menu to navigate the documentation.
For quick start copy HTML folder with all subfolders and files for your desired project, so you can use plain HTML, CSS and JS to work around.
Looking to quickly add Reveal template to your project you need to include all needed CSS files. Make sure that the main stylesheet style.css is the last one, it will apply all predefined components and color sets. Media queries for responsive preview are included!
Copy<!-- Vendor stylesheets -->
<link rel="stylesheet" media="all" href="css/vendor/animate.css" />
<link rel="stylesheet" media="all" href="css/vendor/font-awesome.css" />
<link rel="stylesheet" media="all" href="css/vendor/linear-icons.css" />
<link rel="stylesheet" media="all" href="css/vendor/owl.carousel.css" />
<link rel="stylesheet" media="all" href="css/vendor/jquery.lavalamp.css" />
<!-- Template stylesheets -->
<link rel="stylesheet" media="all" href="css/style.css" />
Also for javascript plugins you should include mandatory libraries. Many of our components require the use of JavaScript to function. Specifically, they require jQuery, and JavaScript plugins. Our bootstrap.bundle.js and bootstrap.bundle.min.js includes Popper.js. For more info about popper.js read more on this link.
Copy<!-- Vendor Scripts -->
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/bootstrap.bundle.js"></script>
<script src="js/vendor/in-view.min.js"></script>
<script src="js/vendor/jquery.lavalamp.js"></script>
<script src="js/vendor/owl.carousel.js"></script>
<script src="js/vendor/rellax.js"></script>
<script src="js/vendor/wow.js"></script>
<script src="js/vendor/tabzy.js"></script>
<script src="js/vendor/isotope.pkgd.js"></script>
<!-- Template Scripts -->
<script src="js/main.js"></script>
<script src="js/custom.js"></script>For building your own template we prepare the starter template code. Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:
Copy<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Mobile Web-app fullscreen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!-- Meta tags -->
<meta name="description" content="Extended Bootstrap 4 Template">
<meta name="author" content="Goran Hrustic">
<link rel="icon" href="assets/svg/favicon.ico">
<!-- Title -->
<title>Reveal - Demo title</title>
<!-- Vendor stylesheets -->
<link rel="stylesheet" media="all" href="css/vendor/animate.css" />
<link rel="stylesheet" media="all" href="css/vendor/font-awesome.css" />
<link rel="stylesheet" media="all" href="css/vendor/linear-icons.css" />
<link rel="stylesheet" media="all" href="css/vendor/owl.carousel.css" />
<link rel="stylesheet" media="all" href="css/vendor/jquery.lavalamp.css" />
<!-- Template stylesheets -->
<link rel="stylesheet" media="all" href="css/style.css" />
<!--HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries-->
<!--[if lt IE 9]><script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
</head>
<body>
<section>
<div class="container">
<h1>Hello World</h1>
</div>
</section>
<!-- Vendor Scripts -->
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/bootstrap.bundle.js"></script>
<script src="js/vendor/in-view.min.js"></script>
<script src="js/vendor/jquery.lavalamp.js"></script>
<script src="js/vendor/owl.carousel.js"></script>
<script src="js/vendor/rellax.js"></script>
<script src="js/vendor/wow.js"></script>
<script src="js/vendor/tabzy.js"></script>
<script src="js/vendor/isotope.pkgd.js"></script>
<!-- Template Scripts -->
<script src="js/main.js"></script>
<script src="js/custom.js"></script>
</body>
</html>
For professionals and frontend Jedi's who want's to speed up development we have optional step to build project with front-end tools and libraries such as Node, Gulp and Handlebars as file generator. Please check developer environment setup.




