A modern, responsive Jekyll theme that combines the power of Tailwind CSS with advanced features like syntax highlighting, interactive diagrams, and comprehensive blog layouts. Perfect for technical documentation, business websites, and developer portfolios.
Features
- Modern Design: Built with Tailwind CSS for responsive, customizable layouts
- Syntax Highlighting: Integrated highlight.js with enhanced code blocks
- Blog System: Post layouts with pagination, sidebar, and category support
- Excalidraw Integration: Interactive diagram editing and embedding
- Documentation Layouts: Specialized layouts for docs, case studies, and blog posts
- Calendly Integration: Configurable appointment scheduling
- SEO Ready: Jekyll SEO Tag integration
- Customizable: Override hooks for site-specific customizations
- Responsive Navigation: Dropdown menus with mobile hamburger menu
- Dark Mode: Pre-configured dark theme (Minima skin)
Installation
You can use the Analytiq Pages Theme in two ways:
Option 1: Use the Starter Template (Recommended)
The easiest way to get started is to use the analytiq-pages-starter template, which includes everything pre-configured:
- Click “Use this template” on the starter repository
- Enable GitHub Pages in Settings → Pages
- Your site will be live automatically!
The starter includes sample content, blog posts, documentation pages, and all the configuration you need.
Option 2: Embed the Theme in Your Existing Jekyll Site
If you already have a Jekyll site and want to add this theme:
1.Add the theme to your Gemfile:
gem "analytiq-pages-theme", git: "https://github.com/analytiq-hub/analytiq-pages-theme"
Or for a specific version (recommended):
gem "analytiq-pages-theme", git: "https://github.com/analytiq-hub/analytiq-pages-theme", tag: "v0.1.8"
2.Add the theme to your _config.yml:
theme: analytiq-pages-theme
3.Install dependencies:
bundle install
Quick Start
After installing the theme (see Installation above), customize your _config.yml:
title: "My Awesome Site"
author:
name: "Your Name"
email: "you@example.com"
description: "A brief description of your site"
# Navigation
header_pages:
- title: "About"
url: "/about"
- title: "Blog"
url: "/blog"
Visit http://localhost:4000 to see your site!
Configuration
Basic Site Setup
Configure your site in _config.yml:
title: Your Site Title
author:
name: Your Name
email: your-email@example.com
description: Your site description
# Navigation structure
header_pages:
- title: "About"
url: "/about"
- title: "Blog"
url: "/blog"
- title: "Resources"
url: "#"
children:
- title: "Documentation"
url: "/docs"
- title: "Tutorials"
url: "/tutorials"
# Footer navigation
site_map:
- title: "Company"
links:
- title: "About"
url: "/about"
- title: "Resources"
links:
- title: "Blog"
url: "/blog"
# Social links (used in footer)
minima:
social_links:
twitter: username
github: username
linkedin: username
Content & Layouts
Available Layouts
The theme provides several layouts:
Default Layout
---
layout: default
title: Page Title
---
Your content here
Home Layout
---
layout: home
---
Homepage content with featured sections
Post Layout
---
layout: post
title: Blog Post Title
date: 2025-11-28
categories: [category1, category2]
---
Post content with sidebar and metadata
Page Layout
---
layout: page
title: Page Title
---
Simple page layout
Excalidraw Editor Layout
---
layout: excalidraw-editor
permalink: /excalidraw-edit
title: Excalidraw Editor
---
Excalidraw Integration
The theme includes full Excalidraw support for creating and embedding diagrams.
1. Create the Editor Page
Create excalidraw.html in your site root:
---
layout: excalidraw-editor
permalink: /excalidraw-edit
title: Excalidraw Editor
---
2. Store Diagrams
Place your .excalidraw files in assets/excalidraw/:
your-site/
└── assets/
└── excalidraw/
├── architecture.excalidraw
└── workflow.excalidraw
Customization
The theme provides three customization hooks that you can override in your site:
Custom Head (_includes/custom-head.html)
Add site-specific items to <head>:
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'GA_MEASUREMENT_ID');
</script>
<!-- Custom favicon -->
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
Custom Header (_includes/custom-header.html)
Add announcements or additional navigation:
<div class="announcement bg-blue-600 text-white py-2 text-center">
<strong>New:</strong> Check out our latest features!
</div>
Custom Footer (_includes/custom-footer.html)
Add copyright, legal links, or additional content:
<div class="text-center text-sm text-gray-500 mt-4">
<p>© 2025 Your Company. All rights reserved.</p>
<p>
<a href="/privacy">Privacy Policy</a> |
<a href="/terms">Terms of Service</a>
</p>
</div>
Tailwind Components
The theme includes reusable Tailwind components:
Blog Sidebar
The blog sidebar appears on post pages and includes:
- Recent posts
- Categories
- Archive links
Configure in _includes/blog-sidebar.html (override in your site if needed)
Folder Structure
analytiq-pages-theme/
├── _includes/
│ ├── head.html # Theme <head> with Tailwind, highlight.js
│ ├── header.html # Responsive navigation
│ ├── footer.html # Site map, social links
│ ├── custom-head.html # Override hook for site-specific <head>
│ ├── custom-header.html # Override hook for header customization
│ ├── custom-footer.html # Override hook for footer customization
│ ├── blog-sidebar.html # Blog post sidebar
│ ├── enhanced-code-blocks.html # Code block enhancements
│ ├── excalidraw.html # Smart Excalidraw embed
│ ├── excalidraw-embed.html # Interactive iframe embed
│ ├── excalidraw-static.html # Static SVG rendering
│ ├── alert.html # Alert component
│ ├── button.html # Button component
│ ├── card.html # Card component
│ └── social.html # Social media links
├── _layouts/
│ ├── default.html # Base layout
│ ├── home.html # Homepage layout
│ ├── page.html # Simple page layout
│ ├── post.html # Blog post layout
│ └── excalidraw-editor.html # Excalidraw editor
├── assets/
│ ├── css/
│ │ └── style.scss # Custom styles
│ └── js/
│ ├── pagination.js # Pagination handling
│ └── excalidraw/
│ └── render-excalidraw.js # Static SVG renderer
├── _config.yml # Default theme configuration
├── analytiq-pages-theme.gemspec # Gem specification
├── Gemfile # Dependencies
├── LICENSE # MIT License
└── README.md # This file
Overriding Theme Files
To override any theme file, simply create the same file path in your site. For example:
- Override header: create
_includes/header.htmlin your site - Override post layout: create
_layouts/post.htmlin your site - Add custom styles: create
assets/css/custom.cssand reference in custom-head.html
Dependencies
- Jekyll ~> 3.9 - Static site generator (core dependency)
- jekyll-feed ~> 0.12 - RSS feed generation for blog posts
- jekyll-seo-tag ~> 2.6 - SEO meta tags and structured data
- jekyll-pdf-embed ~> 1.1 - PDF embedding support
- jekyll-paginate-v2 ~> 3.0 - Advanced pagination for blogs (optional)
Browser Support
- Modern browsers with ES6 module support
- Import map support required for Excalidraw features
Troubleshooting
Common Issues
Theme not loading after bundle install:
- Clear Jekyll cache:
rm -rf _site .jekyll-cache - Rebuild:
bundle exec jekyll build
Excalidraw diagrams not rendering:
- Ensure
.excalidrawfiles are inassets/excalidraw/ - Check browser console for JavaScript errors
- Verify import map support in your browser
Styles not applying:
- Check that Tailwind CSS is loading in browser dev tools
- Ensure
_config.ymlis valid YAML - Try rebuilding assets:
bundle exec jekyll build
Navigation not working:
- Verify
header_pagesconfiguration in_config.yml - Check that page files exist at specified URLs
Contributing
Bug reports and pull requests are welcome at GitHub
Sites Using This Theme
Here are some sites that showcase the Analytiq Pages Theme in action:
- Analytiq Hub - (GitHub) - Consulting company websie
- DocRouter.AI - (GitHub) - AI-powered document processing solution
- SigAgent.AI - (GitHub) - Claude Agent monitoring platform
- Bitdribble - (GitHub) - Personal knowledge repository