Gallery & Team
Two sections that are similar to configure: the Gallery (screenshots) and the Team (staff members).
Gallery
The GALLERY section displays a set of screenshots via the gallery object.
js
gallery: {
title: "GALLERY",
elements: [
{ img: "image1.jpg" },
{ img: "image2.jpg" },
{ img: "image3.jpg" },
],
},| Field | Description |
|---|---|
title | Section title |
elements[].img | File name of the image, located in config/gallery_image/ |
IMPORTANT
Provide only the file name (image1.jpg), not the full path. The config/gallery_image/ folder is implicit.
Add an image
- Drop your image into
config/gallery_image/(formats.jpg,.jpeg,.png). - Add
{ img: "my_image.jpg" }to theelementsarray. - The
fxmanifest.luapatterns (config/gallery_image/*.jpg, etc.) already cover common formats.
Team
The TEAM section introduces your staff members via the team object.
js
team: {
title: "TEAM",
elements: [
{ img: "logo_josk.png", name: "DVR", grade: "Founder" },
{ img: "logo_josk.png", name: "Josk", grade: "Developer" },
{ img: "logo_josk.png", name: "dKS", grade: "Developer" },
],
},| Field | Description |
|---|---|
title | Section title |
elements[].img | File name of the photo, in config/team_logos/ |
elements[].name | Member name / username |
elements[].grade | Role or position (e.g. Founder, Developer, Moderator) |
TIP
Avoid spaces in avatar file names (logo_josk.png, not logo josk.png).
Add a member
- Drop the profile photo into
config/team_logos/. - Add a
{ img, name, grade }object to theelementsarray.