Skip to content

Commit 9d802b3

Browse files
committed
feat(templates): reset template list
1 parent e9aca02 commit 9d802b3

File tree

9 files changed

+47
-5
lines changed

9 files changed

+47
-5
lines changed

config/citd.template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Good luck and most important of all : have fun ! 🥳
2121
⚠️ Beware of file extensions !
2222
⚠️ All images have straight borders, no radius !
2323
24-
logo-zenika.jpeg (w 350 x h 107)
25-
logo-indy.jpeg (w 200 x h 102)
24+
./templates/citd/logo-zenika.jpeg (w 350 x h 107)
25+
./templates/citd/logo-indy.jpeg (w 200 x h 102)
2626
2727
--- Font ---
2828

config/city.template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Good luck and most important of all : have fun ! 🥳
2121
⚠️ Beware of file extensions !
2222
⚠️ All images have straight borders, no radius !
2323
24-
img-bellecour.jpeg (w 412 x h 597)
24+
./templates/city/img-bellecour.jpeg (w 412 x h 597)
2525
2626
--- Font ---
2727

config/mode.template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Good luck and most important of all : have fun ! 🥳
2121
⚠️ Beware of file extensions !
2222
⚠️ All images have straight borders, no radius !
2323
24-
img-woman.jpeg (w 900 x h 1350)
25-
img-keyboard.jpeg (w 800 x h 367)
24+
./templates/mode/img-woman.jpeg (w 900 x h 1350)
25+
./templates/mode/img-keyboard.jpeg (w 800 x h 367)
2626
2727
--- Font ---
2828

config/templates.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
import {DFDSTemplate} from "./dfds.template";
2+
import {TenderTemplate} from "./tender.template";
3+
import {FestivalTemplate} from "./festival.template";
4+
import {LyonJSTemplate} from "./lyonjs.template";
5+
import {DocsInBoxTemplate} from "./docsinbox.template";
6+
import {DontBoardMeTemplate} from "./dontboardme.template";
7+
import {LaGrowthMachineTemplate} from "./lagrowthmachine.template";
8+
import {MellemTemplate} from "./mellem.template";
9+
import {MomaTemplate} from "./moma.template";
10+
import {MomatuTemplate} from "./momatu.template";
11+
import {NationalParksTemplate} from "./nationalparks.template";
12+
import {SupernaTemplate} from "./superna.template";
13+
import {TheTurbineTemplate} from "./theturbine.template";
14+
import {WaveTemplate} from "./wave.template";
115
import {ModeTemplate} from "./mode.template";
216
import {CityTemplate} from "./city.template";
317
import {CitdTemplate} from "./citd.template";
@@ -13,6 +27,20 @@ export interface TemplateInformations {
1327
}
1428

1529
export enum TemplateName {
30+
DFDS = 'DFDS',
31+
TENDER = 'TENDER',
32+
FESTIVAL = 'FESTIVAL',
33+
LYONJS = 'LYONJS',
34+
DOCSINBOX = 'DOCSINBOX',
35+
DONTBOARDME = 'DONTBOARDME',
36+
LAGROWTHMACHINE = 'LAGROWTHMACHINE',
37+
MELLEM = 'MELLEM',
38+
MOMA = 'MOMA',
39+
MOMATU = 'MOMATU',
40+
NATIONALPARKS = 'NATIONALPARKS',
41+
SUPERNA = 'SUPERNA',
42+
THETURBINE = 'THETURBINE',
43+
WAVE = 'WAVE',
1644
MODE= 'MODE',
1745
CITY = 'CITY',
1846
CITD = 'CITD',
@@ -24,6 +52,20 @@ export const templatesDictionary: Record<
2452
TemplateNameList,
2553
TemplateInformations
2654
> = {
55+
DFDS: DFDSTemplate,
56+
TENDER: TenderTemplate,
57+
FESTIVAL: FestivalTemplate,
58+
LYONJS: LyonJSTemplate,
59+
DOCSINBOX: DocsInBoxTemplate,
60+
DONTBOARDME: DontBoardMeTemplate,
61+
LAGROWTHMACHINE: LaGrowthMachineTemplate,
62+
MELLEM: MellemTemplate,
63+
MOMA: MomaTemplate,
64+
MOMATU: MomatuTemplate,
65+
NATIONALPARKS: NationalParksTemplate,
66+
SUPERNA: SupernaTemplate,
67+
THETURBINE: TheTurbineTemplate,
68+
WAVE: WaveTemplate,
2769
MODE: ModeTemplate,
2870
CITY: CityTemplate,
2971
CITD: CitdTemplate
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)