blob: 3573916bd337735d590fb29741e72f731030c665 (
plain)
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
|
<?php
use Carbon\Carbon;
$now = Carbon::now();
return [
'baseUrl' => 'https://davidtsadler.com',
'production' => true,
// Collections
'collections' => [
'posts' => [
// Default author, if not provided in a post
'author' => 'David T. Sadler',
'date' => $now->timestamp,
'sort' => '-date',
'path' => '/posts/{date|Y-m-d}/{filename}',
'filter' => function ($item) use ($now) {
// Only publish posts that have a date and which is not in the future.
$date = $item->getDate();
return $date ? $date <= $now : false;
}
],
],
];
|