-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php
More file actions
43 lines (38 loc) · 997 Bytes
/
config.php
File metadata and controls
43 lines (38 loc) · 997 Bytes
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
<?php
$config = array();
$config['name'] = "Bootstrap3";
$config['author'] = "Microweber";
$config['version'] = 1.0;
$config['url'] = "http://bootstrap.com";
$config['framework'] = 'bootstrap3';
$config['content'] = array();
$config['content'][] = array(
'title' => "Home",
'content_type' => "page",
'layout_file' => "index.php",
'is_home' => 1
);
$config['content'][] = array(
'title' => "Blog",
'content_type' => "page",
'subtype' => "dynamic",
'layout_file' => "layouts/blog.php",
'is_shop' => 0
);
$config['content'][] = array(
'title' => "Blog Post",
'content_type' => "post",
'layout_file' => "layouts/blog_inner.php"
);
$config['content'][] = array(
'title' => "Product name",
'content_type' => "product",
'layout_file' => "layouts/shop_inner.php"
);
$config['content'][] = array(
'title' => "Shop",
'content_type' => "page",
'subtype' => "dynamic",
'layout_file' => "layouts/shop.php",
'is_shop' => 1
);