template-homepage.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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="icon" href="/@project_name@/thumbnail.png" type="image/png" />
  9. <link
  10. rel="stylesheet"
  11. type="text/css"
  12. href="/@project_name@/examples.css"
  13. />
  14. <style>
  15. main > h1 {
  16. margin-top: 0;
  17. }
  18. </style>
  19. <meta property="og:type" content="website">
  20. <meta property="og:title" content="@project_name@ Examples">
  21. <meta property="og:description" content="@project_name@ Examples">
  22. <meta property="og:image" content="@preview_image@" />
  23. </head>
  24. <body>
  25. <header>
  26. <a href="/">SDL Examples</a>
  27. </header>
  28. <main>
  29. <nav class="breadcrumb">
  30. <ul>
  31. <li><a href="/@project_name@">@project_name@</a></li>
  32. </ul>
  33. </nav>
  34. <h1>@project_name@ examples</h1>
  35. @homepage_list_html@
  36. </main>
  37. </body>
  38. </html>