-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
47 lines (33 loc) 路 1.17 KB
/
Copy pathconfig.php
File metadata and controls
47 lines (33 loc) 路 1.17 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
44
45
46
47
<?php
return array(
/* ============================================
Blog Settings
============================================ */
// Posts per page
'posts_per_page' => 4,
// The direct URL to your blog without a trailing slash (eg. https://adgr.dev or https://adgr.dev/blog)
'blog_url' => 'https://microblog.adamgreenough.me',
// The name of your blog
'blog_name' => 'Adam\'s Microblog',
// A short description of your blog
'blog_description' => 'The personal microblog of Adam Greenough.',
/* ============================================
Front-end Settings
============================================ */
// Use the front-end (true) or API-only (false)?
'use_frontend' => true,
// Front-end theme
'frontend_theme' => 'microblog',
// Date format
'date_format' => 'jS F Y',
// Page title seperator
'title_seperator' => '|',
/* ============================================
Advanced Settings
============================================ */
// If your Nicholas installation is not in the web root,
// enter your folder name here with a preceding slash (eg. /blog)
'base_url' => '',
// Prepend year and month to post URLs to help avoid slug conflicts?
'post_base' => true
);