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",
|
"reacharound",
|
||||||
"xaeros-world-map",
|
"xaeros-world-map",
|
||||||
"xaeros-minimap",
|
"xaeros-minimap",
|
||||||
|
"simple-voice-radio",
|
||||||
|
"trashslot",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -128,6 +130,7 @@ mod_categories = [
|
||||||
"fwaystones",
|
"fwaystones",
|
||||||
"explorers-compass",
|
"explorers-compass",
|
||||||
"natures-compass",
|
"natures-compass",
|
||||||
|
"portable-base-(move-your-base-around)",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -189,6 +192,7 @@ mod_categories = [
|
||||||
mod_slugs=OrderedSet(
|
mod_slugs=OrderedSet(
|
||||||
[
|
[
|
||||||
"minecells",
|
"minecells",
|
||||||
|
"when-dungeons-arise-seven-seas",
|
||||||
"dungeon-now-loading",
|
"dungeon-now-loading",
|
||||||
"dungeons-and-taverns",
|
"dungeons-and-taverns",
|
||||||
"wabi-sabi-structures",
|
"wabi-sabi-structures",
|
||||||
|
@ -216,13 +220,13 @@ mod_categories = [
|
||||||
mod_slugs=OrderedSet(
|
mod_slugs=OrderedSet(
|
||||||
[
|
[
|
||||||
"terralith",
|
"terralith",
|
||||||
"biomes-o-plenty",
|
|
||||||
"bingusandfloppa",
|
"bingusandfloppa",
|
||||||
"promenade",
|
"promenade",
|
||||||
"eldritch-end",
|
"eldritch-end",
|
||||||
"naturalist",
|
"naturalist",
|
||||||
"more-mob-variants",
|
"more-mob-variants",
|
||||||
"valentines-blessing-lilypads-roses",
|
"valentines-blessing-lilypads-roses",
|
||||||
|
"nyctophobia",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -312,7 +316,7 @@ mod_categories = [
|
||||||
"rebalance",
|
"rebalance",
|
||||||
"protection-balancer",
|
"protection-balancer",
|
||||||
"starter-kit",
|
"starter-kit",
|
||||||
"gravestones",
|
"yigd",
|
||||||
"fallingtree",
|
"fallingtree",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
|
@ -339,6 +343,7 @@ mod_categories = [
|
||||||
"deuf-refabricated",
|
"deuf-refabricated",
|
||||||
"spark",
|
"spark",
|
||||||
"modernfix",
|
"modernfix",
|
||||||
|
"chunky",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -433,6 +438,9 @@ mod_categories = [
|
||||||
"azurelib-armor",
|
"azurelib-armor",
|
||||||
"autotag",
|
"autotag",
|
||||||
"argonauts",
|
"argonauts",
|
||||||
|
"globalpacks",
|
||||||
|
"wasabiwhisper-harmonia",
|
||||||
|
"lexiconfig",
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -532,14 +540,21 @@ def generate_html(mod_info):
|
||||||
with tag("head"):
|
with tag("head"):
|
||||||
doc.stag("meta", charset="utf-8")
|
doc.stag("meta", charset="utf-8")
|
||||||
with tag("title"):
|
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="pico.red.min.css")
|
||||||
doc.stag("link", rel="stylesheet", href="style.css")
|
doc.stag("link", rel="stylesheet", href="style.css")
|
||||||
|
|
||||||
with tag("main", klass="container"):
|
with tag("main", klass="container"):
|
||||||
with tag("header"):
|
with tag("header"):
|
||||||
with tag("h1"):
|
with tag("nav"):
|
||||||
text("VR Crawler Mod List")
|
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:
|
for category in mod_categories:
|
||||||
with tag("section", klass="mod-category"):
|
with tag("section", klass="mod-category"):
|
||||||
with tag("h2"):
|
with tag("h2"):
|
||||||
|
|
25
index.html
25
index.html
|
@ -4,13 +4,26 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="pico.red.min.css">
|
<link rel="stylesheet" href="pico.red.min.css">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
<main class="container">
|
<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>
|
<h2>What is this?</h2>
|
||||||
<p>
|
<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
|
/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
|
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.
|
this even if you don't like regular Minecraft.
|
||||||
|
@ -28,7 +41,6 @@
|
||||||
</section>
|
</section>
|
||||||
<section id="download">
|
<section id="download">
|
||||||
<h2>Download</h2>
|
<h2>Download</h2>
|
||||||
<p>You have several options:</p>
|
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<article>
|
<article>
|
||||||
<details>
|
<details>
|
||||||
|
@ -49,7 +61,12 @@
|
||||||
<details>
|
<details>
|
||||||
<summary>I have my own autistic minecraft launcher setup, just give me the jars</summary>
|
<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
|
<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>
|
</details>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|
10
style.css
10
style.css
|
@ -13,3 +13,13 @@
|
||||||
.mod-description-details {
|
.mod-description-details {
|
||||||
--pico-spacing: 0;
|
--pico-spacing: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#statusimg {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1000px) {
|
||||||
|
#statusimg {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue