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="composer-form-container"> | |
{composer:page} | |
{composer:rows} | |
{if freeform:general_errors} | |
<div class="row"> | |
<div class="twelve columns"> | |
<h5>There were some error(s) with your submission:</h5> | |
<ul> | |
{freeform:general_errors} |
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 embed:column_count == 1} | |
twelve columns | |
{/if} | |
{if embed:column_count == 2} | |
six columns | |
{/if} | |
{if embed:column_count == 3} | |
four columns |
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="composer-form-container"> | |
{composer:page} | |
{composer:rows} | |
{if freeform:general_errors} | |
<div class="row"> | |
<div class="twelve columns"> | |
<h5>There were some error(s) with your submission:</h5> | |
<ul> | |
{freeform:general_errors} |
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
HTML::macro('set_active', function($num=1, $page, $fallback=FALSE) { | |
$segment = URI::segment($num); | |
if ($segment == $page OR $fallback AND $segment == '') | |
{ | |
return ' class="active"'; | |
} | |
else | |
{ |