deploy: 8b98b00558
This commit is contained in:
parent
22a95000ee
commit
077d8b5b12
20 changed files with 395 additions and 38 deletions
|
|
@ -100,6 +100,14 @@
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.projectInfoGitHubReleases.less {
|
||||||
|
overflow: hidden;
|
||||||
|
display: -webkit-box;
|
||||||
|
line-clamp: 2;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1280px) {
|
@media only screen and (max-width: 1280px) {
|
||||||
#projectImagesAndInfo {
|
#projectImagesAndInfo {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,8 @@ code {
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select {
|
input, select {
|
||||||
|
|
@ -177,6 +179,7 @@ hr {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
|
line-clamp: 2;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
-webkit-box-orient: vertical
|
-webkit-box-orient: vertical
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -50,21 +50,41 @@
|
||||||
<h3>Optional metadata fields</h3>
|
<h3>Optional metadata fields</h3>
|
||||||
<p>Please fill as many fields as possible.</p>
|
<p>Please fill as many fields as possible.</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><em>downloadLink</em> - link for when you click the download link.</li>
|
|
||||||
<li><em>images</em> - lists of image files names or URLs that will appear in the project page.</li>
|
<li><em>images</em> - lists of image files names or URLs that will appear in the project page.</li>
|
||||||
<li><em>logo</em> - your logo file name or URL.</li>
|
<li><em>logo</em> - your logo file name or URL.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h3>Releases metadata</h3>
|
||||||
|
<ul>
|
||||||
|
<li><em>releasesType</em> - wheter your project uses <code>local</code> releases or <code>github</code>.
|
||||||
|
For local releases:</li>
|
||||||
|
<li><em>releases</em> - a list of relases labels and links.
|
||||||
|
For GitHub releases:</li>
|
||||||
|
<li><em>githubRepoOwner</em> - username of the repo owner.</li>
|
||||||
|
<li><em>githubReponame</em> - name of the repository.</li>
|
||||||
|
</ul>
|
||||||
<h3>Config file example</h3>
|
<h3>Config file example</h3>
|
||||||
<pre><code>{
|
<pre><code>{
|
||||||
"name": "Ghosts 'n Stuff",
|
"name": "Ghosts 'n Stuff",
|
||||||
"subtitle": "Miscellaneous additions to your server.",
|
"subtitle": "Miscellaneous additions to your Minecraft server.",
|
||||||
"author": "tenkuma",
|
"author": "tenkuma",
|
||||||
"downloadLink": "https://example.com",
|
"downloadLink": "https://modrinth.com/plugin/ghosts/versions",
|
||||||
"images": "["image1.png", "image2.png", "image3.png"]",
|
"images": ["anti-spam.png", "rainbow-chat.png", "skibidi-blocker.png"],
|
||||||
"logo": "logo.png",
|
"logo": "logo.png",
|
||||||
"tags": ["plugin", "mod"]
|
"tags": ["plugin"],
|
||||||
|
"links": {
|
||||||
|
"GitHub": "https://github.com/adrianvic/ghostsandstuff",
|
||||||
|
"Disroot Git": "https://git.disroot.org/adrianvictor/ghostsandstuff"
|
||||||
|
},
|
||||||
|
"docs": {
|
||||||
|
"Installation" : "docs/installation"
|
||||||
|
},
|
||||||
|
"releaseType": "github or local",
|
||||||
|
"githubRepoOwner": "adrianvic",
|
||||||
|
"githubRepoName": "ghostsandstuff",
|
||||||
|
"releases": {
|
||||||
|
"test release": "https://example.com/"
|
||||||
}
|
}
|
||||||
</code></pre>
|
}```</code></pre>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
14
index.html
14
index.html
|
|
@ -63,7 +63,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">Ghosts 'n Stuff</p>
|
<p class="featuredProjectName">Ghosts 'n Stuff</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Miscellaneous additions to your Minecraft server.</div>
|
<div class="featuredProjectSubtitle dimText">Miscellaneous additions to your Minecraft server.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">Aboukkit</p>
|
<p class="featuredProjectName">Aboukkit</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">A simple way to add custom commands with custom responses to your server.</div>
|
<div class="featuredProjectSubtitle dimText">A simple way to add custom commands with custom responses to your server.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -129,7 +129,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">tenkuma's Library</p>
|
<p class="featuredProjectName">tenkuma's Library</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Library to support my other plugins. Does nothing on it's own.</div>
|
<div class="featuredProjectSubtitle dimText">Library to support my other plugins. Does nothing on it's own.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">HangGlideRE</p>
|
<p class="featuredProjectName">HangGlideRE</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Fly with a chicken!</div>
|
<div class="featuredProjectSubtitle dimText">Fly with a chicken!</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -181,7 +181,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">The Devil Within</p>
|
<p class="featuredProjectName">The Devil Within</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Adds enchanting to Minecraft Beta. Supports balancing through curses.</div>
|
<div class="featuredProjectSubtitle dimText">Adds enchanting to Minecraft Beta. Supports balancing through curses.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -221,7 +221,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">TimeKeeper</p>
|
<p class="featuredProjectName">TimeKeeper</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Syncs real world time with your Minecraft server time.</div>
|
<div class="featuredProjectSubtitle dimText">Syncs real world time with your Minecraft server time.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -247,7 +247,7 @@
|
||||||
</a>
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<p class="featuredProjectName">teFreezer</p>
|
<p class="featuredProjectName">teFreezer</p>
|
||||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/neoBeta/">tenkuma</a></p>
|
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
||||||
<div class="featuredProjectSubtitle dimText">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</div>
|
<div class="featuredProjectSubtitle dimText">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">A simple way to add custom commands with custom responses to your server.</p>
|
<p id="projectSubtitle">A simple way to add custom commands with custom responses to your server.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/aboukkit/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/aboukkit/releases.html
Normal file
45
projects/aboukkit/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for Aboukkit</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Adds enchanting to Minecraft Beta. Supports balancing through curses.</p>
|
<p id="projectSubtitle">Adds enchanting to Minecraft Beta. Supports balancing through curses.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/devilwithin/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/devilwithin/releases.html
Normal file
45
projects/devilwithin/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for The Devil Within</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Miscellaneous additions to your Minecraft server.</p>
|
<p id="projectSubtitle">Miscellaneous additions to your Minecraft server.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/ghosts/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="projectImagesAndInfo">
|
<div id="projectImagesAndInfo">
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="projectInfo">
|
<div id="projectInfo">
|
||||||
<h2>Here's what we found:</h2>
|
<p>Here's what we found about this project:</p>
|
||||||
|
|
||||||
<p>2 links.</p>
|
<p>2 links.</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
@ -88,7 +88,7 @@
|
||||||
<p>1 documentaion files.</p>
|
<p>1 documentaion files.</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li><a href="docs/example_documentation">Installation</a></li>
|
<li><a href="docs/installation">Installation</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
||||||
56
projects/ghostsandstuff/releases.html
Normal file
56
projects/ghostsandstuff/releases.html
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for Ghosts 'n Stuff</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p id="projectInfoReleases">
|
||||||
|
|
||||||
|
|
||||||
|
Releases fetched from GitHub at 2025-10-29T23:58:05.010Z:<br>
|
||||||
|
|
||||||
|
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.6">Ghosts And Stuff Release 0.6</a></p>
|
||||||
|
|
||||||
|
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.5">Ghosts And Stuff Release 0.5</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Fly with a chicken!</p>
|
<p id="projectSubtitle">Fly with a chicken!</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="."><button id="downloadButton">Unavailable</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Unavailable</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/hangglidere/releases.html
Normal file
45
projects/hangglidere/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for HangGlideRE</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</p>
|
<p id="projectSubtitle">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/freezer/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/tefreezer/releases.html
Normal file
45
projects/tefreezer/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for teFreezer</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Library to support my other plugins. Does nothing on it's own.</p>
|
<p id="projectSubtitle">Library to support my other plugins. Does nothing on it's own.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/tenkumalib/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/tenkumalib/releases.html
Normal file
45
projects/tenkumalib/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for tenkuma's Library</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">Syncs real world time with your Minecraft server time.</p>
|
<p id="projectSubtitle">Syncs real world time with your Minecraft server time.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="https://modrinth.com/plugin/timekeeper/versions"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
45
projects/timekeeper/releases.html
Normal file
45
projects/timekeeper/releases.html
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="/neoBeta/assets/stylesheets/styles.css" media="screen">
|
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>neoBeta</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script>
|
||||||
|
window.ELEVENTY_PATH_PREFIX = "/neoBeta/";
|
||||||
|
</script>
|
||||||
|
<div id="everythingHelper">
|
||||||
|
<aside>
|
||||||
|
<header>
|
||||||
|
<div id="linksBox">
|
||||||
|
<div id="headerLinksAndTitle">
|
||||||
|
<div id="logoTitle">
|
||||||
|
<img src="/neoBeta/assets/logo.png" id="logo">
|
||||||
|
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||||
|
</div>
|
||||||
|
<ul id="headerLinks">
|
||||||
|
<li><a href="/neoBeta/">home</a></li>
|
||||||
|
<li><a href="/neoBeta/search">search</a></li>
|
||||||
|
<li><a href="/neoBeta/allprojects">index</a></li>
|
||||||
|
<li><a href="/neoBeta/contribute">contribute</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p id="credits">Adrian Victor, 2025 (<a href="https://git.disroot.org/adrianvictor/neoBeta">Unlicense</a>)</p>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>Releases for TimeKeeper</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue