DOGFATHER UNIVERSE: erste lauffähige Website + Bewerbungs-Postfach + Hosting-Vorbereitung
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
/* =====================================================================
|
||||
data-modis.js — Modi-/Core-Team-Datenobjekt
|
||||
|
||||
Hierarchie (wichtig, bitte bei Änderungen respektieren):
|
||||
VanVan (rechte Hand, eigene Seite vanvan.html)
|
||||
> Diene (rechte Hand von VanVan)
|
||||
> Funny (Modi)
|
||||
> Miss (Modi + Cutterin)
|
||||
> Marina / Michi (Kommentare auf Clip-Accounts)
|
||||
|
||||
Feld "rank" steuert nur die Sortier-/Anzeigereihenfolge (1 = höchste
|
||||
Stufe). VanVan wird auf team-modis.html separat hervorgehoben UND hat
|
||||
eine eigene exklusive Seite (vanvan.html) — hier trotzdem gelistet,
|
||||
damit die Hierarchie an einer Stelle vollständig bleibt.
|
||||
|
||||
Felder: name, role, rank, photo, quote, social, page (optionale eigene
|
||||
Unterseite), status
|
||||
===================================================================== */
|
||||
|
||||
const MODIS = [
|
||||
{
|
||||
name: "VanVan",
|
||||
role: "Rechte Hand von Dogfather · Musik-Produzentin (Van-Van, Spotify)",
|
||||
rank: 1,
|
||||
photo: "",
|
||||
quote: "", // TODO: Zitat von VanVan einholen
|
||||
social: {},
|
||||
page: "vanvan.html",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Diene",
|
||||
role: "Organisiert & plant gemeinsam mit VanVan",
|
||||
rank: 2,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Funny",
|
||||
role: "Modi",
|
||||
rank: 3,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Miss",
|
||||
role: "Modi & Cutterin",
|
||||
rank: 4,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Marina",
|
||||
role: "Kommentare auf den Clip-Accounts",
|
||||
rank: 5,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Michi",
|
||||
role: "Kommentare auf den Clip-Accounts",
|
||||
rank: 5,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
{
|
||||
name: "Dan",
|
||||
role: "Team Dogi — Rolle noch zu klären", // TODO: genaue Rolle von Dan im Team klären
|
||||
rank: 6,
|
||||
photo: "",
|
||||
quote: "",
|
||||
social: {},
|
||||
page: "",
|
||||
status: "aktiv",
|
||||
},
|
||||
// TODO: weitere Modis/Team-Mitglieder hier nach gleichem Muster ergänzen.
|
||||
];
|
||||
|
||||
if (typeof window !== "undefined") window.MODIS = MODIS;
|
||||
Reference in New Issue
Block a user