SDL/examples/template-homepage.html
2024-12-04 19:37:50 -05:00

36 lines
826 B
HTML

<!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</title>
<link
rel="stylesheet"
type="text/css"
href="/@project_name@/examples.css"
/>
<style>
main > h1 {
margin-top: 0;
}
</style>
</head>
<body>
<header>
<a href="/">SDL Examples</a>
</header>
<main>
<nav class="breadcrumb">
<ul>
<li><a href="/@project_name@">@project_name@</a></li>
</ul>
</nav>
<h1>@project_name@ examples</h1>
<p>Check out the @project_name@ examples here!</p>
@homepage_list_html@
</main>
</body>
</html>