Templating Language
Creating Custom Event Headers with the Wavecast Templating Language
Creating a Custom HTML Header
<style>
.custom-event-header {
padding: 30px 0;
}
.custom-event-header .container {
position: relative;
}
.custom-event-header .container:before {
content: " ";
position: absolute;
left: -30px;
top: 0;
bottom: 0;
width: 4px;
background-color: #E60000;
}
</style>
<div class="custom-event-header">
<div class="container">
<h1>Event Title</h1>
<h3>Event Sub-Title</h3>
<div><p>This is the event summary</p></div>
<time>Apr 21st, 1pm BST</time>
<div><a href="">Add Event to Calendar</a></div>
<a href="#">Register</a>
<!-- If user subscribed for event display this copy -->
<div>
You are subscribed to this event
</div>
</div>
</div>Template tags available
Variables
Templating Tag
Description
Conditionals
Last updated
Was this helpful?