Advertisement
arkader

Handlebars template

Apr 25th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.00 KB | None | 0 0
  1. <div id="productions" class="centre ">
  2.  
  3.             <script id="productions-template" type="text/x-handlebars-template">
  4.                 {{#each this}}
  5.                     <div class="prod emissions">
  6.                         <div class="prod-img">
  7.                              <img src="purprod1/../img/productions/{{image}}" alt="">
  8.                         </div>
  9.                        
  10.                         <div class="prod-hover">
  11.                             <img src="purprod1/../img/productions/{{imgHover}}" alt="">
  12.                             <div class="nom-rubrique">{{rubrique}}</div>
  13.                             <hr class="trait-gris">
  14.                             <div class="titre-projet">
  15.                                 <a href="#" >{{titre}}</a>
  16.                             </div>
  17.                             <div class="diffuseur-projet">{{partenaire}}</div>
  18.                         </div>
  19.                     </div>
  20.                 {{/each}}
  21.             </script>
  22.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement