summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.php1
-rw-r--r--config.production.php3
2 files changed, 1 insertions, 3 deletions
diff --git a/config.php b/config.php
index d8db889..19350ee 100644
--- a/config.php
+++ b/config.php
@@ -13,7 +13,6 @@ return [
'siteAuthor' => 'David T. Sadler',
'perPage' => 50,
- // Collections
'collections' => [
'posts' => [
// Default author, if not provided in a post
diff --git a/config.production.php b/config.production.php
index 12b8038..30a1b7b 100644
--- a/config.production.php
+++ b/config.production.php
@@ -7,12 +7,11 @@ $now = Carbon::now();
return [
'baseUrl' => 'https://www.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) {