Rich Media Templates syntax
This guide refers to developing custom Rich Media pages
Starting from iOS 9, the operating system enables App Transport Security by default and requires all the network connection to support HTTPS and Perfect Secrecy. To use images, videos or other content for Rich Media that comes from non-secure HTTP servers you have to disable ATS in your app.
Template is simply a .zip archive that can contain HTML, JavaScript, CSS and images as Rich Media assets. The archive must contain index.html file in its root.
Please make sure that your index.html is UTF-8 encoded.
You can use placeholders in the Rich Media templates that will allow you to change and localize the values in Rich Media content.
A placeholder must follow the format below:
{{ Placeholder name | Type | Default value }}
Where:
- Placeholder name — is the name of the placeholder that will be visible in the Rich Media editor.
- Type — is the type of the placeholder. The type can be any of the following values:
- color — color input
- text — text input
- html — text area (multiline text)
- Default value — default value that is used if no value is provided in the editor. If none is set then Placeholder name is used as a default value.
Example:
{{Header text|text|Tell Us What You Think}}
You can group placeholders so they would be linked together in the Rich Media editor:

To achieve that, add pushwoosh.json file to the archive with your Rich Media template next to the index.html file.
The structure of the file is very simple and should be self explanatory:
{
"input_groups": [
["Logo image URL", "Logo background color"],
["Topic text", "Topic text color", "Topic background color", "Sub-topic text"],
["Main text", "Text background color"],
["Button text", "Button URL", "Button text color", "Button background color"]
]
}
Here's the example for one of the default templates in the Control Panel. Happy coding!
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style type="text/css">
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
font-family: "Open Sans";
}
.main {
height: 100%;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.logo {
width: 100%;
height: 15%;
background-image: url('{{Logo image URL|text|https://www.pushwoosh.com/wp-content/themes/pushwoosh/img/logo.png}}');
background-position: 50% 50%;
background-size: 50%;
background-repeat: no-repeat;
background-color: #{{Logo background color|color|343434}};
}
.topic-wrapper {
width: 100%;
height: 30%;
text-align: center;
display: table;
color: #{{Topic text color|color|FFFFFF}};
background-color: #{{Topic background color|color|23B7A4}};
}
.topic {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.topic-wrapper h1, .topic-wrapper p {
margin: 0;
}
.padding-wrapper {
width: 100%;
height: 55%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
padding: 0 2% 0 2%;
background-color: #{{Text background color|color|FFFFFF}};
}
.text-wrapper {
height: 70%;
width: 100%;
padding: 2% 0 2% 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
overflow: hidden;
}
.text {
width: 100%;
height: 99%;
overflow: auto;
padding-right: 15px;
}
.button-wrapper {
height: 30%;
width: 100%;
padding: 2% 0 2% 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.button {
display: table;
width: 100%;
height: 100%;
}
.button a {
display: table-cell;
vertical-align: middle;
text-align: center;
font-size: 2em;
text-decoration: none;
color:#{{Button text color|color|FFFFFF}} ;
border-radius: 20px;
background-color: #{{Button background color|color|23B7A4}};
}
@media only screen
and (orientation: landscape) {
.padding-wrapper {
height: 45%;
}
.logo {
height: 20%;
}
.button a {
border-radius: 10px;
}
}
</style>
</head>
<body>
<div class="main">
<div class="logo"></div>
<div class="topic-wrapper">
<div class="topic">
<h1>{{Topic text|text|TOPIC TEXT}}</h1>
<p>{{Sub-topic text|text|Subtopic here}}</p>
</div>
</div>
<div class="padding-wrapper">
<div class="text-wrapper">
<div class="text">
{{Main text|html|Main text here}}
</div>
</div>
<div class="button-wrapper">
<div class="button">
<a href="{{Button URL|text|https://www.pushwoosh.com}}">
{{Button text|text|Submit}}
</a>
</div>
</div>
</div>
</div>
</body>
</html>
Last modified 4yr ago