diff options
author | 3gg <3gg@shellblade.net> | 2025-08-30 16:53:58 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-08-30 16:53:58 -0700 |
commit | 6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch) | |
tree | 34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/examples/template-category.html | |
parent | 8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff) |
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/examples/template-category.html')
-rw-r--r-- | src/contrib/SDL-3.2.20/examples/template-category.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/examples/template-category.html b/src/contrib/SDL-3.2.20/examples/template-category.html new file mode 100644 index 0000000..909b2c6 --- /dev/null +++ b/src/contrib/SDL-3.2.20/examples/template-category.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: @category_description@</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: @category_description@"> | ||
22 | <meta property="og:description" content="@project_name@ Examples: @category_description@"> | ||
23 | <meta property="og:image" content="@preview_image@" /> | ||
24 | |||
25 | </head> | ||
26 | <body> | ||
27 | <header> | ||
28 | <a href="/">@project_name@ Examples</a> | ||
29 | </header> | ||
30 | <main> | ||
31 | <nav class="breadcrumb"> | ||
32 | <ul> | ||
33 | <li><a href="/@project_name@/">@project_name@</a></li> | ||
34 | <li><a href="/@project_name@/@category_name@">@category_name@</a></li> | ||
35 | </ul> | ||
36 | </nav> | ||
37 | <h1>@project_name@ examples: @category_description@</h1> | ||
38 | <div class="list">@examples_list_html@</div> | ||
39 | </main> | ||
40 | </body> | ||
41 | </html> | ||