-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
50 lines (44 loc) · 1.56 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
* **************************************************************************************
* **************************************************************************************
* This is the configuration file. You can change the values to fit your needs.
* **************************************************************************************
* **************************************************************************************
*/
/*
* Configuration variables for directory paths
*/
$assetsDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'assets';
$assetsOutputDir = $outDir . DIRECTORY_SEPARATOR . 'assets';
$pagesDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'pages';
$includesDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'includes';
$templatesDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'templates';
$outDir = __DIR__ . DIRECTORY_SEPARATOR . 'public';
/*
* Configuration array for languages
* (leave array empty if not building multilanguage)
*/
$languages = [
[
'code' => 'en',
'name' => 'English',
],
[
'code' => 'de',
'name' => 'German',
],
// Add more languages as needed
];
/*
* Arrays for language specific variables
* (leave array empty if not building multilanguage)
*/
$enVariables = [
'site_title' => 'My Website',
'welcome_message' => 'Welcome to our website!',
];
$deVariables = [
'site_title' => 'Meine Webseite',
'welcome_message' => 'Willkommen auf unserer Webseite!',
];