Added favicon.

This commit is contained in:
天クマ 2025-10-26 18:29:26 -03:00
commit 3f5d90b8ae
14 changed files with 73 additions and 61 deletions

View file

@ -4,7 +4,7 @@ layout: "base.njk"
## How can I get my project here?
neoBeta is an open-source content management system. There are various ways you can put your plugin/mod on our catalog:
- Clone neoBeta's repository, 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.
- Clone [neoBeta's repository](https://github.com/adrianvic/neoBeta), 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.
- 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.
- Host your own instance of neoBeta.
@ -25,4 +25,17 @@ Please fill as many fields as possible.
- *images* - lists of image files names or URLs that will appear in the project page.
```"images": "["image1.png", "image2.png", "image3.png"]"```
- *logo* - your logo file name or URL.
```"logo": "logo.png"```
```"logo": "logo.png"```
### Config file example
```
{
"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"]
}
```