-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
40 lines (39 loc) · 860 Bytes
/
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
<?php
return [
'production' => false,
'baseUrl' => 'localhost:3000/',
'siteName' => 'Sebastian Gutierrez',
'siteDescription' => 'Lorem!',
'collections' => [
'posts',
'projects'
],
'navigation' => [
[
'name' => 'Inicio',
'root' => '/'
],
[
'name' => 'Blog',
'root' => '/blog'
],
[
'name' => 'Sobre mi',
'root' => '/about'
],
[
'name' => 'LinkedIn',
'root' => 'https://www.linkedin.com/in/sebastian-gutierrez-correa/',
'external' => true
],
[
'name' => 'GitHub',
'root' => 'https://github.com/pepas24/',
'external' => true
]
],
'getDate' => function ($page) {
setlocale(LC_ALL, 'es_CO.UTF8');
return strftime('%d %b. %Y', $page->date);
}
];