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
@function global-columns($desired_cols, $container_cols, $hybrid-grid: false){ | |
@if ($hybrid-grid == true) { | |
@return (100% * (columns($desired_cols, true) / columns($container_cols, true))); | |
} | |
@else { | |
@return (100% * (columns($desired_cols) / columns($container_cols))); | |
} | |
} |
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
(0.000014 / 14.13MB) - Begin Template Processing - | |
(0.000165 / 14.14MB) URI: qr-codes/gallery/custom-qr-prints | |
(0.000183 / 14.14MB) Path.php Template: data/detail | |
(0.000199 / 14.14MB) Retrieving Template | |
(0.000219 / 14.14MB) Retrieving Template from Database: data/detail | |
(0.001334 / 14.14MB) Template Found | |
(0.001446 / 14.15MB) Retrieving Template from File | |
(0.005255 / 14.46MB) Calling Extension Class/Method: Low_variables_ext/template_fetch_template | |
(0.008529 / 14.53MB) Calling Extension Class/Method: Ce_cache_ext/template_pre_parse | |
(0.010052 / 14.62MB) Calling Extension Class/Method: Stash_ext/template_fetch_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
(0.000010 / 14.13MB) - Begin Template Processing - | |
(0.000145 / 14.14MB) URI: qr-codes/gallery/custom-qr-prints | |
(0.000160 / 14.14MB) Path.php Template: data/detail | |
(0.000174 / 14.14MB) Retrieving Template | |
(0.000190 / 14.14MB) Retrieving Template from Database: data/detail | |
(0.001371 / 14.14MB) Template Found | |
(0.001457 / 14.15MB) Retrieving Template from File | |
(0.004854 / 14.46MB) Calling Extension Class/Method: Low_variables_ext/template_fetch_template | |
(0.008221 / 14.53MB) Calling Extension Class/Method: Ce_cache_ext/template_pre_parse | |
(0.009650 / 14.62MB) Calling Extension Class/Method: Stash_ext/template_fetch_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
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
{exp:seo_lite use_last_segment="yes"} | |
<link rel="canonical" href="http://www.pb.com/smb{structure:page:uri}" /> | |
{sn_head} | |
{gv_easybox_overrides} | |
<style type="text/css"> | |
{exp:stash:get name="{segment_1}-color-styles" scope="site"} | |
</style> |
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 {exp:stash:not_empty name="{segment_1}-color-styles" scope="site"}==0} | |
{exp:channel:entries | |
channel="overview" | |
disable="categories|member_data|pagination|trackbacks" | |
status="not Closed" | |
dynamic="no" | |
url_title="{segment_1}" | |
limit="1" | |
} | |
{exp:stash:set |
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
php_value memory_limit 256M | |
php_value error_reporting 8191 | |
php_value upload_max_filesize 20M | |
php_value post_max_size 20M | |
php_value max_execution_time 200 | |
php_value max_input_time 200 | |
php_value suhosin.memory_limit 256M | |
php_value suhosin.post.max_vars 6000 | |
php_value suhosin.request.max_vars 6000 | |
php_value max_input_vars 2000 |
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
# Remove Trailing Slash | |
# ------------------------------ | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_URI} (.*)$ | |
RewriteRule ^(.+)/$ http://www.yourdomain.com/$1 [R=301,NC,L] |
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
<channel> | |
<title><![CDATA[{{ folder }}]]></title> | |
<link>{{ _site_url }}/{{ folder }}</link> | |
<description>{{ _site_name }} {{ folder }}</description> | |
<dc:language>en-us</dc:language> | |
<dc:creator>{{ contact_email }}</dc:creator> | |
<dc:rights>Copyright {{ current_date format='Y' }}</dc:rights> | |
<dc:date>{{ current_date format="Y-m-d\TH:i:s\Z" }}</dc:date> | |
<admin:generatorAgent rdf:resource="http://statamic.com/" /> |
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
/** ------------------------------------- | |
/** Create a Breadcrumb Trail | |
/** -------------------------------------*/ | |
function breadcrumb() | |
{ | |
$site_pages = $this->sql->get_site_pages(); | |
if ( ! $site_pages) | |
return FALSE; |