template-category.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: @category_description@</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: @category_description@">
  22. <meta property="og:description" content="@project_name@ Examples: @category_description@">
  23. <meta property="og:image" content="@preview_image@" />
  24. </head>
  25. <body>
  26. <header>
  27. <a href="/">@project_name@ Examples</a>
  28. </header>
  29. <main>
  30. <nav class="breadcrumb">
  31. <ul>
  32. <li><a href="/@project_name@/">@project_name@</a></li>
  33. <li><a href="/@project_name@/@category_name@/">@category_name@</a></li>
  34. </ul>
  35. </nav>
  36. <h1>@project_name@ examples: @category_description@</h1>
  37. <div class="list">@examples_list_html@</div>
  38. </main>
  39. </body>
  40. </html>