diff --git a/public/_data.json b/public/_data.json index 261b31c3db..4a040441c5 100644 --- a/public/_data.json +++ b/public/_data.json @@ -15,6 +15,12 @@ "autoformat": "true" }, + "cardboard": { + "title": "Angular Cardboard Hack-A-Thon", + "subtitle": "Win a free ticket to ng-conf 2016", + "autoformat": "true" + }, + "download": { "title": "Download Angular", "subtitle": "Setup & Installation" diff --git a/public/about/index.jade b/public/about/index.jade index a32b23b5ae..b6b429b178 100644 --- a/public/about/index.jade +++ b/public/about/index.jade @@ -17,21 +17,24 @@ h3.text-headline.text-uppercase.text-center Current Contributors - for person, name in bios - .c3 - md-card(biocard class="bio-card" website="#{person.website}" twitter="#{person.twitter}" pic="#{person.picture}" bio="#{person.bio}" name="#{person.name}") - header - image(src="#{person.picture}" alt="#person.name") + for type in [ 'Lead', 'Google', 'Community' ] + h4.text-headline.text-uppercase(style='clear:both')= type + for person, name in bios + if person.type == type + .c3 + md-card(biocard class="bio-card" website="#{person.website}" twitter="#{person.twitter}" pic="#{person.picture}" bio="#{person.bio}" name="#{person.name}") + header + image(src="#{person.picture}" alt="#person.name") - nav - button(aria-label="View Bio") View Bio + nav + button(aria-label="View Bio") View Bio - if person.twitter - a(title="twitter" href="https://twitter.com/#{person.twitter}" ng-click="$event.stopPropagation()") + if person.twitter + a(title="twitter" href="https://twitter.com/#{person.twitter}" ng-click="$event.stopPropagation()") - if person.website - a(title="website" href="#{person.website}" ng-click="$event.stopPropagation()") + if person.website + a(title="website" href="#{person.website}" ng-click="$event.stopPropagation()") - md-card-content - h3.text-headline.bio-card-name #{person.name} - p(class="bio-card-content text-body") #{person.bio} + md-card-content + h3.text-headline.bio-card-name #{person.name} + p(class="bio-card-content text-body") #{person.bio} diff --git a/public/cardboard.jade b/public/cardboard.jade new file mode 100644 index 0000000000..df4dda86a1 --- /dev/null +++ b/public/cardboard.jade @@ -0,0 +1,61 @@ +style(rel='stylesheet'). + .fake-centered { + width: 440px; + margin: 0 auto; + text-align: left; + } + +.grid-fluid.l-space-bottom-4 + .c2   + + .c8.text-center + p.text-body. + We love exciting new technologies, it’s one of the reasons we created Angular, and we love Google Cardboard. What could be better (or more fun) than combining the two? + p Only the app you build and we can’t wait to see your ideas come to virtual life (literally!). + + - for (var i = 0; i < 5; i++) + img(src="/resources/images/cardboard/cardboard.png" alt="" width="20%") + .c2   + .clear +.grid-fluid.l-space-bottom-6.text-center + .c2   + .c8 + div.l-space-bottom-4.banner.is-centered.banner-ng-annoucement + h2 Excited? So are we! + p. + Submit your Angular Cardboard App before December 31, 2015
+ and you could win a free ticket to ng-conf 2016! + div.fake-centered + p Entries will be judged in two categories: + ul + li Most Engaging App + li. + Best Technology Demonstration +
+ Huge hint: Angular 2 scores points + + p We’ve partnered with Ionic to give you a head’s start with this + img(src="/resources/images/cardboard/Ionic_Logo.png" alt="" width="40%") + p + a(href="https://github.com/driftyco/ionic-starter-cardboard") Starter Template for Angular Cardboard + + h4 Ready? + p + a(href="https://docs.google.com/a/google.com/forms/d/1qHPldjf1VuR565IUhUDjz7VuC8dU_3WBF80zGi6xOss/edit") Sign-Up Here + p Don’t have Cardboard and want one? Check out: + p.text-center + a(href="http://www.unofficialcardboard.com/") + img(src="/resources/images/cardboard/UC_Logo_Black.png" alt="Unofficial Cardboard" width="30%") + + h4 Rules of the Contest + p. + Changed your mind? That’s okay, we know stuff comes up, email us and + we will remove you from the contest and delete all of your submitted information. + p Rules of the Contest | Google Privacy Policy Link + + .c2   + + + + diff --git a/public/resources/images/cardboard/Ionic_Logo.png b/public/resources/images/cardboard/Ionic_Logo.png new file mode 100644 index 0000000000..5574d51e56 Binary files /dev/null and b/public/resources/images/cardboard/Ionic_Logo.png differ diff --git a/public/resources/images/cardboard/UC_Logo_Black.png b/public/resources/images/cardboard/UC_Logo_Black.png new file mode 100644 index 0000000000..c217a43cd6 Binary files /dev/null and b/public/resources/images/cardboard/UC_Logo_Black.png differ diff --git a/public/resources/images/cardboard/cardboard.png b/public/resources/images/cardboard/cardboard.png new file mode 100644 index 0000000000..f98e9d3b16 Binary files /dev/null and b/public/resources/images/cardboard/cardboard.png differ