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/
| // === Arrays | |
| var [a, b] = [1, 2]; | |
| console.log(a, b); | |
| //=> 1 2 | |
| // Use from functions, only select from pattern | |
| var foo = () => [1, 2, 3]; |
| Template.example.events({ | |
| 'change input': function(ev) { | |
| _.each(ev.srcElement.files, function(file) { | |
| Meteor.saveFile(file, file.name); | |
| }); | |
| } | |
| }); |
| getS3Bucket = function() { | |
| var host = document.location.host; | |
| if (host === 'localhost:3000') { | |
| return 'myapp-dev'; | |
| } else if (host === 'myapp.meteor.com') { | |
| return 'myapp-staging'; | |
| } else if (host === 'myapp.com') { | |
| return 'myapp-production'; | |
| } | |
| } |
| #exampleDropPane { | |
| text-align: center; | |
| padding: 20px; | |
| background-color: #F6F6F6; | |
| border: 1px dashed #666; | |
| border-radius: 6px; | |
| margin-bottom: 20px; | |
| } |
| ################################################## | |
| # | |
| ################################################## | |
| param( | |
| [Parameter(Mandatory = $true)][String]$subscriptionId, | |
| [Parameter(Mandatory = $true)][String]$storageAccountName, | |
| [Parameter(Mandatory = $true)][String]$affinityGroupName, | |
| [Parameter(Mandatory = $true)][String]$imageName = 'MSFT__Windows-Server-2012-Datacenter-201208.01-en.us-30GB.vhd', | |
| [Parameter(Mandatory = $true)][String]$adminPassword, |
| /* iOS Native App Default Style implemented in CSS */ | |
| /* Bootstrapping … */ | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| font-size: inherit; | |
| -webkit-tap-highlight-color: rgba(0,0,0,0); | |
| } |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223