Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| /*~~~~ CONTAINERS December 2013 - http://www.w3counter.com/globalstats.php ~~~~*/ | |
| /* 1600x900 4.09% */ | |
| .container{ | |
| margin: 0 auto; | |
| padding:0; | |
| height:auto; | |
| width:1410px; /* 3 Columns would be 470px */ | |
| } | |
| /* 1440x900 5.26% */ | |
| @media (max-width: 1440px){ .container{width: 1230px; /* 3 Columns would be 410px */ } } |
| /*~~~~ CONTAINERS November 2012 - http://www.w3counter.com/globalstats.php ~~~~*/ | |
| /* 1600x900 3.70% */ | |
| .container{ | |
| margin: 0 auto; | |
| padding:0; | |
| height:auto; | |
| width:1410px; /* 3 Columns would be 470px */ | |
| } | |
| /* 1440x900 5.97% */ | |
| @media (max-width: 1440px){ .container{width: 1230px; /* 3 Columns would be 410px */ } } |
| Snippet: [[SnippetName]] | |
| Chunk: [[$ChunkName]] | |
| System Setting: [[++SettingName]] | |
| TV: [[*fieldName/TvName]] | |
| Link tag: [[~PageId? ¶mName=`value`]] | |
| Placeholder: [[+PlaceholderName]] | |
| <?php |
| <?php | |
| /** | |
| * Convert a comma separated file into an associated array. | |
| * The first row should contain the array keys. | |
| * | |
| * Example: | |
| * | |
| * @param string $filename Path to the CSV file | |
| * @param string $delimiter The separator used in the file | |
| * @return array |