Updates; more modular.

This commit is contained in:
TheTechRobo 2022-03-17 18:24:27 -04:00
parent 8eff4f45ac
commit cabd848891
3 changed files with 17 additions and 6 deletions

View File

@ -28,7 +28,7 @@ body {
<!--<cite><a href="http://motherfuckingwebsite.com/">motherf*ckingwebsite.com (contains profanity)</a></cite>-->
</aside>
<main>
<h2>IP Address: <code>play.lifesteal.thetechrobo.ca</code>
<h2>IP Address: <code>mc.thetechrobo.ca</code>
(Java 1.18.2 ONLY)
@ -45,6 +45,8 @@ body {
</dd>
<dt>Whitelist</dt>
<dd><span style="color: red;"><b>On</b></span> (<a href="/serverfiles/whitelist">check</a>)</dd>
<dt>Completely open-source?</dt>
<dd><span style="color: green;"><b>Yes</b></span>; download coming soon</dd>
</dl>
</main>
@ -53,7 +55,10 @@ body {
<ul>
<li>
<a href="/psots/hello-world">Hello, World!</a> ( March 15, 2022 )
<details><summary>Hello, World! ( March 15, 2022 )</summary>
<b>The server is up and running.</b>
Come see it! <code>mc.thetechrobo.ca</code>
</details>
</li>
</ul>

View File

@ -28,7 +28,7 @@ body {
<!--<cite><a href="http://motherfuckingwebsite.com/">motherf*ckingwebsite.com (contains profanity)</a></cite>-->
</aside>
<main>
<h2>IP Address: <code>play.lifesteal.thetechrobo.ca</code>
<h2>IP Address: <code>{{ ipee }}</code>
{% if onlyjava %}
(Java {{ mcversion }} ONLY)
{% else %}
@ -36,7 +36,7 @@ body {
{% endif %}
</h2>
<h2>Recommended Mods.</h2>
<p>Minecraft has a number of flaws. <a href="https://modrinth.com/mod/purpurclient">Purpur Client</a> solves many of these problems.</p>
<p>{{ recommods }}</p>
<h2>Server Details</h2>
<dl>
<dt>Server</dt>
@ -47,6 +47,8 @@ body {
</dd>
<dt>Whitelist</dt>
<dd><span style="color: red;"><b>On</b></span> (<a href="/serverfiles/whitelist">check</a>)</dd>
<dt>Completely open-source?</dt>
<dd><span style="color: green;"><b>Yes</b></span>; download coming soon</dd>
</dl>
</main>
@ -55,7 +57,9 @@ body {
<ul>
{% for post in blog.posts %}
<li>
<a href="{{ post.permalink }}">{{ post.title }}</a> ( {{ post.date }} )
<details><summary>{{ post.title }} ( {{ post.date }} )</summary>
{{ post.data }}
</details>
</li>
{% endfor %}
</ul>

View File

@ -1,11 +1,13 @@
{
"onlyjava": true,
"mcversion": "1.18.2",
"ipee": "mc.thetechrobo.ca",
"recommods": "Minecraft has a number of flaws. <a href=\"https://modrinth.com/mod/purpurclient\">Purpur Client</a> solves many of these problems.",
"blog": {
"posts": [
{
"title": "Hello, World!",
"permalink": "/psots/hello-world",
"data": "<b>The server is up and running.</b>\nCome see it! <code>mc.thetechrobo.ca</code>",
"date": "March 15, 2022"
}
]