Advertisement
divanov94

Untitled

Nov 18th, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {{>header}}
  2. <div class="container">
  3.     {{#if isLoggedIn}}
  4.     <div class="shoes">
  5.         {{#each offers}}
  6.         <div class="shoe">
  7.             <img src="{{this.imageUrl}}">
  8.             <h3>{{this.model}}</h3>
  9.             <a href="#/details/{{id}}">Buy it for {{this.price}}</a>
  10.         </div>
  11.         {{else}}
  12.         <h3>No shoes to display... :(</h3>
  13.  
  14.         {{/each}}
  15.  
  16.     </div>
  17.     {{else}}
  18.     <div class="about-us">
  19.         <div>
  20.             <img src="../public/shoes.jpg" alt="">
  21.             <img src="../public/shoes2.jpg" alt="">
  22.         </div>
  23.         <p>
  24.             <a href="#/register">Register Now</a> and Try it!
  25.         </p>
  26.     </div>
  27.     {{/if}}
  28. </div>
  29. {{>footer}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement