Select a page built with Builder V2 to extract its components
Create Preset
Color Scheme
Font Scheme
Powered by Google Fonts
Powered by Google Fonts
Add New Page Template
How it works: Create a page template here, then design it in Builder V2. When users install your theme, these pages will be auto-created on their website.
Templates use dynamic data injection for posts, products, bookings, etc.
URL-friendly version of the title (e.g., about-us)
Display order (lower numbers appear first)
Create New Version
Current version: {{ $theme->version ?? '1.0.0' }}
This will create a snapshot of the current theme including all components, pages, and presets.
@push('scripts')
${JSON.stringify(component.variables, null, 2)}
`.trim();
navigator.clipboard.writeText(allCode).then(() => {
alert('Code copied to clipboard!');
}).catch(err => {
console.error('Failed to copy:', err);
alert('Failed to copy code to clipboard');
});
}
});
}
// Initialize tooltips for universal components
document.addEventListener('DOMContentLoaded', function() {
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
});
@endpush
@endsection