{# Demo Content Loader - Only loads in preview/demo mode #} {# Usage: {% if request.query_dict.demo == "true" %}{% include "includes/demo-content.html" %}{% endif %} #} {% set is_demo_mode = request.query_dict.demo == "true" or request.query_dict.preview == "true" %} {% if is_demo_mode %}
Demo Mode Active - Sample content is being displayed. Exit Demo
{# Demo Content Definitions #} {% set demo_hero_title = "Welcome to Fasterrr Theme" %} {% set demo_hero_subtitle = "Experience blazing-fast performance with modern web technologies" %} {% set demo_hero_cta = "Get Started" %} {% set demo_features = [ { "title": "Lightning Fast", "description": "95+ PageSpeed scores out of the box with optimized critical rendering path", "icon": "⚡" }, { "title": "Modern Only", "description": "No legacy browser support means 85% less CSS and JavaScript", "icon": "🚀" }, { "title": "Mobile First", "description": "Responsive design that prioritizes mobile performance and usability", "icon": "📱" } ] %} {% set demo_testimonials = [ { "quote": "The fastest HubSpot theme we've ever used. Our PageSpeed scores went from 60 to 95!", "author": "Sarah Johnson", "company": "TechCorp Inc." }, { "quote": "Finally, a theme that doesn't compromise on performance for features.", "author": "Mike Chen", "company": "Digital Agency" } ] %} {# Make demo content available globally #} {% endif %}