- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1775 lines
75 KiB
PHP
Executable File
1775 lines
75 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* holds configuration for all landing page templates
|
|
* these values are loaded in the edit mode of the post, and injected in javascript
|
|
*/
|
|
/*
|
|
|
|
documentation on each key:
|
|
[REQUIRED] name => the user-friendly name for the template
|
|
[REQUIRED] tags => an array of keywords that will allow for easier searches (can be empty)
|
|
set => name of the set that contains the landing page
|
|
extended_dropzone_elements => selector for elements that should contain a drop zone if they have no children
|
|
fonts => array of links to custom fonts to include in the <head> section
|
|
custom_color_mappings => extra color pickers to display for the main content area
|
|
icons => an array of icon classes to be merged with (possible) existing icons - use this if the template has some custom icons created with fonts
|
|
has_lightbox => boolean indicating if a lightbox should automatically be created for this landing page
|
|
lightbox => array of lightbox settings. for now: (
|
|
max_width => {val}px
|
|
max_height => {val}px
|
|
hidden_menu_items => array of keys that allows hiding some controls from the Main Content Area menu. possible keys:
|
|
bg_color
|
|
bg_pattern
|
|
bg_image
|
|
max_width
|
|
bg_static
|
|
bg_full_height
|
|
border_radius
|
|
style_family => the default style family for the template. accepted values: Flat | Minimal | Classy
|
|
*/
|
|
|
|
return array(
|
|
'blank_v2' => array(
|
|
'name' => 'Blank Page',
|
|
'tags' => [],
|
|
'set' => 'blank',
|
|
'style_family' => 'Flat',
|
|
'head_css' => '@media (min-width: 300px){.tve_post_lp > div > :not(#tve) { --page-section-max-width:1080px; }}',
|
|
'globals' => [ 'body_css' => 'tve-u-15e09c94f7d' ],
|
|
),
|
|
'blank' => [
|
|
'name' => 'Blank Page', //required
|
|
'tags' => [],
|
|
'set' => 'blank',
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'author-focused-homepage' => [
|
|
'name' => 'Author Focused Homepage', //required
|
|
'set' => 'Focused',
|
|
'tags' => [ 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '480px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'offer-focused-homepage' => [
|
|
'name' => 'Offer Focused Homepage', //required
|
|
'set' => 'Focused',
|
|
'tags' => [ 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'offerfocused-icon-arrow',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '480px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'content-focused-homepage' => [
|
|
'name' => 'Content Focused Homepage', //required
|
|
'set' => 'Focused',
|
|
'tags' => [ 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
'//fonts.googleapis.com/css?family=Montserrat:400,700',
|
|
],
|
|
'hidden_menu_items' => [
|
|
'max_width',
|
|
'bg_full_height',
|
|
'border_radius',
|
|
],
|
|
'icons' => [
|
|
'contentfocused-icon-arrow',
|
|
'offerfocused-icon-speaker',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '480px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'hybrid-homepage1' => [
|
|
'name' => 'Hybrid Homepage 1', //required
|
|
'set' => 'Hybrid',
|
|
'tags' => [ 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
'//fonts.googleapis.com/css?family=Montserrat:400,700',
|
|
],
|
|
'hidden_menu_items' => [
|
|
'max_width',
|
|
'bg_full_height',
|
|
'border_radius',
|
|
],
|
|
'icons' => [
|
|
'hybrid-icon-chart',
|
|
'hybrid-icon-speaker',
|
|
'hybrid-icon-ribbon',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '480px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'hybrid-homepage2' => [
|
|
'name' => 'Hybrid Homepage 2', //required
|
|
'set' => 'Hybrid',
|
|
'tags' => [ 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,300,700',
|
|
],
|
|
'icons' => [
|
|
'hybrid-icon-chart',
|
|
'hybrid-icon-speaker',
|
|
'hybrid-icon-ribbon',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '480px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'copy-2-coming-soon' => [
|
|
'name' => 'Copy 2.0 Coming Soon Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'lead generation', '1-step', 'coming soon' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'hidden_menu_items' => [
|
|
'max_width',
|
|
'bg_full_height',
|
|
'border_radius',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-download-page' => [
|
|
'name' => 'Copy 2.0 Download Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'hidden_menu_items' => [
|
|
'max_width',
|
|
'bg_full_height',
|
|
'border_radius',
|
|
],
|
|
'icons' => [
|
|
'copy2-icon-book',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-email-confirmation' => [
|
|
'name' => 'Copy 2.0 Email Confirmation Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-product-launch' => [
|
|
'name' => 'Copy 2.0 Product Launch Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'product launch', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '1080px',
|
|
'max_height' => '550px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-lead-generation' => [
|
|
'name' => 'Copy 2.0 Lead Generation Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-lead-generation-2step' => [
|
|
'name' => 'Copy 2.0 2-Step Lead Generation Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '1080px',
|
|
'max_height' => '550px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-sold-out' => [
|
|
'name' => 'Copy 2.0 Sold Out Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-video-sales-page' => [
|
|
'name' => 'Copy 2.0 Video Sales Page', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy-2-hybrid-sales-image' => array(
|
|
'name' => 'Copy 2.0 Hybrid Sales Page (Image Version)', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'icons' => [
|
|
'copy2-icon-paperplane',
|
|
'copy2-icon-speaker',
|
|
'copy2-icon-idea',
|
|
],
|
|
'style_family' => 'Classy',
|
|
),
|
|
'copy-2-hybrid-sales-video' => array(
|
|
'name' => 'Copy 2.0 Hybrid Sales Page (Video Version)', //required
|
|
'set' => 'Copy 2.0',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Gentium+Basic:400,700,400italic',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic',
|
|
],
|
|
'icons' => [
|
|
'copy2-icon-paperplane',
|
|
'copy2-icon-speaker',
|
|
'copy2-icon-idea',
|
|
],
|
|
'style_family' => 'Classy',
|
|
),
|
|
'phonic-bonus-episode-optin' => [
|
|
'name' => 'Phonic Podcast Bonus Episode Opt-In Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'lead generation', '2-step', 'video', 'podcast' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '470px',
|
|
'max_height' => '600px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-bonus-episode-download' => [
|
|
'name' => 'Phonic Podcast Bonus Episode Download Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-download1' => [
|
|
'name' => 'Phonic Podcast Download Page 1', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-download2' => [
|
|
'name' => 'Phonic Podcast Download Page 2', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-email-first-landing-page' => [
|
|
'name' => 'Phonic Podcast “Email First Landing Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'lead generation', 'podcast', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-email-first-download-page' => [
|
|
'name' => 'Phonic Podcast “Email First Download Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'lead generation', 'podcast', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-email-confirmation-page' => [
|
|
'name' => 'Phonic Email Confirmation Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'lead generation', 'podcast', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'phonic-icon-email-download',
|
|
'phonic-icon-email-open',
|
|
'phonic-icon-email-click',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-itunes' => [
|
|
'name' => 'Phonic Podcast iTunes Landing Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'phonic-icon-arrowright',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '760px',
|
|
'max_height' => '500px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-soundcloud' => [
|
|
'name' => 'Phonic Podcast SoundCloud Landing Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'phonic-icon-arrowright',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '760px',
|
|
'max_height' => '500px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-stitcher' => [
|
|
'name' => 'Phonic Podcast Stitcher Landing Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '760px',
|
|
'max_height' => '500px',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'phonic-icon-arrowright',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-podcast-subscription' => [
|
|
'name' => 'Phonic Podcast Subscription Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'phonic-icon-email-download',
|
|
'phonic-icon-email-open',
|
|
'phonic-icon-email-click',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '760px',
|
|
'max_height' => '500px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'phonic-universal-podcast' => [
|
|
'name' => 'Phonic Universal Podcast Landing Page', //required
|
|
'set' => 'Phonic',
|
|
'tags' => [ 'podcast', 'lead generation', '2-step', 'homepage' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,400,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,800italic,800,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'phonic-icon-arrow',
|
|
'thrv-icon-forward',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '760px',
|
|
'max_height' => '500px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'confluence-webinar-registration' => [
|
|
'name' => 'Confluence Webinar Registration Page', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'webinar', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '750px',
|
|
'max_height' => '400px',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'confluence-double-whammy-webinar' => [
|
|
'name' => 'Confluence Double Whammy Webinar Page', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'webinar', '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '750px',
|
|
'max_height' => '400px',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'confluence-webinar-ended-template' => [
|
|
'name' => 'Confluence Webinar Ended Template', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'webinar', '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '750px',
|
|
'max_height' => '400px',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'confluence-email-confirmation' => [
|
|
'name' => 'Confluence Email Confirmation Page', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'confluence-thank-you' => [
|
|
'name' => 'Confluence Webinar Thank You Page', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'webinar' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'icons' => [
|
|
'confluence-icon-edit',
|
|
'confluence-icon-calendar',
|
|
'confluence-icon-bell',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'confluence-thank-you-download' => [
|
|
'name' => 'Confluence Webinar Thank You Page + Download', //required
|
|
'set' => 'Confluence',
|
|
'tags' => [ 'webinar', 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
'//fonts.googleapis.com/css?family=PT+Sans:700',
|
|
],
|
|
'icons' => [
|
|
'confluence-icon-edit',
|
|
'confluence-icon-calendar',
|
|
'confluence-icon-bell',
|
|
'confluence-icon-pdf',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'review-page' => [
|
|
'name' => 'Review Page', //required
|
|
'set' => 'Review',
|
|
'tags' => [ 'review' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,300,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700,700italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,300',
|
|
],
|
|
'style_family' => 'Flat',
|
|
'icons' => [
|
|
'review-page-icon-arrow',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '800px',
|
|
'max_height' => '450px',
|
|
],
|
|
],
|
|
'review-comparison-page' => [
|
|
'name' => 'Review Comparison Page', //required
|
|
'set' => 'Review',
|
|
'tags' => [ 'review' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,300,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700,700italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,300',
|
|
],
|
|
'style_family' => 'Flat',
|
|
'icons' => [
|
|
'review-page-icon-arrow',
|
|
],
|
|
],
|
|
'review-resources-page' => [
|
|
'name' => 'Review Resources Page', //required
|
|
'set' => 'Review',
|
|
'tags' => [ 'review' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,300,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700,700italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,300',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'review-video-recommendation-page' => [
|
|
'name' => 'Review Video Recommendation Page', //required
|
|
'set' => 'Review',
|
|
'tags' => [ 'review' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,300,700,500,500italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700,700italic',
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,300',
|
|
],
|
|
'style_family' => 'Flat',
|
|
'icons' => [
|
|
'review-page-icon-gear',
|
|
'review-page-icon-download',
|
|
'review-page-icon-files',
|
|
'review-page-icon-tools',
|
|
'review-page-icon-atom',
|
|
'review-page-icon-arrow',
|
|
],
|
|
],
|
|
'elementary-lead-generation' => [
|
|
'name' => 'Elementary 1-Step Lead Generation', //required
|
|
'set' => 'Elementary',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300,600,700',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'elementary-email-confirmation' => [
|
|
'name' => 'Elementary Email Confirmation Page', //required
|
|
'set' => 'Elementary',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300,600,700',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'elementary-download-page' => [
|
|
'name' => 'Elementary Download Page', //required
|
|
'set' => 'Elementary',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300,600,700',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'elementary-video-sales-page' => [
|
|
'name' => 'Elementary Video Sales Page', //required
|
|
'set' => 'Elementary',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300,600,700',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'elementary-2step' => [
|
|
'name' => 'Elementary Video Sales Page', //required
|
|
'set' => 'Elementary',
|
|
'tags' => [ '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300,600,700',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '630px',
|
|
'max_height' => '360px',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'video-course-email-confirmation' => [
|
|
'name' => 'Video Course Email Confirmation', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:600',
|
|
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-email-confirmation2' => [
|
|
'name' => 'Video Course Email Confirmation 2', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:600',
|
|
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
'video-course-icon-goto',
|
|
'video-course-icon-open',
|
|
'video-course-icon-click',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-lead-generation' => [
|
|
'name' => 'Video Course Lead Generation', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
'video-course-icon-play',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '515px',
|
|
'max_height' => '690px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-lead-generation2' => [
|
|
'name' => 'Video Course Lead Generation 2', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '515px',
|
|
'max_height' => '690px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-lead-generation3' => [
|
|
'name' => 'Video Course Lead Generation 3', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-lead-generation4' => [
|
|
'name' => 'Video Course Lead Generation 4', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '515px',
|
|
'max_height' => '690px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-video-lesson' => [
|
|
'name' => 'Video Course Video Lesson', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'video', 'course content' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-play',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-video-lesson2' => [
|
|
'name' => 'Video Course Video Lesson 2', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'video', 'course content' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-play',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-video-lesson-page' => [
|
|
'name' => 'Video Course Video Lessons Page', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'video', 'course content' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Shadows+Into+Light',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video-course-video-lesson-page2' => [
|
|
'name' => 'Video Course Video Lessons Page 2', //required
|
|
'set' => 'Video Course',
|
|
'tags' => [ 'video', 'course content' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'video-course-icon-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'edition-author-lead-generation' => [
|
|
'name' => 'Edition Author Lead Generation', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'lead generation', '2-step', 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'edition-icon-gear',
|
|
'edition-icon-globe',
|
|
'edition-icon-monitor',
|
|
'edition-icon-lock',
|
|
],
|
|
'style_family' => 'Classy',
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '490px',
|
|
],
|
|
],
|
|
'edition-book-landing-page' => [
|
|
'name' => 'Edition Book Landing Page', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'icons' => [
|
|
'edition-icon-download',
|
|
'edition-icon-arrow',
|
|
'edition-icon-atom',
|
|
'edition-icon-comments',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'edition-lead-generation-page' => [
|
|
'name' => 'Edition Lead Generation Page', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'style_family' => 'Classy',
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '970px',
|
|
'max_height' => '490px',
|
|
],
|
|
],
|
|
'edition-email-confirmation' => [
|
|
'name' => 'Edition Email Confirmation', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'edition-email-confirmation2' => [
|
|
'name' => 'Edition Email Confirmation 2', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'edition-download-page' => [
|
|
'name' => 'Edition Download Page', //required
|
|
'set' => 'Edition',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,600',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,600,700,400,300',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'corp-app-landing-page' => [
|
|
'name' => 'Corp App Landing Page', //required
|
|
'set' => 'Corp',
|
|
'tags' => [ '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:300,400,700,600,500,800,200',
|
|
],
|
|
'icons' => [
|
|
'corp-icon-clock',
|
|
'corp-icon-leaf',
|
|
'corp-icon-hat',
|
|
'corp-icon-ribbon',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '720px',
|
|
'max_height' => '520px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'corp-lead-generation' => [
|
|
'name' => 'Corp 1 Step Lead Generation Page', //required
|
|
'set' => 'Corp',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:300,400,700,600,500,800,200',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'corp-download' => [
|
|
'name' => 'Corp Download Page', //required
|
|
'set' => 'Corp',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:300,400,700,600,500,800,200',
|
|
],
|
|
'icons' => [
|
|
'corp-icon-download',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'corp-email-confirmation' => [
|
|
'name' => 'Corp Email Confirmation', //required
|
|
'set' => 'Corp',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:300,400,700,600,500,800,200',
|
|
],
|
|
'icons' => [
|
|
'corp-icon-check',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'corp-webinar-signup' => [
|
|
'name' => 'Corp Webinar Registration Page', //required
|
|
'set' => 'Corp',
|
|
'tags' => [ 'webinar' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:300,400,700,600,500,800,200',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '720px',
|
|
'max_height' => '520px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'lime-lead-generation-page' => [
|
|
'name' => 'Lime Lead Generation Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '520px',
|
|
'max_height' => '650px',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-lead-generation-page2' => [
|
|
'name' => 'Lime Lead Generation Page2', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-coming-soon' => [
|
|
'name' => 'Lime Coming Soon Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'coming soon' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-confirmation-page' => [
|
|
'name' => 'Lime Confirmation Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-download-page' => [
|
|
'name' => 'Lime Download Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-video-lesson' => [
|
|
'name' => 'Lime Video Lesson Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'video', 'course content' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
'icons' => [
|
|
'lime-icon-lock',
|
|
],
|
|
],
|
|
'lime-sales-page' => [
|
|
'name' => 'Lime Sales Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'lime-video-sales-page' => [
|
|
'name' => 'Lime Video Sales Page', //required
|
|
'set' => 'Lime',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'fame-2step' => [
|
|
'name' => 'Fame 2-Step Lead Gen', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,100,500,700,100italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '530px',
|
|
'max_height' => '420px',
|
|
],
|
|
],
|
|
'fame-coming-soon' => [
|
|
'name' => 'Fame Coming Soon', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ 'coming soon', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,100,500,700,100italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'fame-confirmation' => [
|
|
'name' => 'Fame Confirmation', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,100,500,700,100italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'fame-download' => [
|
|
'name' => 'Fame Download', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,100,500,700,100italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'fame-minimal-lead-gen' => [
|
|
'name' => 'Fame Minimal Lead Generation', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:400,100,500,700,100italic',
|
|
],
|
|
'icons' => [
|
|
'fame-icon-facebook',
|
|
'fame-icon-x',
|
|
'fame-icon-google',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'fame-video-sales' => [
|
|
'name' => 'Fame Video Sales Page', //required
|
|
'set' => 'Fame',
|
|
'tags' => [ 'video', 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Minimal',
|
|
],
|
|
'vibrant_double_whammy' => [
|
|
'name' => 'Vibrant Double Whammy Webinar',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'webinar', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'icons' => [
|
|
'vibrant_whammy_icon_clock',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '850px',
|
|
'max_height' => '440px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_download_page' => [
|
|
'name' => 'Vibrant Download Page',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'icons' => [
|
|
'vibrant_download_icon',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_email_confirmation' => [
|
|
'name' => 'Vibrant Email Confirmation',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'icons' => [
|
|
'vibrant_email_arrow',
|
|
'vibrant_email_download',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_lead_generation' => [
|
|
'name' => 'Vibrant Lead Generation',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '850px',
|
|
'max_height' => '440px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_live_streaming_page' => [
|
|
'name' => 'Vibrant Live Streaming Page',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'webinar', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_sales_page' => [
|
|
'name' => 'Vibrant Sales Page',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'icons' => [
|
|
'vibrant-sales-download',
|
|
'vibrant-sales-gear',
|
|
'vibrant-sales-chart',
|
|
'vibrant-sales-lock',
|
|
'vibrant-sales-plug',
|
|
'vibrant-sales-modem',
|
|
'vibrant-sales-heart',
|
|
'vibrant-sales-briefcase',
|
|
'vibrant-sales-people',
|
|
'vibrant-sales-arrow',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_video_sales_page' => [
|
|
'name' => 'Vibrant Video Sales Page',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_webinar_registration' => [
|
|
'name' => 'Vibrant Webinar Registration',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'webinar', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'icons' => [
|
|
'vibrant_whammy_icon_clock',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '580px',
|
|
'max_height' => '440px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vibrant_webinar_replay' => [
|
|
'name' => 'Vibrant Webinar Replay',
|
|
'set' => 'Vibrant',
|
|
'tags' => [ 'webinar', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_lead_generation' => [
|
|
'name' => 'Foundation Lead Generation',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,400,700',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_personal_branding_confirmation' => [
|
|
'name' => 'Personal Branding Confirmation',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'confirmation page', 'video', 'personal branding' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,300,500,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_personal_branding_download' => [
|
|
'name' => 'Personal Branding Download',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'download', 'personal branding' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,300,500,600',
|
|
],
|
|
'icons' => [
|
|
'foundation-download-icon-download',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_personal_branding_lead' => [
|
|
'name' => 'Personal Branding Lead Generation',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'lead generation', '1-step', 'personal branding' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,300,500,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_personal_branding_welcome' => [
|
|
'name' => 'Personal Branding Welcome',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'personal branding' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,300,500,600',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'foundation_personal_branding_2step' => [
|
|
'name' => 'Personal Branding 2-Step',
|
|
'set' => 'Personal Branding',
|
|
'tags' => [ 'lead generation', '2-step', 'personal branding' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Ek+Mukta:200,300,500,600',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '720px',
|
|
'max_height' => '610px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy_sales_page' => [
|
|
'name' => 'Copy Sales Page',
|
|
'set' => 'Copy',
|
|
'tags' => [ 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300,100',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'icons' => [
|
|
'copy-salespage-file',
|
|
'copy-salespage-map',
|
|
'copy-salespage-chart',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy_download' => [
|
|
'name' => 'Copy Download Page',
|
|
'set' => 'Copy',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300,100',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'copy_video_lead' => [
|
|
'name' => 'Copy Video Lead',
|
|
'set' => 'Copy',
|
|
'tags' => [ 'video', 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300,100',
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '800px',
|
|
'max_height' => '610px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'minimal_video_offer_page' => [
|
|
'name' => 'Serene',
|
|
'set' => 'Serene',
|
|
'tags' => [ 'sales page', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'icons' => [
|
|
'minimal-video-offer-download',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '495px',
|
|
'max_height' => '540px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'serene_download_page' => [
|
|
'name' => 'Serene Download Page',
|
|
'set' => 'Serene',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700',
|
|
],
|
|
'icons' => [
|
|
'serene-downloadpage-download',
|
|
'serene-downloadpage-heart',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'serene_lead_generation_page' => [
|
|
'name' => 'Serene Lead Generation Page',
|
|
'set' => 'Serene',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700',
|
|
],
|
|
'icons' => [
|
|
'serene-leadgeneration-download',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'mini_squeeze' => [
|
|
'name' => 'Mini Squeeze',
|
|
'set' => 'Mini Squeeze',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'mini_squeeze_download' => [
|
|
'name' => 'Mini Squeeze Download',
|
|
'set' => 'Mini Squeeze',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'icons' => [
|
|
'mini-squeeze-download-icon',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'mini_squeeze_confirmation' => [
|
|
'name' => 'Mini Squeeze Confirmation',
|
|
'set' => 'Mini Squeeze',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_header, .tve_lp_content, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'lead_generation_image' => [
|
|
'name' => 'Rockstar', //required
|
|
'set' => 'Rockstar',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,900,300italic,900italic',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'rockstar_confirmation' => [
|
|
'name' => 'Rockstar Confirmation', //required
|
|
'set' => 'Rockstar',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,500,700,300italic',
|
|
],
|
|
'icons' => [
|
|
'rockstar-icon-email',
|
|
'rockstar-icon-file',
|
|
'rockstar-icon-mouse',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'rockstar_download' => [
|
|
'name' => 'Rockstar Download', //required
|
|
'set' => 'Rockstar',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300,900,300italic,900italic',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'lead_generation_flat' => [
|
|
'name' => 'Flat', //required
|
|
'set' => 'Flat',
|
|
'tags' => [ 'lead generation', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:400,700,900,400italic,700italic,900italic',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '800px',
|
|
'max_height' => '600px',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'flat_confirmation' => [
|
|
'name' => 'Flat Confirmation',
|
|
'set' => 'Flat',
|
|
'tags' => [ 'confirmation page' ],
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'flat-confirmation-icon
|
|
-envelop',
|
|
'flat-confirmation-icon-envelop-opened',
|
|
'flat-confirmation-icon-pointer',
|
|
'flat-confirmation-icon-checkmark-circle',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'flat_download' => [
|
|
'name' => 'Flat Download',
|
|
'set' => 'Flat',
|
|
'tags' => [ 'download' ],
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'flat-download-icon-download',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'lead_generation' => [
|
|
'name' => 'Simple', //required
|
|
'set' => 'Simple',
|
|
'tags' => [ '2-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '600px',
|
|
'max_height' => '600px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'simple_confirmation_page' => [
|
|
'name' => 'Simple Confirmation Page', //required
|
|
'set' => 'Simple',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:300',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'simple_download_page' => [
|
|
'name' => 'Simple Download Page', //required
|
|
'set' => 'Simple',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'simple_video_lead' => [
|
|
'name' => 'Simple Video Lead', //required
|
|
'set' => 'Simple',
|
|
'thumbnail' => 'simple-video-lead.png', //required
|
|
'tags' => [ 'lead generation', '1-step', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Raleway:300,400,500',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'video_lead' => [
|
|
'name' => 'Vision', //required
|
|
'set' => 'Vision',
|
|
'tags' => [ 'lead generation', 'video', '2-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'has_lightbox' => true,
|
|
'lightbox' => [
|
|
'max_width' => '800px',
|
|
'max_height' => '650px',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vision-1step' => [
|
|
'name' => 'Vision 1-Step Page', //required
|
|
'set' => 'Vision',
|
|
'tags' => [ 'lead generation', '1-step' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vision_download' => [
|
|
'name' => 'Vision Download Page', //required
|
|
'set' => 'Vision',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700,100',
|
|
],
|
|
'icons' => [
|
|
'tve_icon-download',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'vision_confirmation' => [
|
|
'name' => 'Vision Confirmation', //required
|
|
'set' => 'Vision',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Roboto:300italic,300,700italic,700,100',
|
|
],
|
|
'icons' => [
|
|
'vision-confirmation-mail',
|
|
'vision-confirmation-mailopen',
|
|
'vision-confirmation-link',
|
|
'vision-confirmation-download',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
'big_picture' => [
|
|
'name' => 'Big Picture', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'big_picture_confirmation' => [
|
|
'name' => 'Big Confirmation Page', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ 'confirmation page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'big-picture-mail-go',
|
|
'big-picture-mail-open',
|
|
'big-picture-mail-click',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'big_picture_download' => [
|
|
'name' => 'Big Picture Download Page', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ 'download' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'big_picture_video' => [
|
|
'name' => 'Big Picture Video Page', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ '1-step', 'lead generation', 'video' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'icons' => [
|
|
'big-picture-icon-download',
|
|
'big-picture-icon-video',
|
|
'big-picture-icon-customization',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'big_picture_coming_soon' => [
|
|
'name' => 'Big Picture Coming Soon', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ 'coming soon', '1-step', 'lead generation' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
'//fonts.googleapis.com/css?family=Open+Sans:700',
|
|
],
|
|
'style_family' => 'Classy',
|
|
],
|
|
'big_picture_sales_page' => [
|
|
'name' => 'Big Picture Sales Page', //required
|
|
'set' => 'Big Picture',
|
|
'tags' => [ 'sales page' ],
|
|
'extended_dropzone_elements' => '.tve_lp_content, .tve_lp_header, .tve_lp_footer',
|
|
'fonts' => [
|
|
'//fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic',
|
|
],
|
|
'style_family' => 'Flat',
|
|
],
|
|
);
|