https://github.com/nodebb/nodebb-theme-community
The Persona-variant theme for the forum at https://community.nodebb.org
https://github.com/nodebb/nodebb-theme-community
Last synced: 2 months ago
JSON representation
The Persona-variant theme for the forum at https://community.nodebb.org
- Host: GitHub
- URL: https://github.com/nodebb/nodebb-theme-community
- Owner: NodeBB
- Created: 2021-12-04T19:49:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T21:26:43.000Z (about 1 year ago)
- Last Synced: 2024-04-14T11:52:04.538Z (about 1 year ago)
- Language: JavaScript
- Size: 343 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quickstart Theme for NodeBB
This repository contains all of the preparatory work for a theme based off of the [Persona theme](https://github.com/NodeBB/nodebb-theme-persona). If you'd like to base your theme off another supported theme instead, switch to the appropriate branch:
* [Lavender](https://github.com/NodeBB/nodebb-theme-lavender)
* [Vanilla](https://github.com/NodeBB/nodebb-theme-vanilla)
* [Material](https://github.com/pichalite/nodebb-theme-material)Fork it to create your own theme based off of it!
### Some things to change
* You should rename this theme from `quickstart` to something else. Change all instances of that word in the following files:
* `package.json`
* `plugin.json`
* `theme.json`### When you're done...
Be sure to add some other metadata to the `package.json`, like this:
``` json
"author": {
"name": "Your Name",
"email": "Your Email",
"url": "Your website"
},
"repository": {
"type": "git",
"url": "https://github.com/{your-username}/{your-repository}"
},
"bugs": {
"url": "https://github.com/{your-username}/{your-repository}/issues"
}
```Also, add a screenshot! Take a picture of your theme, and save it as "screenshot.png" in the root of your theme folder, then add this to `theme.json`:
``` json
"screenshot": "screenshot.png"
```### Credits
Material theme by [pichalite](https://github.com/pichalite).