I hereby claim:
- I am andreasisaak on github.
- I am andreasisaak (https://keybase.io/andreasisaak) on keybase.
- I have a public key whose fingerprint is 2A85 BA6A 9EA0 6AF7 A9E8 5A18 28C6 CD10 46A0 5FD2
To claim this, I am signing this object:
| @if compass-env() == 'development' { | |
| body { | |
| border:1px solid red; | |
| } | |
| } |
| <?php $this->extend('fe_page'); ?> | |
| <?php $this->block('footer'); $this->endblock(); ?> | |
| <?php $this->block('body'); ?> | |
| <?php $this->parent(); ?> | |
| <?php if ($this->footer): ?> | |
| <footer id="footer"> | |
| <div class="inside"> | |
| <?php echo $this->footer; ?> | |
| </div> |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Powered by parallax - The ultimative parallax script for Contao | |
| * | |
| * Copyright ©2012-2013 by MEN AT WORK <info@men-at-work.de> | |
| * Visit the agency website at http://www.men-at-work.de for more information | |
| * | |
| * @package ParallaxXtend | |
| * @copyright MEN AT WORK | |
| * @link http://www.contao-parallax.com | |
| * @license EULA |
| <?php | |
| echo '<p class="teaser">' . String::getInstance()->substr($this->text, 80) . '</p>'; | |
| ?> |
| <?php $objInput = Input::getInstance(); ?> | |
| <?php $objCookie = json_decode($objInput->cookie("retina")); ?> | |
| <?php echo ($objCookie->hasRetina) ? $this->getImage('src', 'retina_width', 'retina_height') : $this->getImage('src', 'width', 'height'); ?> |
| .logo { | |
| width: 204px; | |
| height: 100px; | |
| background: url('/img/logo.png'); | |
| } | |
| @media | |
| (-o-min-device-pixel-ratio: 5/4), | |
| (-webkit-min-device-pixel-ratio: 1.25), | |
| (min-resolution: 120dpi) { |
| <?php | |
| #Vorbereiten | |
| $longtext = MetaModelFactory::byTableName('mm_projects')->findById($arrItem['raw']['project']['id'])->get('introduction'); | |
| # Longtext an string übergeben | |
| echo String::getInstance()->substr($longtext['value'], 120); | |
| ?> |
| ## Uncomment to rewrite domain.com to www.domain.com | |
| #RewriteCond %{HTTP_HOST} !^www\. [NC] | |
| #RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
| ## Uncomment to rewrite www.domain.com to domain.com | |
| #RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] | |
| #RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L] |
| // prevent click | |
| $('nav').addEvent('click', function(event){ | |
| event.stop(); | |
| }); |