-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.php
37 lines (35 loc) · 1.06 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
<?php
use Illuminate\Support\Str;
return [
'production' => false,
'baseUrl' => '',
'github' => 'https://github.com/nawarian/The-PHP-Website',
'collections' => [
'posts_en' => [
'extends' => '_layouts.article',
'isArticle' => true,
'section' => 'content',
'path' => function ($page) {
return 'en/issue/' . Str::slug($page->get('slug'));
},
'sort' => '-createdAt',
],
'posts_pt_br' => [
'extends' => '_layouts.article',
'isArticle' => true,
'section' => 'content',
'path' => function ($page) {
return 'br/edicao/' . Str::slug($page->get('slug'));
},
'sort' => '-createdAt',
],
'jobs_pt_br' => [
'extends' => '_layouts.master',
'section' => 'body',
'path' => function ($page) {
return 'br/vagas/' . Str::slug($page->get('slug'));
},
'sort' => '-createdAt',
],
],
];