|
Revision 13547, 0.6 KB
(checked in by plg, 15 months ago)
|
|
import theme Simple version 2.1
- bugfix for user's profile - use default profile_content.tpl
- child themes do not need to have content.css
- use local_head.tpl
- correct order of thumbnails & show copyright on picture page
- use default as parent theme & change theme URI
- add quicksearch and style input, textarea, ...
- add login link in the footer
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Theme Name: Simple Grey |
|---|
| 4 | Version: 2.0 |
|---|
| 5 | Description: Simple Grey theme |
|---|
| 6 | Theme URI: http://piwigo.org/ext/extension_view.php?eid=308 |
|---|
| 7 | Author: Saïmon |
|---|
| 8 | Author URI: http://saimon.org/ |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | $themeconf = array( |
|---|
| 12 | 'parent' => 'default', |
|---|
| 13 | 'load_parent_css' => false, |
|---|
| 14 | 'load_parent_local_head' => false, |
|---|
| 15 | 'name' => 'simple-grey', |
|---|
| 16 | 'theme_dir' => 'simple', |
|---|
| 17 | 'icon_dir' => 'themes/simple/icon', |
|---|
| 18 | 'admin_icon_dir' => 'themes/default/icon/admin', |
|---|
| 19 | 'mime_icon_dir' => 'themes/default/icon/mimetypes/', |
|---|
| 20 | 'local_head' => 'local_head.tpl', |
|---|
| 21 | 'url' => 'http://saimon.org/blog/pages/Theme-Simple-Grey-Piwigo' |
|---|
| 22 | ); |
|---|
| 23 | |
|---|
| 24 | global $user; |
|---|
| 25 | $user['maxwidth'] = 680; |
|---|
| 26 | ?> |
|---|