summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-3.2.20/examples/template-homepage.html
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
committer3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
commit6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch)
tree34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/examples/template-homepage.html
parent8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff)
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/examples/template-homepage.html')
-rw-r--r--src/contrib/SDL-3.2.20/examples/template-homepage.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/examples/template-homepage.html b/src/contrib/SDL-3.2.20/examples/template-homepage.html
new file mode 100644
index 0000000..46951b2
--- /dev/null
+++ b/src/contrib/SDL-3.2.20/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>