-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-example.php
41 lines (36 loc) · 1.52 KB
/
config-example.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
<?php
/**
* put this in your /site/config.php and modifiy it to your liking
*/
$config->blick = array(
'jsPath' => $config->paths->templates . 'scripts',
'jsUrl' => $config->urls->templates . 'scripts',
'jsMarkup' => '<script src="{url}" type="text/javascript" charset="utf-8"></script>',
'jsDefault' => 'markup',
'jsVersioning' => false,
'jsVersioningFormat' => '?v={version}',
'jsMin' => false,
'jsMinFormat' => "{file}.min.{ext}",
'jsAppendNewLine' => true,
'cssPath' => $config->paths->templates . 'styles',
'cssUrl' => $config->urls->templates . 'styles',
'cssMarkup' => '<link href="{url}" rel="stylesheet" type="text/css">',
'cssDefault' => 'markup',
'cssVersioning' => false,
'cssVersioningFormat' => '?v={version}',
'cssMin' => false,
'cssMinFormat' => "{file}.min.{ext}",
'cssAppendNewLine' => true,
'imgPath' => $config->paths->templates . 'img',
'imgUrl' => $config->urls->templates . 'img',
'imgMarkup' => '<img {attrs} src="{url}" alt="{0}">',
'imgDefault' => 'markup',
'imgVariations' => array(),
'imgVariationSubDir' => '',
'imgVersioning' => false,
'imgVersioningFormat' => '',
'imgMin' => false,
'imgMinFormat' => '',
'imgAppendNewLine' => true,
'autoloadAs' => 'blick'
);