This repository was archived by the owner on Apr 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
43 lines (42 loc) · 1.56 KB
/
config.php
File metadata and controls
43 lines (42 loc) · 1.56 KB
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
<?php
return [
'production' => false,
'baseUrl' => env('APP_URL', ''),
'collections' => [
'projects' => [
'path' => 'p',
'extends' => '_layouts.project',
'section' => 'content',
],
'posts' => [
'path' => 'posts',
'extends' => '_layouts.post',
'section' => 'content',
'sort' => ['-date'],
]
],
'developers' => [
'philippe' => [
'name' => 'Philippe Lonchampt',
'avatar' => 'https://gravatar.com/avatar/' . md5('philippelonchampt@gmail.com') . '?d=retro',
'twitter' => 'https://twitter.com/dvlpp',
'linkedIn' => 'https://www.linkedin.com/in/philippe-lonchampt-2b434b227',
],
'arnaud' => [
'name' => 'Arnaud Becher',
'avatar' => 'https://gravatar.com/avatar/' . md5('arnaud.becher@gmail.com') . '?d=retro',
'twitter' => 'https://twitter.com/smknstd',
'linkedIn' => 'https://www.linkedin.com/in/arnaud-becher-0a85bb162/',
],
'lucien' => [
'name' => 'Lucien Puget',
'avatar' => 'https://gravatar.com/avatar/' . md5('lucien.puget@code16.fr') . '?d=retro',
'linkedIn' => 'https://www.linkedin.com/in/lucienpuget/',
],
'antoine' => [
'name' => 'Antoine Guingand',
'avatar' => 'https://gravatar.com/avatar/' . md5('guingand.antoine@gmail.com') . '?d=retro',
'linkedIn' => 'https://www.linkedin.com/in/antoine-guingand-a1199010a/',
]
],
];