12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en-us">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>@project_name@ Examples: @category_description@</title>
- <link
- rel="stylesheet"
- type="text/css"
- href="/@project_name@/examples.css"
- />
- <style>
- main > h1 {
- margin-top: 0;
- }
- </style>
- </head>
- <body>
- <header>
- <a href="/">@project_name@ Examples</a>
- </header>
- <main>
- <nav class="breadcrumb">
- <ul>
- <li><a href="/@project_name@/">@project_name@</a></li>
- <li><a href="/@project_name@/@category_name@">@category_name@</a></li>
- </ul>
- </nav>
- <h1>@project_name@ examples: @category_description@</h1>
- <div class="list">@examples_list_html@</div>
- </main>
- </body>
- </html>
|