You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

home.html 1.9KB

123456789101112131415161718192021222324252627282930313233
  1. <div layout="column" layout-fill layout-align="top" angular-busy="appUtils.cgBusy('home.home')">
  2. <div layout="row">
  3. <article ng-model="item"></article>
  4. </div>
  5. <div layout="row">
  6. <span flex="25"></span>
  7. <md-grid-list class="image-grid" md-cols="2" md-row-height="200px" md-row-height-gt-sm="300px" md-row-height-gt-md="450px" md-gutter="4px" flex="40">
  8. <md-grid-tile class="red" md-colspan="2" md-rowspan="1">
  9. <a ui-sref="persons">
  10. <img class="article-picture" src="http://commons.wikimedia.org/wiki/Special:FilePath/Sir_Winston_S_Churchill.jpg?width=300">
  11. <md-grid-tile-footer><h3>{{ 'persons.name' | translate }}</h3></md-grid-tile-footer>
  12. </a>
  13. </md-grid-tile>
  14. <md-grid-tile class="purple" md-colspan="1" md-rowspan="1">
  15. <a ui-sref="countries">
  16. <img class="article-picture" src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Flag_of_Canada_%28Pantone%29.svg/1000px-Flag_of_Canada_%28Pantone%29.svg.png">
  17. <md-grid-tile-footer><h3>{{ 'countries.name' | translate }}</h3></md-grid-tile-footer>
  18. </a>
  19. </md-grid-tile>
  20. <md-grid-tile class="blue" md-colspan="1" md-rowspan="1">
  21. <a ui-sref="locations">
  22. <img class="article-picture" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Europe_orthographic_Caucasus_Urals_boundary_%28with_borders%29.svg/langfr-280px-Europe_orthographic_Caucasus_Urals_boundary_%28with_borders%29.svg.png">
  23. <md-grid-tile-footer><h3>{{ 'locations.name' | translate }}</h3></md-grid-tile-footer>
  24. </a>
  25. </md-grid-tile>
  26. </md-grid-list>
  27. </div>
  28. <div ng-repeat="error in busy.errors('home.home')" class="isa_error">
  29. <i class="fa fa-times-circle"></i>
  30. {{ error.data.message }}
  31. </div>
  32. </div>