diff options
Diffstat (limited to 'contrib/SDL-3.2.8/examples/template-homepage.html')
| -rw-r--r-- | contrib/SDL-3.2.8/examples/template-homepage.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/contrib/SDL-3.2.8/examples/template-homepage.html b/contrib/SDL-3.2.8/examples/template-homepage.html new file mode 100644 index 0000000..46951b2 --- /dev/null +++ b/contrib/SDL-3.2.8/examples/template-homepage.html | |||
| @@ -0,0 +1,41 @@ | |||
| 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 | |||
| 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 | |||
| 25 | </head> | ||
| 26 | <body> | ||
| 27 | <header> | ||
| 28 | <a href="/">SDL Examples</a> | ||
| 29 | </header> | ||
| 30 | <main> | ||
| 31 | <nav class="breadcrumb"> | ||
| 32 | <ul> | ||
| 33 | <li><a href="/@project_name@">@project_name@</a></li> | ||
| 34 | </ul> | ||
| 35 | </nav> | ||
| 36 | <h1>@project_name@ examples</h1> | ||
| 37 | |||
| 38 | @homepage_list_html@ | ||
| 39 | </main> | ||
| 40 | </body> | ||
| 41 | </html> | ||
