Advertisement
Guest User

Untitled

a guest
May 27th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.26 KB | None | 0 0
  1. # The jade layout
  2. doctype html
  3. html
  4.     head
  5.         title= title
  6.  
  7.         meta(name='viewport', content='width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no')
  8.  
  9.         link(rel='stylesheet', href='/assets/css/bootstrap-flex.css')
  10.         link(rel='stylesheet', href='/assets/css/ionicons.min.css')
  11.         link(rel='stylesheet', href='/assets/css/main.css')
  12.  
  13.     body
  14.         include ./partials/header.jade
  15.         block content
  16.  
  17.         script(src='/socket.io/socket.io.js')
  18.  
  19.         // Polyfill(s) for older browsers
  20.         script(src='/modules/core-js/client/shim.min.js')
  21.         script(src='/modules/zone.js/dist/zone.js')
  22.         script(src='/modules/reflect-metadata/Reflect.js')
  23.         script(src='/modules/systemjs/dist/system.src.js')
  24.  
  25.         // Configure SystemJS
  26.         script(src='systemjs.config.js')
  27.         script.
  28.             System.import('app').catch(function(err){ console.error(err); });
  29.  
  30.  
  31. # The content block
  32. extends layout
  33.  
  34. block content
  35.   studiomaton Loading...
  36.  
  37. # The angular template
  38. <div class="row gallery">
  39.     <div class="picture col-xl-3 col-lg-4 col-sm-6 col-xs-12" *ngFor="let photo of photos">
  40.         <div class="inner">
  41.             <img  class="img-fluid" src="{{photo.thumb}}">
  42.         </div>
  43.     </div>
  44. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement