1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/themes/three_nids
2013-01-21 01:24:24 -05:00
..
admin/helpers Update copyright to 2013. 2013-01-21 01:24:24 -05:00
controllers Update copyright to 2013. 2013-01-21 01:24:24 -05:00
css Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00
helpers Update copyright to 2013. 2013-01-21 01:24:24 -05:00
images Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00
js Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00
views Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00
README Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00
theme.info Add author_name, author_url, info_url, discuss_url for all modules/themes 2011-04-23 14:56:44 -07:00
thumbnail.png Move all modules/themes/client code for the 3.0 codebase into a 3.0 directory. 2010-10-08 12:51:32 -07:00

This is a theme for gallery3.
It uses jquery lightbox slideshow (fancybox) to display images.

*********
Demo @ http://gallery.3nids.ch

*********
Requirements:
- Gallery 3 last experimental version @ http://github.com/gallery/gallery3
- Tag and tagsmap modules activated (optional)

*********
Installation:

1. Copy the theme folder (three_nids) into gallery3/themes directory.
2. Copy the tagsmap module into the gallery3/modules folder.
3. Activate tagsmap module and three_nids theme.

*********
Configuration:
Go to Admin -> Appearance -> Theme Options to configure the theme properly.

*********
Use:
This theme displays full size images. So be carefull to upload not too large images!
The theme optionally uses the tagsmap module.

For advanced users:
If you want to separate geotag from others, name those with the "map." prefix., the "map." prefix will not be displayed on the map.
If you want to remove the prefix in the tag cloud sidebar, wou will have to update in gallery3/modules/tag/helpers/tag.php the popular_tags function:
  static function popular_tags($count) {
    return ORM::factory("tag")
      ->orderby("count", "DESC")
      ->notregex("name","map\.")
      ->limit($count)
      ->find_all();
  }