Created
June 2, 2015 02:51
-
-
Save jaseflow/425039058536d74e3ed1 to your computer and use it in GitHub Desktop.
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
| <ion-view> | |
| <ion-nav-title> | |
| {{ section.title }} | |
| <small>{{ title }}</small> | |
| </ion-nav-title> | |
| <ion-nav-buttons side="right"> | |
| <button class="button button-icon button-clear" ng-click="toggleFavourite()"> | |
| <i class="fa header__icon favourite" ng-class="isFavourited ? 'fa-star' : 'fa-star-o'"></i> | |
| </button> | |
| </ion-nav-buttons> | |
| <ion-content> | |
| <div class="postcard__hero"> | |
| <video width="100%" height="100%" controls> | |
| <source src="https://s3-ap-southeast-2.amazonaws.com/growthlearning.com.au/hero-movie.MOV" type="video/mp4"> | |
| Your browser does not support the video tag. | |
| </video> | |
| </div> | |
| <div class="container container--alt"> | |
| <div class="content" ng-bind-html="section.html"></div> | |
| </div> | |
| </ion-content> | |
| <ion-footer-bar class="bar-light" ng-click="openQuiz()"> | |
| <div class="title">Next section</div> | |
| <button class="button button-clear"><i class="icon ion-ios-arrow-right"></i></button> | |
| </ion-footer-bar> | |
| </ion-view> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment