From 1a972bcf2f182f77c6d34524fb1f2e586a51d4bf Mon Sep 17 00:00:00 2001 From: TheTechRobo <52163910+TheTechRobo@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:43:15 -0400 Subject: [PATCH] Init --- Makefile | 10 +++++++++ README.md | 5 +++++ build/index.html | 48 +++++++++++++++++++++++++++++++++++++++++++ index.j2 | 53 ++++++++++++++++++++++++++++++++++++++++++++++++ index.json | 4 ++++ 5 files changed, 120 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100644 build/index.html create mode 100644 index.j2 create mode 100644 index.json diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..531ccff --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + make clean || echo "build folder doesn't exist" + make build +clean: + rm -Ir build + +build: + mkdir build + j2 -f json index.j2 index.json > build/index.html + diff --git a/README.md b/README.md new file mode 100644 index 0000000..42d636d --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Building +```zsh +pip install j2cli +make +``` diff --git a/build/index.html b/build/index.html new file mode 100644 index 0000000..ecdbdd5 --- /dev/null +++ b/build/index.html @@ -0,0 +1,48 @@ + + + Lifesteal SMP by TheTechRobo + + + + +
+

Lifesteal SMP by TheTechRobo

+
+ +
+

IP Address: play.lifesteal.thetechrobo.ca + + (Java 1.18.2 ONLY) + +

+

Recommended Mods.

+

Minecraft has a number of flaws. Purpur Client solves many of these problems.

+

Server Details

+
+
Server
+
Purpur 1.18.2
+
Plugins
+
+ Lifesteal Plugin (created by TheTechRobo) +
+
Whitelist
+
On (check)
+
+ diff --git a/index.j2 b/index.j2 new file mode 100644 index 0000000..417b83f --- /dev/null +++ b/index.j2 @@ -0,0 +1,53 @@ + + + Lifesteal SMP by TheTechRobo + + + + +

+ TODO: MOVE TO HUGO +

+
+

Lifesteal SMP by TheTechRobo

+
+ +
+

IP Address: play.lifesteal.thetechrobo.ca + {% if onlyjava %} + (Java {{ mcversion }} ONLY) + {% else %} + (Java + Bedrock {{mcversion}} + {% endif %} +

+

Recommended Mods.

+

Minecraft has a number of flaws. Purpur Client solves many of these problems.

+

Server Details

+
+
Server
+
Purpur {{ mcversion }}
+
Plugins
+
+ Lifesteal Plugin (created by TheTechRobo) +
+
Whitelist
+
On (check)
+
+ diff --git a/index.json b/index.json new file mode 100644 index 0000000..12a6b1e --- /dev/null +++ b/index.json @@ -0,0 +1,4 @@ +{ + "onlyjava": true, + "mcversion": "1.18.2" +}