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
| # AddHandler php-legacy .php | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d |
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
| /** | |
| * The first commented line is your dabblet’s background: #f06;#borders { | |
| } | |
| #borders | |
| { | |
| position: relative; | |
| border: 5px solid #f00; | |
| } |
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
| <b>Warning</b>: PHP Startup: Unable to load dynamic library '/Applications/MAMP/bin/php/php5.3.6/lib/php/extensions/no-debug-non-zts-20090626/memcached.so' - dlopen(/Applications/MAMP/bin/php/php5.3.6/lib/php/extensions/no-debug-non-zts-20090626/memcached.so, 9): Library not loaded: /usr/local/lib/libmemcached.10.dylib | |
| Referenced from: /Applications/MAMP/bin/php/php5.3.6/lib/php/extensions/no-debug-non-zts-20090626/memcached.so | |
| Reason: image not found in <b>Unknown</b> on line <b>0</b><br /> | |
| <br /> |
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
| /* Icons getting cut off*/ | |
| span.event-type | |
| { | |
| color: #6c6c6c; | |
| } | |
| .event_heading{ | |
| color: #ffffff; | |
| background-color: #464646; | |
| margin: 15px -26px 0 -24px; |
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
| $class = ''; | |
| if (($i + 1) % 3 == 0) | |
| { | |
| $class .= 'nth-child-3n'; | |
| } | |
| elseif (($i + 1) > 6) | |
| { | |
| $class .= ' nth-child-nplus7'; | |
| } |
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
| # Use PHP5 Single php.ini as default | |
| AddHandler application/x-httpd-php5s .php | |
| RewriteEngine On | |
| #For martinsjastad.com and frontsideinteractive.com | |
| # automatically redirect user from www.martinsjastad.com to martinsjastad.com | |
| # automatically redirect user from www.frontsideinteractive.com to frontsideinteractive.com | |
| RewriteCond %{HTTP_HOST} =www.martinsjastad.com [NC] | |
| RewriteRule (.*) http://martinsjastad.com/$1 [R=301,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
| <?php | |
| /** | |
| * The main template file. | |
| * | |
| * This is the most generic template file in a WordPress theme | |
| * and one of the two required files for a theme (the other being style.css). | |
| * It is used to display a page when nothing more specific matches a query. | |
| * E.g., it puts together the home page when no home.php file exists. | |
| * Learn more: http://codex.wordpress.org/Template_Hierarchy | |
| * |
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
| <article class="vcard"> | |
| <a href="mailto:[email protected]" class="email">[email protected]</a> | |
| På telefon etter klokken 16:00 på hverdager: | |
| <div class="vcard"> | |
| <span class="fn">Dag</span>:<span class="tel">+47 92 89 89 81</span> | |
| </div> | |
| <div class="vcard"> | |
| <span class="fn">Jan</span>:<span class="tel">+47 91 85 85 95</span> | |
| </div> | |
| </article> |
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 $COLORTERM gnome-* and $TERM = xterm and infocmp gnome-256color >/dev/null 2>&1 | |
| set -x TERM=gnome-256color | |
| else if infocmp xterm-256color >/dev/null 2>&1 | |
| set -x TERM=xterm-256color | |
| end | |
| if [[tput setaf 1]] &> /dev/null | |
| tput sgr0 | |
| if [[ tput colors -ge 256 ]] 2>/dev/null | |
| set -x MAGENTA (tput setaf 9) |
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
| var $element_store; | |
| $camp_photos.on('click', '.top_level_image_link', function() { | |
| var $this = $(this); | |
| var $photo_albums = $('#photo_albums'); | |
| $element_store = $photo_albums; | |
| var $photo_album_to_load = $('#photo_album-' + $this.data('album-id')); | |
| // replace_content_and_make_slides(new_html, container); | |
| $camp_photos.animate({opacity: 0}, 'fast', function() { |