template-homepage.html 1.1 KB

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