Advertisement
divanov94

Untitled

Feb 19th, 2021
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {{#unless isAuth}}
  2. <div class="jumbotron jumbotron-fluid">
  3.     <div class="container">
  4.         <h1 class="display-4">Tutorials</h1>
  5.         <p class="lead">Start Self-Learning Today: Be the best Developer in the company</p>
  6.     </div>
  7. </div>
  8. {{/unless}}
  9.  
  10. <div>
  11.  
  12.  
  13.     {{#if isAuth}}
  14.     <h1 class="text-center">Courses</h1>
  15.     <section>
  16.         <a href="/courses/create" class="btn btn-warning ">Create Course</a>
  17.         <form class="search float-right">
  18.             <label>Search: </label>
  19.             <input type="text">
  20.             <input type="submit" class="btn btn-primary" value="Search">
  21.         </form>
  22.     </section>
  23.     {{else}}
  24.     <h1 class="text-center">Top Courses</h1>
  25.     {{/if}}
  26.     <div class="container mt-3">
  27.         <div class="row d-flex justify-content-center">
  28.  
  29.             <div class="card-deck">
  30.                 {{#each courses}}
  31.                 {{>course}}
  32.                 {{else}}
  33.                 <h4 class="text-center">No courses...</h4>
  34.                 {{/each}}
  35.  
  36.             </div>
  37.  
  38.         </div>
  39.  
  40.     </div>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement