added the mcstatus image, navbar to mod list. still would like images/webums, later.
This commit is contained in:
parent
0d1f504166
commit
dd61e75c27
4 changed files with 1316 additions and 169 deletions
|
@ -107,6 +107,8 @@ mod_categories = [
|
|||
"reacharound",
|
||||
"xaeros-world-map",
|
||||
"xaeros-minimap",
|
||||
"simple-voice-radio",
|
||||
"trashslot",
|
||||
]
|
||||
),
|
||||
),
|
||||
|
@ -128,6 +130,7 @@ mod_categories = [
|
|||
"fwaystones",
|
||||
"explorers-compass",
|
||||
"natures-compass",
|
||||
"portable-base-(move-your-base-around)",
|
||||
]
|
||||
),
|
||||
),
|
||||
|
@ -189,6 +192,7 @@ mod_categories = [
|
|||
mod_slugs=OrderedSet(
|
||||
[
|
||||
"minecells",
|
||||
"when-dungeons-arise-seven-seas",
|
||||
"dungeon-now-loading",
|
||||
"dungeons-and-taverns",
|
||||
"wabi-sabi-structures",
|
||||
|
@ -216,13 +220,13 @@ mod_categories = [
|
|||
mod_slugs=OrderedSet(
|
||||
[
|
||||
"terralith",
|
||||
"biomes-o-plenty",
|
||||
"bingusandfloppa",
|
||||
"promenade",
|
||||
"eldritch-end",
|
||||
"naturalist",
|
||||
"more-mob-variants",
|
||||
"valentines-blessing-lilypads-roses",
|
||||
"nyctophobia",
|
||||
]
|
||||
),
|
||||
),
|
||||
|
@ -312,7 +316,7 @@ mod_categories = [
|
|||
"rebalance",
|
||||
"protection-balancer",
|
||||
"starter-kit",
|
||||
"gravestones",
|
||||
"yigd",
|
||||
"fallingtree",
|
||||
]
|
||||
),
|
||||
|
@ -339,6 +343,7 @@ mod_categories = [
|
|||
"deuf-refabricated",
|
||||
"spark",
|
||||
"modernfix",
|
||||
"chunky",
|
||||
]
|
||||
),
|
||||
),
|
||||
|
@ -433,6 +438,9 @@ mod_categories = [
|
|||
"azurelib-armor",
|
||||
"autotag",
|
||||
"argonauts",
|
||||
"globalpacks",
|
||||
"wasabiwhisper-harmonia",
|
||||
"lexiconfig",
|
||||
]
|
||||
),
|
||||
),
|
||||
|
@ -532,14 +540,21 @@ def generate_html(mod_info):
|
|||
with tag("head"):
|
||||
doc.stag("meta", charset="utf-8")
|
||||
with tag("title"):
|
||||
text("VR Crawler Mod List")
|
||||
text("/vrg/ Crawler: Mod List")
|
||||
doc.stag("link", rel="stylesheet", href="pico.red.min.css")
|
||||
doc.stag("link", rel="stylesheet", href="style.css")
|
||||
|
||||
with tag("main", klass="container"):
|
||||
with tag("header"):
|
||||
with tag("h1"):
|
||||
text("VR Crawler Mod List")
|
||||
with tag("nav"):
|
||||
with tag("ul"):
|
||||
with tag("li"):
|
||||
doc.line("h1", "/vrg/ Crawler")
|
||||
doc.line("li", "Mod List")
|
||||
with tag("ul"):
|
||||
with tag("li"):
|
||||
doc.line("a", "About", href="index.html")
|
||||
|
||||
for category in mod_categories:
|
||||
with tag("section", klass="mod-category"):
|
||||
with tag("h2"):
|
||||
|
|
25
index.html
25
index.html
|
@ -4,13 +4,26 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="pico.red.min.css">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<main class="container">
|
||||
<h1>/vrg/ Crawler</h1>
|
||||
<header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<h1>/vrg/ Crawler</h1>
|
||||
</li>
|
||||
<li>the least bad VR co-op dungeon crawling game</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li><a href=mods.html>Mod List</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<p>Experience the least bad VR co-op dungeon crawling game.</p>
|
||||
|
||||
<h2>What is this?</h2>
|
||||
<p>
|
||||
<img id=statusimg src=https://api.mcstatus.io/v2/widget/java/crawler.vrg.party width=430 height=120 />
|
||||
/vrg/ crawler is a Minecraft server and modpack that converts the game into a co-op dungeon crawling
|
||||
VR game, to the best of our ability. Think Ancient Dungeon, or Dungeons of Eternity, but good. You may enjoy
|
||||
this even if you don't like regular Minecraft.
|
||||
|
@ -28,7 +41,6 @@
|
|||
</section>
|
||||
<section id="download">
|
||||
<h2>Download</h2>
|
||||
<p>You have several options:</p>
|
||||
<div class="grid">
|
||||
<article>
|
||||
<details>
|
||||
|
@ -49,7 +61,12 @@
|
|||
<details>
|
||||
<summary>I have my own autistic minecraft launcher setup, just give me the jars</summary>
|
||||
<p>import <a href="vr-crawler.mrpack">vr-crawler.mrpack</a> into your
|
||||
launcher of choice somehow. It's a Modrinth modpack file.</p>
|
||||
launcher of choice somehow. It's a Modrinth modpack file. You'll also
|
||||
have to add <code>crawler.vrg.party</code> as a multiplayer server.
|
||||
Note that if we change things, the pack doesn't automatically update,
|
||||
so we really recommend using polyMC from the other two options to get that set up.
|
||||
You can run it portably, no install required, and it won't mess with your existing minecraft
|
||||
setups.</p>
|
||||
</details>
|
||||
</article>
|
||||
|
||||
|
|
10
style.css
10
style.css
|
@ -12,4 +12,14 @@
|
|||
|
||||
.mod-description-details {
|
||||
--pico-spacing: 0;
|
||||
}
|
||||
|
||||
#statusimg {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1000px) {
|
||||
#statusimg {
|
||||
float: right;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue