This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="nd-legend">{{legend | replace: ",", "</li><li>" | prepend: "<li>" | append: "</li>"}}</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if {{this.['Book or Enquire']}} == "Book" %} | |
| <a href="#book-now" alt="Book Now" title="Book Now" class="btn btn-primary btn-block">Book</a> | |
| {% else %} | |
| <a href="#enquire" alt="Enquire" title="Enquire" class="btn btn-primary btn-block">Enquire</a> | |
| {% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {module_webapps id="webappnameorid" filter="classified" itemid="Parent Category Name/Sub Category Name" collection="collection1" template=""} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if {{globals.visitor.deviceClass}} == 'desktop' -%}desktop{% endif -%}{% if {{globals.visitor.deviceClass}} == 'phone' -%}mobile{% endif -%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% assign date1 = {{this.['Calendar - Start Year']}} | append: "-" %} | |
| {% assign date2 = {this.['Calendar - Start Month']}} | append: "-" %} | |
| {% assign date3 = {{this.['Calendar - Start Day']}} %} | |
| {% assign fullDate = date1 | append: date2 | append: date3 %} | |
| {{fullDate}} - full date<br/> | |
| {{globals.site.dateNow | date: "yyyy-MM-dd"}} - date now | |
| {% if globals.site.dateNow < fullDate %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{'Sample text ' | truncate: 100, "..."}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="section calendar"> | |
| <span id="book-course" class="anchored"></span> | |
| <h2>Calendar</h2> | |
| <div class="schedule-wrap"> | |
| <div class="header"> | |
| <div class="column column-location">Location</div> | |
| <div class="column column-dates">Dates</div> | |
| <div class="column column-book"></div> | |
| </div> | |
| <div class="course-schedule-wrap"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .styled-select select { | |
| background: transparent; | |
| width: 200px; | |
| padding: 0; | |
| height: 55px; | |
| font-size: 16px; | |
| line-height: 1; | |
| border: 0; | |
| border-radius: 0; | |
| height: 55px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('ul li').each(function() { | |
| if ($(this).text().length < 3) | |
| $(this).closest('.description').remove(); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <label for="EmailAddress2">Confirm Email Address <span class="req">*</span></label> | |
| <input id="EmailAddress2" class="cat_textbox" name="EmailAddress2" maxlength="255"/> |