template-homepage.html 775 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en-us">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <title>@project_name@ Examples</title>
  8. <link rel="stylesheet" type="text/css" href="/examples.css" />
  9. <style>
  10. main > h1 {
  11. margin-top: 0;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <header>
  17. <a href="/">SDL Examples</a>
  18. </header>
  19. <main>
  20. <nav class="breadcrumb">
  21. <ul>
  22. <li><a href="/">@project_name@</a></li>
  23. </ul>
  24. </nav>
  25. <h1>@project_name@ examples</h1>
  26. <p>Check out the @project_name@ examples here!</p>
  27. @homepage_list_html@
  28. </main>
  29. </body>
  30. </html>