Add Subnautica to games list on WebHost
This commit is contained in:
parent
e1e25d0eae
commit
a9ecab35d8
|
@ -99,7 +99,13 @@ games_list = {
|
||||||
Minecraft is a game about creativity. In a world made entirely of cubes, you explore, discover, mine,
|
Minecraft is a game about creativity. In a world made entirely of cubes, you explore, discover, mine,
|
||||||
craft, and try not to explode. Delve deep into the earth and discover abandoned mines, ancient
|
craft, and try not to explode. Delve deep into the earth and discover abandoned mines, ancient
|
||||||
structures, and materials to create a portal to another world. Defeat the Ender Dragon, and claim
|
structures, and materials to create a portal to another world. Defeat the Ender Dragon, and claim
|
||||||
victory!""")
|
victory!"""),
|
||||||
|
"Subnautica": ("Subnautica",
|
||||||
|
"""
|
||||||
|
Subnautica is an undersea exploration game. Stranded on an alien world, you become infected by
|
||||||
|
an unknown bacteria. The planet's automatic quarantine will shoot you down if you try to leave.
|
||||||
|
You must find a cure for yourself, build an escape rocket, and leave the planet.
|
||||||
|
"""),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#subnautica{
|
||||||
|
margin: 1rem;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
{% extends 'pageWrapper.html' %}
|
||||||
|
|
||||||
|
{% block head %}
|
||||||
|
<title>Subnautica</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/subnautica/subnautica.css") }}" />
|
||||||
|
<script type="application/ecmascript" src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
||||||
|
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/js-yaml.min.js") }}"></script>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block body %}
|
||||||
|
{% include 'header/grassHeader.html' %}
|
||||||
|
<div id="subnautica">
|
||||||
|
Coming Soon™
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue