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
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule . index.php [L] | |
## Begin - Check site protocol HTTP or HTTPS | |
# initialization code - put only once at the beginning of .htaccess | |
# then use %{ENV:proto} in your rules | |
RewriteCond %{HTTP:CF-Visitor} '"scheme":"http"' [OR] |
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
# 300 5 MIN | |
# 600 10 MIN | |
# 900 15 MIN | |
# 1800 30 MIN | |
# 2700 45 MIN | |
# 3600 1 HR | |
# 7200 2 HR | |
# 10800 3 HR | |
# 14400 4 HR | |
# 18000 5 HR |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
/* | |
You can rename this file to .JSON and add .htaccess with this content: | |
<Files *.json> | |
ForceType application/x-httpd-php | |
</Files> | |
*/ | |
// CSV File |
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
<fieldset name="ADMIN_TEST"> | |
<field name="access" type="accesslevel" label="JFIELD_ACCESS_LABEL" description="JFIELD_ACCESS_DESC" class="span12 small" /> | |
<field name="cache_handler" type="cachehandler" default="" label="Cache Handler Field type" description="COM_CONFIG_FIELD_CACHE_HANDLER_DESC" filter="word" /> | |
<field name="mycalendar" type="calendar" default="5-10-2008" label="Select a date" description="" format="%d-%m-%Y" /> | |
<field name="captcha" type="plugins" folder="captcha" label="Captcha Selection field" description="COM_CONTACT_FIELD_CAPTCHA_DESC" default="" filter="cmd"> | |
<option value="">JOPTION_USE_DEFAULT</option> | |
<option value="0">JOPTION_DO_NOT_USE</option> | |
</field> | |
<field name="mycategory" type="category" extension="com_content" label="Select a category" description="" /> | |
<field name="show_title" type="checkbox" label="Show title" description="Show the title of the item" value="1" /> |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$resolutions: ( | |
mobile: ( | |
name: "mobile", | |
shortName: "m", | |
baseFontSize: 13px, | |
breakpointStart: 320px, |
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
// ---- | |
// libsass (v3.5.4) | |
// ---- | |
// MEDIA mixin example | |
// --------------------------------------------------------- | |
// Variables | |
$baseline-ratio: 1.618 !global; |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// _____ _ _ _ | |
// | | |___ ___|_|___| |_| |___ ___ | |
// | | | .'| _| | .'| . | | -_|_ -| | |
// \___/|__,|_| |_|__,|___|_|___|___| | |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// _____ _ _ | |
// | |___ ___ ___| |_ ___ ___| |_ ___ | |
// | --| . | |_ -| _| .'| | _|_ -| | |
// |_____|___|_|_|___|_| |__,|_|_|_| |___| | |
$phi: 1.61803398874; // ~Phi ratio for Fibonacci sequence |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$sizePx: 18px; | |
$basePx: 16px; | |
$unit--rem: true; | |
// CHECK BOOLEAN VALUE | |
@function bool($value: false) { |