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
| $(document).ready(function(){ | |
| var urlParams; | |
| (window.onpopstate = function () { | |
| var match, | |
| pl = /\+/g, // Regex for replacing addition symbol with a space | |
| search = /([^&=]+)=?([^&]*)/g, | |
| decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); }, | |
| query = window.location.search.substring(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
| TS Config (root edit and code insert) | |
| TCEFORM.tt_content.header_layout { | |
| addItems { | |
| 10 = Gray Header | |
| 11 = Orange Header | |
| 12 = Red Header | |
| } | |
| } |
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
| .htaccess | |
| RewriteEngine On | |
| RewriteRule ^typo3$ - [L] | |
| RewriteRule ^typo3/.*$ - [L] | |
| RewriteRule ^uploads/.*$ - [L] | |
| RewriteRule ^fileadmin/.*$ - [L] | |
| RewriteRule ^typo3conf/.*$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-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
| http://www.mysite.com/index.php?option=com_content&view=article&id=[article id] |
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
| element:focus {outline:0;} |
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
| Go to the line "Options +FollowSymLinks" and add a "#" to comment it out as below. | |
| #Options +FollowSymLinks (in htaccess) |
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
| setTimeout(function(){ | |
| var sameHeightTop = $(".subBoxes"); | |
| if (sameHeightTop.length !== 0) { | |
| sameHeightTop.each(function () { | |
| var tallest = 0; | |
| var sameHeightChildren = $(this).find(".subBox"); | |
| sameHeightChildren.each(function () { | |
| var thisHeight = $(this).height(); | |
| if (thisHeight > tallest) { | |
| tallest = thisHeight; |
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 | |
| //Protect against arbitrary paged values | |
| $paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; | |
| $args = array( | |
| 'posts_per_page' => 10, | |
| 'category_name' => 'novice', | |
| 'paged' => $paged, | |
| ); | |
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
| sass -? |
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
| gem -v | |
| ruby -v |