-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdefault.html
More file actions
54 lines (44 loc) · 2.79 KB
/
default.html
File metadata and controls
54 lines (44 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spore ModAPI Launcher Kit{% if page.url == "/" %} - {{ page.title }}{% endif %}</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'">
<link rel="stylesheet" href="/style/default.css">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The Spore ModAPI Launcher Kit installs, manages, and loads mods for Spore. It is the recommended way to install all mods, and allows mods to use advanced features, such as introducing new game modes, cheats, configurable options, and more.">
<meta name="keywords" content="Spore, ModAPI, Launcher Kit, mods, modding">
<meta property="og:title" content="Spore ModAPI Launcher Kit{% if page.url == '/' %} - {{ page.title }}{% endif %}">
<meta property="og:description" content="{{ page.description }}">
<meta property="og:image" content="/style/images/launcher.png">
</head>
<body>
<header>
<a id="site-header" href="/">
<img id="site-logo" src="/style/images/launcher.png" width="64" height="64" alt="Spore ModAPI Launcher Kit Logo">
<h1 id="site-title">Spore ModAPI Launcher Kit</h1>
</a>
<nav>
<ul id="nav-bar">
<li{% if page.url == "/" %} class="active"{% endif %}>
<a href="/">Home</a>
</li>
<li{% if page.url contains "/support" %} class="active"{% endif %}>
<a href="/support">Info & Support</a>
</li>
<li{% if page.url contains "/developers" %} class="active"{% endif %}>
<a href="/developers">For Mod Developers</a>
</li>
<!-- Add additional top-level nav links here by copying the above format -->
</ul>
</nav>
</header>
<!-- This will be replaced with the page's content -->
{{ content }}
<footer>
<p>The Launcher Kit is maintained by various contributors from the Spore community. Contact via <a target="_blank" rel="noopener noreferrer" href="{{ page.smc_discord_url }}">Discord</a> or <a href="mailto:launcherkit@sporecommunity.com">email</a>. Source code on <a target="_blank" rel="noopener noreferrer" href="{{ site.github.repository_url }}">GitHub</a>. Licensed under the <a href="{{ page.license_url }}">{{ page.license_name }}</a>.</p>
<p>Mods are maintained by their respective authors, and no guarantees are made regarding quality or safety. Use caution when installing unfamiliar mods.</p>
<p><strong>Not associated with or endorsed by Electronic Arts or Maxis.</strong> The Launcher Kit, ModAPI, and all mods are unofficial and not supported by EA or Maxis.</p>
</footer>
</body>
</html>