Preparing for deploying with GitHub pages.
36
.github/workflows/build-and-deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
name: Build and Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ['master']
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: ['20']
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install packages
|
||||
run: npm ci
|
||||
|
||||
- name: Run npm build
|
||||
run: npm run build:prod
|
||||
|
||||
- name: Deploy to gh-pages
|
||||
uses: peaceiris/actions-gh-pages@v4
|
||||
with:
|
||||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
28
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Build PR
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: ['main']
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: ['20']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install packages
|
||||
run: npm ci
|
||||
|
||||
- name: Run npm build
|
||||
run: npm run build
|
||||
20
.gitignore
vendored
|
|
@ -1,2 +1,18 @@
|
|||
node_modules
|
||||
_site
|
||||
# Dependencies
|
||||
/node_modules
|
||||
|
||||
# Misc
|
||||
/public
|
||||
|
||||
# Intellij
|
||||
/.idea
|
||||
|
||||
# Sass
|
||||
.sass-cache/
|
||||
*.css.map
|
||||
*.sass.map
|
||||
*.scss.map
|
||||
|
||||
# Visual Studio Code
|
||||
/.vscode
|
||||
.history
|
||||
0
.nojekyll
Normal file
10
_includes/docs.njk
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
layout: skeleton.njk
|
||||
---
|
||||
<main>
|
||||
<p>You are seeing the documentation for: <a href="{{ projectData.url }}">{{ projectData.fileSlug }}</a></p>
|
||||
<hr>
|
||||
<div>
|
||||
{{ content | safe }}
|
||||
</div>
|
||||
</main>
|
||||
|
|
@ -16,7 +16,30 @@ styles: ["project"]
|
|||
</div>
|
||||
<a id="downloadLink" href="{{ downloadLink }}"><button id="downloadButton">{% if downloadLink %}Download{% else %}Unavailable{% endif %}</button></a>
|
||||
</div>
|
||||
{% include "project_image.njk" %}
|
||||
{% if links or docs or images or releases %}
|
||||
<div id="projectImagesAndInfo">
|
||||
{% include "project_image.njk" %}
|
||||
<div id="projectInfo">
|
||||
<h2>Here's what we found:</h2>
|
||||
{% if links %}
|
||||
<p>{{ links | length }} links.</p>
|
||||
<ul>
|
||||
{% for label, addr in links %}
|
||||
<li><a href="{{ addr }}">{{ label }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% if docs %}
|
||||
<p>{{ docs | length }} documentaion files.</p>
|
||||
<ul>
|
||||
{% for label, addr in docs %}
|
||||
<li><a href="{{ addr }}">{{ label }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<main id="projectDescription">
|
||||
{% if content %}
|
||||
{{ content | safe }}
|
||||
|
|
|
|||
183
_site/allprojects/index.html
Normal file
|
|
@ -0,0 +1,183 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/search.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<ul style="display: flex; flex-direction: column; gap: 1em;">
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/aboukkit/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/aboukkit/">Aboukkit</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">A simple way to add custom commands with custom responses to your server.</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/ghostsandstuff/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/ghostsandstuff/">Ghosts 'n Stuff</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Miscellaneous additions to your Minecraft server.</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/tenkumalib/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/tenkumalib/">tenkuma's Library</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Library to support my other plugins. Does nothing on it's own.</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<a class="searchItemTitle" href="/projects/hangglidere/">HangGlideRE</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Fly with a chicken!</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/devilwithin/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/devilwithin/">The Devil Within</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Adds enchanting to Minecraft Beta. Supports balancing through curses.</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/timekeeper/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/timekeeper/">TimeKeeper</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Syncs real world time with your Minecraft server time.</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<img float="left" class="searchItemImage" src="/projects/tefreezer/logo.png">
|
||||
|
||||
<a class="searchItemTitle" href="/projects/tefreezer/">teFreezer</a>
|
||||
|
||||
by <a href="/authors/tenkuma">tenkuma</a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
<div class="tag-plugin">plugin</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="searchItem">
|
||||
<p>
|
||||
|
||||
<a class="searchItemTitle" href="/projects/ghostsandstuff/docs/example_documentation/"></a>
|
||||
|
||||
</p>
|
||||
<p class="searchItemDescription"></p>
|
||||
<div class="searchItemTagHolder">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</ul>
|
||||
|
||||
<nav>
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
_site/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
_site/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
_site/assets/MinecraftRegular-Bmg3.otf
Normal file
BIN
_site/assets/logo.png
Normal file
|
After Width: | Height: | Size: 828 B |
BIN
_site/assets/mod-placeholder.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
52
_site/assets/search.js
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
fetch('/search_index.json')
|
||||
.then(r => r.json())
|
||||
.then(data => {
|
||||
const idx = elasticlunr.Index.load(data);
|
||||
const docs = idx.documentStore.docs;
|
||||
const searchInput = document.getElementById('search');
|
||||
const out = document.getElementById('searchResults');
|
||||
const filterSelect = document.getElementById('searchMode');
|
||||
|
||||
function runSearch(q, tags = 'all') {
|
||||
let result = idx.search(q, { expand: true }).map(r => docs[r.ref] )
|
||||
if (tags === 'all') {
|
||||
return result;
|
||||
}
|
||||
|
||||
result = result.filter(d => tags === 'all' || d.tags.includes(tags));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function render(doc) {
|
||||
console.log(doc.imageq)
|
||||
let tagsHTML = "";
|
||||
console.log(doc.tags)
|
||||
|
||||
doc.tags.forEach(tag => {
|
||||
tagsHTML += `<div class="tag-${tag}">${tag}</div>`
|
||||
});
|
||||
|
||||
return `<div class="searchItem">
|
||||
<p>${doc.image ? `<img float=left class="searchItemImage" src="${doc.image}">` : ''} <a class="searchItemTitle" href="${doc.url}">${doc.title}</a>${doc.author ? ` by <a href="/authors/${doc.author}">${doc.author}</a>` : ''}</p>
|
||||
<p class="searchItemDescription">${doc.subtitle}</p>
|
||||
<div class="searchItemTagHolder">
|
||||
${tagsHTML}
|
||||
</div>
|
||||
</div>`;
|
||||
}
|
||||
|
||||
function update() {
|
||||
const q = searchInput.value.trim();
|
||||
if (!q) {
|
||||
out.innerHTML = '';
|
||||
return;
|
||||
}
|
||||
|
||||
const results = runSearch(q, filterSelect.value);
|
||||
out.innerHTML = results.map(render).join('');
|
||||
}
|
||||
|
||||
searchInput.addEventListener('input', update);
|
||||
filterSelect.addEventListener('change', update);
|
||||
});
|
||||
28
_site/assets/stylesheets/home.css
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#homeUpdates {
|
||||
background-color: var(--accent-secondary);
|
||||
border: thick solid var(--accent-color);
|
||||
width: 50%;
|
||||
margin: 0px 2em 2em 2em;
|
||||
padding: 1em;
|
||||
height: fit-content;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#featureAndUpdates {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1280px) {
|
||||
#featureAndUpdates {
|
||||
flex-direction: column;
|
||||
gap: 1em;
|
||||
flex-flow: column-reverse;
|
||||
}
|
||||
|
||||
#homeUpdates {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
121
_site/assets/stylesheets/project.css
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
#projectTitle {
|
||||
font-size: xx-large;
|
||||
}
|
||||
|
||||
#projectTitleSubtitle {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
#projectTitleSubtitle h1 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#projectHeader {
|
||||
padding-top: 20px;
|
||||
gap: 20px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#project {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--box-gap);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#downloadLink {
|
||||
color: gray;
|
||||
height: fit-content;
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
/* text-shadow: 2px 2px black; */
|
||||
}
|
||||
|
||||
#downloadButton:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#projectHeader img {
|
||||
outline: 2px solid gray;
|
||||
height: 5em;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
#projectTitleAuthor {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#projectAuthor {
|
||||
margin-left: .6em;
|
||||
margin-top: auto;
|
||||
/* margin-bottom: .4em; */
|
||||
}
|
||||
|
||||
#projectImageCarrousel {
|
||||
outline: 2px solid gray;
|
||||
padding: 1rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#projectCarrouselImageHolder {
|
||||
height: 100%;
|
||||
gap: 1em;
|
||||
overflow: auto;
|
||||
scroll-margin-left: 10px;
|
||||
overflow-x: scroll;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.projectImage {
|
||||
transition: .4s;
|
||||
height: 95%;
|
||||
max-width: 10em;
|
||||
object-fit: cover;
|
||||
/* filter: grayscale(); */
|
||||
}
|
||||
|
||||
/* .projectImage:hover {
|
||||
filter: none;
|
||||
opacity: .8;
|
||||
max-width: 100%;
|
||||
object-fit: unset;
|
||||
} */
|
||||
|
||||
#projectImagesAndInfo {
|
||||
display: flex;
|
||||
gap: 2em;
|
||||
height: 12em;
|
||||
}
|
||||
|
||||
#projectInfo {
|
||||
outline: 2px solid var(--accent-color);
|
||||
background-color: var(--accent-background);
|
||||
flex-grow: 1;
|
||||
padding: 1em;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1280px) {
|
||||
#projectImagesAndInfo {
|
||||
flex-direction: column;
|
||||
flex-grow: unset;
|
||||
}
|
||||
|
||||
#projectImagesAndInfo {
|
||||
height: unset;
|
||||
}
|
||||
|
||||
#projectInfo {
|
||||
height: 13em;
|
||||
}
|
||||
|
||||
#projectImageCarrousel {
|
||||
height: 13em;
|
||||
width: unset;
|
||||
}
|
||||
}
|
||||
18
_site/assets/stylesheets/search.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.searchItemImage {
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
.searchItemTagHolder {
|
||||
display: flex;
|
||||
padding-top: .2em;
|
||||
gap: .4em;
|
||||
}
|
||||
|
||||
.searchItemTagHolder div {
|
||||
border: thin solid greenyellow;
|
||||
padding: .1em .2em .1em .2em;
|
||||
}
|
||||
|
||||
.searchItemDescription {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
272
_site/assets/stylesheets/styles.css
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
:root {
|
||||
--text-color: white;
|
||||
--accent-color: greenyellow;
|
||||
--accent-secondary: green;
|
||||
--box-gap: 2rem;
|
||||
--accent-background: rgb(0, 30, 0);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
scrollbar-color: var(--accent-color) var(--accent-background);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: Minecraft;
|
||||
src: url("/assets/MinecraftRegular-Bmg3.otf") format("opentype");
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Minecraft, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background-color: black;
|
||||
color:white;
|
||||
font-size : clamp(1.2rem, .2vw, 2rem);
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
aside {
|
||||
width: min-content;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
main {
|
||||
outline: 2px solid gray;
|
||||
padding: 1em;
|
||||
background-color: black;
|
||||
height: fit-content;
|
||||
border-radius: 0 0 4px 4px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* main:last-child {
|
||||
margin-bottom: 0px;
|
||||
padding-bottom: 0px;
|
||||
} */
|
||||
|
||||
button {
|
||||
padding: 10px;
|
||||
border: medium solid var(--accent-color);
|
||||
background: linear-gradient(var(--accent-color), var(--accent-secondary));
|
||||
border-radius: 2px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: darkslategray;
|
||||
color: var(--accent-color);
|
||||
padding-left: .2em;
|
||||
padding-right: .2em;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
border-radius: 2px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
input, select {
|
||||
padding: .4em;
|
||||
background-color: black;
|
||||
color: white;
|
||||
border: medium solid var(--accent-color);
|
||||
}
|
||||
|
||||
p, ul {
|
||||
padding-bottom: .6em;
|
||||
}
|
||||
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#linksBox {
|
||||
padding: 2em;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
background-color: black;
|
||||
outline: 2px solid var(--accent-color);
|
||||
border-radius: 0 0 4px 4px;
|
||||
height: fit-content;
|
||||
gap: 1em;
|
||||
background-color: rgb(0, 30, 0);
|
||||
}
|
||||
|
||||
#headerLinks a {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
padding: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#everythingHelper {
|
||||
max-width: 80%;
|
||||
margin: auto;
|
||||
transform: .2s;
|
||||
display: flex;
|
||||
gap: var(--box-gap);
|
||||
}
|
||||
|
||||
#headerLinks {
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#headerLinksAndTitle {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
#logoTitle {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: .5em;
|
||||
}
|
||||
|
||||
#title {
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#logo {
|
||||
height: 8em;
|
||||
}
|
||||
|
||||
#featured {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#featuredHelper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
||||
.featuredProject {
|
||||
gap: 1em;
|
||||
display: flex;
|
||||
transition: .2s;
|
||||
font-size: smaller;
|
||||
padding: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.featuredProjectName {
|
||||
margin-top: auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.featuredProjectSubtitle {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical
|
||||
}
|
||||
|
||||
.featuredProjectSubtitle {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.featuredProject img {
|
||||
height: 5em;
|
||||
border: medium solid var(--accent-color);
|
||||
}
|
||||
|
||||
.featuredProject p {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
text-overflow:clip;
|
||||
}
|
||||
|
||||
#featured h2 {
|
||||
font-size: medium;
|
||||
font-weight: 100;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#featuredHelper {
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
li {
|
||||
margin-left: 20px;
|
||||
list-style-type: "> ";
|
||||
margin-bottom: .4em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
margin-bottom: .4em;
|
||||
}
|
||||
|
||||
.errorQuote {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
.dimText {
|
||||
opacity: .6;
|
||||
}
|
||||
|
||||
.rainbowText {
|
||||
background: linear-gradient(to right, var(--text-color), var(--accent-color), var(--accent-secondary));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
animation: rainbow_animation 6s ease-in-out infinite;
|
||||
background-size: 400% 100%;
|
||||
}
|
||||
|
||||
@keyframes rainbow_animation {
|
||||
0%,100% {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-position: 100% 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1280px) {
|
||||
#everythingHelper {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
aside {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#projectTitle {
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
#headerLinksAndTitle {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#headerLinks {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 300px) {
|
||||
|
||||
}
|
||||
63
_site/authors/tenkuma/index.html
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>tenkuma - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
<img src="logo.png">
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">tenkuma</h1>
|
||||
</div>
|
||||
<p id="projectSubtitle">A bear doing things on the internet.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="projectImageCarrousel">
|
||||
<p>Images</p>
|
||||
<div id="projectCarrouselImageHolder">
|
||||
|
||||
<a href="tenkuma-silverfish.jpg"><img class="projectImage" src="tenkuma-silverfish.jpg" alt=""></a>
|
||||
|
||||
<a href="tenkuma-mrnando-enderdragon.jpg"><img class="projectImage" src="tenkuma-mrnando-enderdragon.jpg" alt=""></a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
<p>I'm tenkuma. A bear, dreamer and sometimes developer.</p>
|
||||
<p>You can find more about me on <a href="https://adrianvictor.rf.gd">my website</a>.</p>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/authors/tenkuma/logo.png
Normal file
|
After Width: | Height: | Size: 534 B |
BIN
_site/authors/tenkuma/tenkuma-mrnando-enderdragon.jpg
Normal file
|
After Width: | Height: | Size: 560 KiB |
BIN
_site/authors/tenkuma/tenkuma-silverfish.jpg
Normal file
|
After Width: | Height: | Size: 377 KiB |
76
_site/contribute/index.html
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<h2>How can I get my project here?</h2>
|
||||
<p>neoBeta is an open-source content management system. There are various ways you can put your plugin/mod on our catalog:</p>
|
||||
<ul>
|
||||
<li>Clone <a href="https://github.com/adrianvic/neoBeta">neoBeta's repository</a>, create your project folder inside the /projects directory with the necessary metadata (index.md for project description, index.json for metadata and any other file your project may depend on) and make a pull request. Less manual work on our side, so review should be quickier.</li>
|
||||
<li>Open an issue on our GitHub repository with the project information. This may take longer as a contributor will have to spend time creating the project files, but is useful if you're not confortable using Git.</li>
|
||||
<li>Host your own instance of neoBeta.</li>
|
||||
</ul>
|
||||
<h3>Required metadata fields</h3>
|
||||
<ul>
|
||||
<li><em>name</em> - project name.<br>
|
||||
<code>"name": "Ghosts 'n Stuff"</code></li>
|
||||
<li><em>subtitle</em> - project's brief description.<br>
|
||||
<code>"subtitle": "Miscellaneous additions to your server."</code></li>
|
||||
<li><em>author</em> - your author name, must be consistent across all your submissions.<br>
|
||||
<code>"author": "tenkuma"</code></li>
|
||||
<li><em>tags</em> - whether your project is a plugin or mod.<br>
|
||||
<code>"tags": ["plugin", "mod"]</code></li>
|
||||
</ul>
|
||||
<h3>Optional metadata fields</h3>
|
||||
<p>Please fill as many fields as possible.</p>
|
||||
<ul>
|
||||
<li><em>downloadLink</em> - link for when you click the download link.<br>
|
||||
<code>"downloadLink": "https://example.com"</code></li>
|
||||
<li><em>images</em> - lists of image files names or URLs that will appear in the project page.<br>
|
||||
<code>"images": "["image1.png", "image2.png", "image3.png"]"</code></li>
|
||||
<li><em>logo</em> - your logo file name or URL.<br>
|
||||
<code>"logo": "logo.png"</code></li>
|
||||
</ul>
|
||||
<h3>Config file example</h3>
|
||||
<pre><code>{
|
||||
"name": "Ghosts 'n Stuff",
|
||||
"subtitle": "Miscellaneous additions to your server.",
|
||||
"author": "tenkuma",
|
||||
"downloadLink": "https://example.com",
|
||||
"images": "["image1.png", "image2.png", "image3.png"]",
|
||||
"logo": "logo.png",
|
||||
"tags": ["plugin", "mod"]
|
||||
}
|
||||
</code></pre>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
_site/error/404/index.html
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<h2>404 - Ouch! We hit a wall.</h2>
|
||||
<p>We didn't find what you are looking for...</p>
|
||||
|
||||
<p class="errorQuote"><i>"If only the clockworks could speak<br>I wouldn't be so alone"</i></p>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 721 B |
BIN
_site/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
_site/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
270
_site/index.html
Normal file
|
|
@ -0,0 +1,270 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/home.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>Howdy, traveler.</h1>
|
||||
<p>This website is <b class="rainbowText">the place</b> for Minecraft plugins, made with users and developers in mind. neobeta is open-source, you can find out how the website is made in our <a href="https://github.com/adrianvic/neoBeta">GitHub repository</a> <span class="dimText">(spoiler: there's some real magic going on).</span></p>
|
||||
<p>Our catalog is made by developers and community, you can get involved by following the tutorial linked <a href="/contribute">here</a>.</p>
|
||||
<div id="featureAndUpdates">
|
||||
<div>
|
||||
<h2>Featured projects</h2>
|
||||
|
||||
<div id="featured">
|
||||
<div id="featuredHelper">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/ghostsandstuff">
|
||||
<img src="/projects/ghostsandstuff/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">Ghosts 'n Stuff</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Miscellaneous additions to your Minecraft server.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/aboukkit">
|
||||
<img src="/projects/aboukkit/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">Aboukkit</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">A simple way to add custom commands with custom responses to your server.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/tenkumalib">
|
||||
<img src="/projects/tenkumalib/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">tenkuma's Library</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Library to support my other plugins. Does nothing on it's own.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/hangglidere">
|
||||
<img src="/assets/mod-placeholder.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">HangGlideRE</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Fly with a chicken!</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/devilwithin">
|
||||
<img src="/projects/devilwithin/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">The Devil Within</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Adds enchanting to Minecraft Beta. Supports balancing through curses.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/timekeeper">
|
||||
<img src="/projects/timekeeper/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">TimeKeeper</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Syncs real world time with your Minecraft server time.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="featuredProject">
|
||||
<a href="/projects/tefreezer">
|
||||
<img src="/projects/tefreezer/logo.png">
|
||||
</a>
|
||||
<div>
|
||||
<p class="featuredProjectName">teFreezer</p>
|
||||
<p class="featuredProjectSubtitle">by <a href="/authors/tenkuma/">tenkuma</a></p>
|
||||
<div class="featuredProjectSubtitle dimText">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div id="homeUpdates">
|
||||
<h2>Latest updates</h2>
|
||||
<p>2025-10-27: Website redesign!<br>Yaaay! neoBeta got a stylish redesign.</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
71
_site/projects/aboukkit/index.html
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Aboukkit - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">Aboukkit</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">A simple way to add custom commands with custom responses to your server.</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/aboukkit/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p><img src="https://cdn.modrinth.com/data/cached_images/94b1f813f8e15f82dddcffa5284c92e59cb93b27.png" alt="Aboukkit logo, abboukit written in a Minecraft's logo like font painted in red."></p>
|
||||
<p>This plugin adds a simple way to add custom commands that will respond users with predefined messages from <code>config.yml</code>. It supports Minecraft's color coding (use & instead of §) <s>and placeholders for player/server info</s> (TODO).</p>
|
||||
<h2>Default Commands</h2>
|
||||
<ul>
|
||||
<li>About</li>
|
||||
<li>Aboukkit</li>
|
||||
</ul>
|
||||
<p>These default commands need to be configured.</p>
|
||||
<h2>Adding new commands</h2>
|
||||
<p>First of all: run the server with the plugin for the first time, so <code>config.yml</code> is generated.</p>
|
||||
<p>Follow the structure that the template shows in your <code>config.yml</code>. Then use a file explorer to open the plugin's JAR file and edit plugin.yml, you can copy a command entry and fill all the fields (be careful with indentation, YML does not support TAB).</p>
|
||||
<h2>Why?</h2>
|
||||
<p>I made this plugin because I have a server for version b1.7.3 and I wanted to add a /about command to give credit to the server founders and link to our website. So I made this that I will use every time I need a simple 'wall of text' command.</p>
|
||||
<h2>Newer versions</h2>
|
||||
<p>I don't see why I would build this for latest versions, I guess there are already better solutions. I made this just because of the lack of plugins for Minecraft beta.</p>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/aboukkit/logo.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
84
_site/projects/devilwithin/index.html
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Devil Within - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">The Devil Within</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Adds enchanting to Minecraft Beta. Supports balancing through curses.</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/devilwithin/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p>This plugin is a remake of <a href="https://dev.bukkit.org/projects/goldenchant/">GoldEnchant</a>.
|
||||
This plugin depends on <a href="https://modrinth.com/plugin/tenkumalib">tenkumaLib</a>.</p>
|
||||
<p>Have you ever wanted to have enchantments in your beta server? This is the plugin you want.</p>
|
||||
<h2>Enchanting</h2>
|
||||
<p>To enchant a armor piece you need to interact to a diamond block with a diamond armor piece in your hand.</p>
|
||||
<h2>Enchantments and Curses</h2>
|
||||
<p>All of those enchantments will not take effect if the damage exceeds the player's HP. An armor get cursed if it's durability is below 30%. Spooky bad stuff will happen if your armor is cursed :D</p>
|
||||
<h3>Helmet</h3>
|
||||
<ul>
|
||||
<li>Prevents the player from drowning.</li>
|
||||
<li>The player cannot sleep. If the player try to sleep a entity will tell the player the text set in the config.</li>
|
||||
</ul>
|
||||
<h3>Chestplate</h3>
|
||||
<ul>
|
||||
<li>Prevents fire damage. Does not prevent lava damage.</li>
|
||||
<li>Protects the player from fire damage only half of the time, also has a 25% chance to ignite the player every time it takes damage.</li>
|
||||
</ul>
|
||||
<h3>Leggings</h3>
|
||||
<ul>
|
||||
<li>Nothing for now. Only useful for the full-set perks.</li>
|
||||
<li>Makes player run slower 50% of the time a PlayerMoveEvent happens. The speed is randomly generated.</li>
|
||||
</ul>
|
||||
<h3>Boots</h3>
|
||||
<p>Prevents fall damage.</p>
|
||||
<h3>Full-set perks</h3>
|
||||
<p>If the player has a full-set of enchanted armor the condition of the damage being taken if it's greater than the player's HP is ignored, also the player gets immune to contact damage (cactus), lava damage and lava damage.</p>
|
||||
<h2>Config</h2>
|
||||
<p>Everything is explained in the config file's comments, in case it changes.</p>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/devilwithin/logo.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
_site/projects/ghostsandstuff/anti-spam.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<p>You are seeing the documentation for: <a href=""></a></p>
|
||||
<hr>
|
||||
<div>
|
||||
<h2>Installation instructions for GhostsAndStuff</h2>
|
||||
<ul>
|
||||
<li>Download the plugin JAR</li>
|
||||
<li>Download the dependency JAR (tenkumaLib)</li>
|
||||
<li>Move both to your server's <code>plugin</code> folder.</li>
|
||||
</ul>
|
||||
<p>After following these steps the plugin should appear in the plugin list when you turn the server on.</p>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
101
_site/projects/ghostsandstuff/index.html
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ghosts 'n Stuff - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">Ghosts 'n Stuff</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Miscellaneous additions to your Minecraft server.</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/ghosts/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<div id="projectImagesAndInfo">
|
||||
|
||||
<div id="projectImageCarrousel">
|
||||
<p>Images</p>
|
||||
<div id="projectCarrouselImageHolder">
|
||||
|
||||
<a href="anti-spam.png"><img class="projectImage" src="anti-spam.png" alt=""></a>
|
||||
|
||||
<a href="rainbow-chat.png"><img class="projectImage" src="rainbow-chat.png" alt=""></a>
|
||||
|
||||
<a href="skibidi-blocker.png"><img class="projectImage" src="skibidi-blocker.png" alt=""></a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="projectInfo">
|
||||
<h2>Here's what we found:</h2>
|
||||
|
||||
<p>2 links.</p>
|
||||
<ul>
|
||||
|
||||
<li><a href="https://github.com/adrianvic/ghostsandstuff">GitHub</a></li>
|
||||
|
||||
<li><a href="https://git.disroot.org/adrianvictor/ghostsandstuff">Disroot Git</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<p>1 documentaion files.</p>
|
||||
<ul>
|
||||
|
||||
<li><a href="docs/example_documentation">Installation</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p>This plugins was made to use stuff from my library that would not fit into any plugin (or not in the way presented here) that has <s>a lot</s> (WIP) of random stuff. Everything should be togglable in the config.</p>
|
||||
<h2>Features</h2>
|
||||
<ul>
|
||||
<li><strong>RainbowChat:</strong> Rainbow color code (&z by default).</li>
|
||||
<li><strong>SkibidiBlocker:</strong> Strike a lightning on players that say a word.</li>
|
||||
<li><strong>AntiSpam:</strong> Blocks repeated words in the chat. Optionally can strike a lightning to the player who is spamming.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/ghostsandstuff/logo.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
_site/projects/ghostsandstuff/rainbow-chat.png
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
_site/projects/ghostsandstuff/skibidi-blocker.png
Normal file
|
After Width: | Height: | Size: 305 KiB |
56
_site/projects/hangglidere/index.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>HangGlideRE - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">HangGlideRE</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Fly with a chicken!</p>
|
||||
</div>
|
||||
<a id="downloadLink" href=""><button id="downloadButton">Unavailable</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<h2>Oopsie! :<</h2>
|
||||
<p>Seems like we don't have a description for this project.</p>
|
||||
<p class="errorQuote"><i>"If only the clockworks could speak<br>I wouldn't be so alone"</i></p>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
69
_site/projects/tefreezer/index.html
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>teFreezer - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">teFreezer</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Force your players to refrigerate their food by rotting food in unrefrigerated chests!</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/freezer/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p><img src="https://cdn.modrinth.com/data/cached_images/0aaabfb51609876ece6de83e62b9641a4635fad9_0.webp" alt="Tefreezer written in Minecraft-like font in purple."></p>
|
||||
<p>teFreezer is a fork of <a href="https://dev.bukkit.org/projects/freezer">Freezer by outadoc</a>, logo by <a href="https://github.com/malcolmriley/unused-textures/blob/master/items/food_pepper.png">malcolmriley</a>.</p>
|
||||
<p>This plugins purpose is to force people in your server to refrigerate their food by placing a cold block around their chest with the food. In case there is no cold block around the chest, it will turn the food into a rotted item.</p>
|
||||
<h2>Configuration</h2>
|
||||
<p>In the <code>config.yml</code> you can set these values:</p>
|
||||
<ul>
|
||||
<li>Cold blocks</li>
|
||||
<li>Resulting itens</li>
|
||||
<li>Itens that can rot</li>
|
||||
<li>Message for when the user let food rot</li>
|
||||
</ul>
|
||||
<h2>Why fork?</h2>
|
||||
<p>I have forked this plugin because I was really anoyed by the original plugin that broadcasts the message to the whole server once anyone let food rot and the lack of a configuration file.</p>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/tefreezer/logo.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
59
_site/projects/tenkumalib/index.html
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>tenkuma's Library - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">tenkuma's Library</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Library to support my other plugins. Does nothing on it's own.</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/tenkumalib/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p>This is a dependency for my other projects. This does not do anything on it's own.</p>
|
||||
<h2>Why do I have to install this alongside your plugins?</h2>
|
||||
<p>You may think that installing two plugins instead of one is installing unecessary bloat that is useless. But it's not, libraries hold code that is common to more than one project, so you avoid having the same code repeated twice or more in your server. Also it's easier for the developer that has to improve only a single codebase to improve all the rest of the dependants.</p>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/tenkumalib/logo.png
Normal file
|
After Width: | Height: | Size: 534 B |
66
_site/projects/timekeeper/index.html
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/project.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>TimeKeeper - neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<div id="project">
|
||||
<div id="projectHeader">
|
||||
|
||||
<img src="logo.png">
|
||||
|
||||
<div id="projectTitleSubtitle">
|
||||
<div id="projectTitleAuthor">
|
||||
<h1 id="projectTitle">TimeKeeper</h1>
|
||||
<p id="projectAuthor">by <a href="/authors/tenkuma">tenkuma</a></p>
|
||||
</div>
|
||||
<p id="projectSubtitle">Syncs real world time with your Minecraft server time.</p>
|
||||
</div>
|
||||
<a id="downloadLink" href="https://modrinth.com/plugin/timekeeper/versions"><button id="downloadButton">Download</button></a>
|
||||
</div>
|
||||
|
||||
<main id="projectDescription">
|
||||
|
||||
<p>This is a plugin for Minecraft beta that syncs the real world time with your in-game time. Logo by <a href="https://github.com/malcolmriley/unused-textures/blob/master/items/">malcolmriley</a>.</p>
|
||||
<h2>How it works</h2>
|
||||
<p>It will calculate and change the game time every second (that's 20 ticks and can be changed in the config), it will use your computer's timezone as default if the config <code>timezone</code> value does not exist.</p>
|
||||
<h2>Performance</h2>
|
||||
<p>I am not sure if this plugin has any significant performance hit, it runs code every few ticks (you can in/decrease the frequency in the config) and that is not the best approach for doing this, but it's the only that works in beta. Using it with <code>ticksBetweenUpdate: 1</code> does not seem to change the performance in any way. The specifications for the computer used for the tests:</p>
|
||||
<pre><code>Host: 83AF IdeaPad 1 14IAU7
|
||||
CPU: 12th Gen Intel i5-1235U (12) @ 1.300GHz
|
||||
GPU: Intel Alder Lake-UP3 GT2 [Iris Xe Graphics]
|
||||
Memory: 10097MiB / 15709MiB
|
||||
</code></pre>
|
||||
|
||||
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
_site/projects/timekeeper/logo.png
Normal file
|
After Width: | Height: | Size: 730 B |
61
_site/search/index.html
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="/assets/stylesheets/styles.css" media="screen">
|
||||
|
||||
<link rel="stylesheet" href="/assets/stylesheets/search.css">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>neoBeta</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="everythingHelper">
|
||||
<aside>
|
||||
<header>
|
||||
<div id="linksBox">
|
||||
<div id="headerLinksAndTitle">
|
||||
<div id="logoTitle">
|
||||
<img src="/assets/logo.png" id="logo">
|
||||
<h1 id="title" class="rainbowText">neoBeta</h1>
|
||||
</div>
|
||||
<ul id="headerLinks">
|
||||
<li><a href="/">home</a></li>
|
||||
<li><a href="/search">search</a></li>
|
||||
<li><a href="/allprojects">index</a></li>
|
||||
<li><a href="/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>
|
||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/elasticlunr/0.9.6/elasticlunr.min.js"></script>
|
||||
<script src="/assets/search.js" defer></script>
|
||||
|
||||
<style>
|
||||
main {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1em;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Welcome to neoBeta's search, here you can search through our whole database of plugins, mods and authors. You may want to filter out the results using the dropdown menu below. The search is done on your device using <a href="https://github.com/weixsong/elasticlunr.js">elasticlunr</a>.</p>
|
||||
|
||||
<div style="display: flex; gap: .5em;">
|
||||
<input type="text" id="search" placeholder="Search..." style="flex-grow: 1;"/>
|
||||
<select name="Search mode" id="searchMode">
|
||||
<option value="all" selected>All</option>
|
||||
<option value="plugin">Plugins</option>
|
||||
<option value="mod">Mods</option>
|
||||
<option value="author">Authors</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id="searchResults" style="display: flex; gap: 1em; flex-direction: column;"></div>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
_site/search_index.json
Normal file
1
_site/site.webmanifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||
|
|
@ -57,9 +57,9 @@
|
|||
#projectImageCarrousel {
|
||||
outline: 2px solid gray;
|
||||
padding: 1rem;
|
||||
height: 12em;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
#projectCarrouselImageHolder {
|
||||
|
|
@ -79,9 +79,43 @@
|
|||
/* filter: grayscale(); */
|
||||
}
|
||||
|
||||
.projectImage:hover {
|
||||
/* .projectImage:hover {
|
||||
filter: none;
|
||||
opacity: .8;
|
||||
max-width: 100%;
|
||||
/* object-fit: unset; */
|
||||
object-fit: unset;
|
||||
} */
|
||||
|
||||
#projectImagesAndInfo {
|
||||
display: flex;
|
||||
gap: 2em;
|
||||
height: 12em;
|
||||
}
|
||||
|
||||
#projectInfo {
|
||||
outline: 2px solid var(--accent-color);
|
||||
background-color: var(--accent-background);
|
||||
flex-grow: 1;
|
||||
padding: 1em;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1280px) {
|
||||
#projectImagesAndInfo {
|
||||
flex-direction: column;
|
||||
flex-grow: unset;
|
||||
}
|
||||
|
||||
#projectImagesAndInfo {
|
||||
height: unset;
|
||||
}
|
||||
|
||||
#projectInfo {
|
||||
height: 13em;
|
||||
}
|
||||
|
||||
#projectImageCarrousel {
|
||||
height: 13em;
|
||||
width: unset;
|
||||
}
|
||||
}
|
||||
|
|
@ -10,6 +10,7 @@
|
|||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
scrollbar-color: var(--accent-color) var(--accent-background);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
|
@ -31,6 +32,7 @@ header {
|
|||
|
||||
aside {
|
||||
width: min-content;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
@ -44,6 +46,7 @@ main {
|
|||
background-color: black;
|
||||
height: fit-content;
|
||||
border-radius: 0 0 4px 4px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* main:last-child {
|
||||
|
|
@ -84,6 +87,10 @@ img {
|
|||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#linksBox {
|
||||
padding: 2em;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import elasticlunr from 'elasticlunr';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
|
||||
let allPlugins = [];
|
||||
|
||||
|
|
@ -12,11 +13,31 @@ export default function (eleventyConfig) {
|
|||
eleventyConfig.addPassthroughCopy("authors/**/*.jpeg");
|
||||
eleventyConfig.addPassthroughCopy("assets");
|
||||
eleventyConfig.addPassthroughCopy({ "favicon/*" : "/" });
|
||||
|
||||
|
||||
eleventyConfig.addCollection("projects", function(collection) {
|
||||
return collection.getFilteredByGlob("./projects/**/*.md");
|
||||
});
|
||||
|
||||
|
||||
eleventyConfig.addGlobalData("eleventyComputed", {
|
||||
projectData: (data) => {
|
||||
const inputPath = data.page.inputPath;
|
||||
if (!inputPath.match(/\/projects\/[^\/]+\/docs\//)) return null;
|
||||
|
||||
const projectDir = path.dirname(path.dirname(inputPath));
|
||||
const projectJson = path.join(projectDir, "index.json");
|
||||
|
||||
if (fs.existsSync(projectJson)) {
|
||||
return JSON.parse(fs.readFileSync(projectJson, "utf-8"));
|
||||
}
|
||||
return { name: path.basename(projectDir) };
|
||||
},
|
||||
|
||||
layout: (data) => {
|
||||
const inputPath = data.page.inputPath;
|
||||
if (inputPath.match(/\/projects\/[^\/]+\/docs\//)) return "docs.njk";
|
||||
return data.layout;
|
||||
}
|
||||
});
|
||||
|
||||
eleventyConfig.addCollection('searchIndex', (collectionApi) => {
|
||||
const result = collectionApi.getAll().map(item => {
|
||||
|
|
|
|||
1574
package-lock.json
generated
14
package.json
|
|
@ -6,7 +6,16 @@
|
|||
"type": "module",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"serve": "npx @11ty/eleventy --serve"
|
||||
"serve": "npx @11ty/eleventy --serve",
|
||||
"watch:sass": "sass src/static/scss:public/static/css --watch",
|
||||
"build:sass": "sass src/static/scss:public/static/css",
|
||||
"watch:eleventy": "eleventy --serve",
|
||||
"build:eleventy": "ELEVENTY_ENV=development eleventy",
|
||||
"start": "npm run watch:eleventy & npm run watch:sass",
|
||||
"build": "npm run build:eleventy & npm run build:sass",
|
||||
"build:sass:prod": "sass src/static/scss:public/static/css --style compressed",
|
||||
"build:eleventy:prod": "ELEVENTY_ENV=production eleventy",
|
||||
"build:prod": "npm run build:eleventy:prod & npm run build:sass:prod"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
@ -20,6 +29,7 @@
|
|||
"homepage": "https://github.com/adrianvic/neoBeta#readme",
|
||||
"dependencies": {
|
||||
"@11ty/eleventy": "^3.1.2",
|
||||
"elasticlunr": "^0.9.5"
|
||||
"elasticlunr": "^0.9.5",
|
||||
"sass": "1.93.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
6
projects/ghostsandstuff/docs/example_documentation.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
## Installation instructions for GhostsAndStuff
|
||||
- Download the plugin JAR
|
||||
- Download the dependency JAR (tenkumaLib)
|
||||
- Move both to your server's `plugin` folder.
|
||||
|
||||
After following these steps the plugin should appear in the plugin list when you turn the server on.
|
||||
|
|
@ -5,5 +5,12 @@
|
|||
"downloadLink": "https://modrinth.com/plugin/ghosts/versions",
|
||||
"images": ["anti-spam.png", "rainbow-chat.png", "skibidi-blocker.png"],
|
||||
"logo": "logo.png",
|
||||
"tags": ["plugin"]
|
||||
"tags": ["plugin"],
|
||||
"links": {
|
||||
"GitHub": "https://github.com/adrianvic/ghostsandstuff",
|
||||
"Disroot Git": "https://git.disroot.org/adrianvictor/ghostsandstuff"
|
||||
},
|
||||
"docs": {
|
||||
"Installation" : "docs/example_documentation"
|
||||
}
|
||||
}
|
||||