forked from Piwigo/simple-theme-piwigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemeconf.inc.php
More file actions
36 lines (30 loc) · 896 Bytes
/
themeconf.inc.php
File metadata and controls
36 lines (30 loc) · 896 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
<?php
/*
Theme Name: SimpleNG
Version: 3.2.5
Description: SimpleNG theme for Piwigo
Theme URI: http://piwigo.org/ext/extension_view.php?eid=602
Author: Saïmon
Author URI: http://saimon.org/
*/
$themeconf = array(
'parent' => 'default',
'load_parent_css' => false,
'load_parent_local_head' => false,
'name' => 'simpleng',
'theme_dir' => 'simpleng',
'icon_dir' => 'themes/default/icon',
'img_dir' => 'themes/default/images',
'mime_icon_dir' => 'themes/default/icon/mimetypes/',
'local_head' => 'local_head.tpl',
'url' => 'http://saimon.org/simple-theme-piwigo/',
'colorscheme' => 'dark'
);
// set this if you want to restrict the width of pictures to a specifc width
// global $user;
// $user['maxwidth'] = 800;
pwg_set_session_var('show_metadata', true);
$conf['level_separator'] = '/';
// debug - do not combine files
$conf['template_combine_files'] = false;
?>