Everything you need to set up, customize, and launch your BlockZen template
blockzen/ ├── main/ # All template files │ ├── home-1.html # Demo 1 — Classic ICO (Purple) │ ├── home-2.html # Demo 2 — SaaS Web3 (Teal) │ ├── home-3.html # Demo 3 — Futuristic (Neon Green) │ ├── home-4.html # Demo 4 — Exchange/Wallet (Gold) │ ├── home-5.html # Demo 5 — Presale/NFT (Orange) │ └── assets/ │ ├── css/ │ │ ├── blockzen.css # Main stylesheet (all 5 pages) │ │ ├── animations.css # Animation utilities │ │ ├── responsive.css # Responsive overrides │ │ ├── style.css # Base reset and utilities │ │ └── bootstrap.min.css │ ├── js/ │ │ ├── blockzen.js # Main JavaScript (all 5 pages) │ │ ├── main.js # Shared jQuery utilities │ │ ├── jquery.min.js │ │ └── bootstrap.bundle.min.js │ ├── images/ # Add your images here │ │ └── og-preview.jpg # Social share preview image │ ├── favicon.svg # Browser tab icon │ ├── fonts/ # Optional local fonts │ └── vendor/ │ ├── aos/ # Animate On Scroll │ ├── bootstrap-icons/ │ ├── chartjs/ │ └── swiper/ ├── documentation/ │ └── index.html # Full documentation └── getting-started.html # This file
main/home-N.html file in your browser — or use a local server for best results.main/assets/images/ with your own artwork.Changing colors: Each page's accent color is defined at the top of blockzen.css
under its body.page-N {} block using CSS custom properties:
/* Page 1 — Purple */ body.page-1 { --p: #7c3aed; /* primary accent */ --p2: #a855f7; /* secondary accent */ --bg: #0d0d1a; /* page background */ }
Dark / Light theme: All pages ship with a dark default and a
dim-palette light mode. Users can toggle using the sun/moon icon in the navbar. The preference is saved in
localStorage under the key bzn-theme.
data-bs-theme="dark" to
data-bs-theme="light" on the <html> tag.Place your images inside main/assets/images/ and its subdirectories:
background/ — Hero and section backgroundslogo/ — Brand logosteam/ — Team member photos (recommended: 400×400 px, square, .jpg or .webp)blog/ — Blog or news article thumbnailsicons/ — Feature/section icons (SVG recommended)Update the src attributes in the HTML to match your file names. The
template uses Bootstrap's img-fluid class on all images for responsiveness.
data-aos attribute.blockzen.js under the #navbar guard block.| Browser | Version | Status |
|---|---|---|
| Chrome | 90+ | ✅ Fully supported |
| Firefox | 88+ | ✅ Fully supported |
| Edge | 90+ | ✅ Fully supported |
| Safari | 14+ | ✅ Fully supported |
| Opera | 76+ | ✅ Fully supported |
| Internet Explorer | — | ❌ Not supported |
| Resource | License | URL |
|---|---|---|
| Bootstrap 5 | MIT | getbootstrap.com |
| jQuery 3 | MIT | jquery.com |
| AOS Library | MIT | michalsnik.github.io/aos |
| Chart.js | MIT | chartjs.org |
| Swiper JS | MIT | swiperjs.com |
| Bootstrap Icons | MIT | icons.getbootstrap.com |
| Font Awesome 6 | CC BY 4.0 (icons) | fontawesome.com |
| Google Fonts | OFL / Apache | fonts.google.com |
For support requests, please use the Comments section on the ThemeForest item page. Include your purchase code and describe the issue in detail. We typically respond within 1–2 business days.
For full API and component references, see the Documentation.