Skip to content

Instantly share code, notes, and snippets.

@hijonathan
hijonathan / gist:668289
Created November 8, 2010 21:17
Performable Variable Example
<html>
<head>
<meta name="text:Headline" content="This is the default headline"/>
</head>
<body>
<h1>{{ text:Headline }}</h1>
</body>
</html>
@hijonathan
hijonathan / gist:668293
Created November 8, 2010 21:19
Performable Block Example
<html>
<head>
<meta name="boolean:Show Testimonials" content="1"/>
<meta name="html:First Testimonial" content="Juice is refreshing! - Craig"/>
<meta name="html:Second Testimonial" content="Juice is delicious! - Josh"/>
<meta name="html:Third Testimonial" content="Juice is healthy! - David"/>
</head>
<body>
{% if boolean:"Show Testimonials" %}
<div id="testimonials">
@hijonathan
hijonathan / gist:668333
Created November 8, 2010 21:51
Custom CSS Variable
<html>
<body>
Your HTML
{{CustomCSS}}
</body>
</html>
@hijonathan
hijonathan / gist:726160
Created December 2, 2010 22:01
Performable Starter Template
<html>
<head>
<!--SEO Settings from Advanced Options on Landing Page Editor-->
<title>{{ Title }}</title>
<meta name="description" content="{{ MetaDescription }}" />
<meta name="keywords" content="{{ MetaKeywords }}" />
<link rel="shortcut icon" type="image/ico" href="{{ Favicon }}" />
<link rel="canonical" href="{{CanonicalURL}}" />
<!--End SEO Settings-->
{{ type:label }}
<!-- the meta tags -->
<meta name="text:Button URL" content="http://www.performable.com/" />
<meta name="text:Button Text" content="Submit this Button" />
<meta name="color:Button Color" content="#393" />
<meta name="dropdown:Button Size" content="small,medium,large" />
<!-- the button code -->
<a href="{{text:Button URL}}" style="background-color:{{color:Button Color}}" class="{{dropdown:Button Size}} awesome performable-conversion">{{text:Button Text}}</a>
@hijonathan
hijonathan / gist:731874
Created December 7, 2010 15:05
Python Test
<html>
<head>
<!--SEO Settings from Advanced Options on Landing Page Editor-->
<title>{{ Title }}</title>
<meta name="description" content="{{ MetaDescription }}" />
<meta name="keywords" content="{{ MetaKeywords }}" />
<link rel="shortcut icon" type="image/ico" href="{{ Favicon }}" />
<link rel="canonical" href="{{CanonicalURL}}" />
<!--End SEO Settings-->
@hijonathan
hijonathan / gist:732334
Created December 7, 2010 20:17
Editable Field Variable Types (Continued)
<!-- The meta tag: -->
<meta name="boolean:Your Label" content="1" />
<!-- The variable -->
{% if boolean:Your Label %}
You checked the box!
{% else %}
You unchecked the box!
{% endif %}
@hijonathan
hijonathan / gist:732342
Created December 7, 2010 20:19
Editable Field Variable Types
<!-- The meta tag: -->
<meta name="text:Your Label" content="Your default content" />
<!-- The variable -->
{{ text:Your Label }}
@hijonathan
hijonathan / gist:732390
Created December 7, 2010 20:53
PML Examples
<!-- The meta tags: -->
<meta name="boolean:Show Message" content="1" />
<meta name="text:Custom Message" content="Hi there!" />
<!-- How to implement it: -->
{% if boolean:Show Message %}
{{ text:Custom Message }}
{% endif %}