extend.html 683 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <html lang="en-us">
  3. <head>
  4. <title>Users</title>
  5. <link rel="stylesheet" href="assets/css/screen.css" />
  6. </head>
  7. <body>
  8. <div class="site">
  9. <div class="site-hd" role="banner">
  10. <h1>Users</h1>
  11. <h2>Goodnight Moon</h2>
  12. </div>
  13. <div class="site-bd" role="main">
  14. <div class="grid">
  15. <div class="col 2of3">
  16. <p>Dolor sit amet.</p>
  17. <p>Lorem ipsum.</p>
  18. </div>
  19. <div class="col 1of3">
  20. <p>Consectetur adipiscing elit.</p>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="site-ft" role="contentinfo">
  25. <small>&copy; 1984</small>
  26. <p>MIT License</p>
  27. </div>
  28. </div>
  29. <script src="assets/js/controllers/home.js"></script>
  30. </body>
  31. </html>