This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
config.php
66 lines (56 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
return [
/**
* --------------------------------------------------------------------------
* Site base URL
* --------------------------------------------------------------------------
*
* This base URL will be used to generate links for the @url blade
* directive, it should always start with a forward slash.
*
*/
'base_url' => '/',
/**
* --------------------------------------------------------------------------
* Enabling the blog generator
* --------------------------------------------------------------------------
*
* When the blog generator is enabled, blade views in "content/_blog" will
* be parsed to get blog posts data and generate blog pagination views.
*
* Disable this option if you don't need a blog for your website to
* get a performance boost.
*
*/
'enableBlog' => true,
/**
* --------------------------------------------------------------------------
* The number of posts in a page
* --------------------------------------------------------------------------
*
* The number of posts to appear on every page in the blog pages.
*
*/
'postsPerPage' => 3,
/**
* --------------------------------------------------------------------------
* The view used to display blog paginated pages
* --------------------------------------------------------------------------
*
* This blade view will be used to generate the paginated list of
* posts for the blog.
*
*/
'postsListView' => 'blog',
/**
* --------------------------------------------------------------------------
* Custom variables
* --------------------------------------------------------------------------
*
* Here you can set all the custom variables you'd like to be present in
* the blade views.
*
*/
'siteName' => 'Katana',
'siteDescription' => 'Yet another awesome site.',
];