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/themes/3nids
Bharat Mediratta 97db9f478e Updated to reflect the fact that we've gotten rid of REST_Controller
Updated for changes in the paginator..
2009-11-27 15:13:17 -08:00
..
controllers Updated to reflect the fact that we've gotten rid of REST_Controller 2009-11-27 15:13:17 -08:00
css Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08:00
helpers Updated to reflect the fact that we've gotten rid of REST_Controller 2009-11-27 15:13:17 -08:00
images Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08:00
js Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08:00
views Updated to reflect the fact that we've gotten rid of REST_Controller 2009-11-27 15:13:17 -08:00
README Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08:00
theme.info Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08:00
thumbnail.png Restructure the 3nids theme into a more standard layout. Delete the 2009-11-27 14:41:47 -08: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 (3nids) into gallery3/themes directory.
2. Copy the tagsmap module into the gallery3/modules folder.
3. Activate tagsmap module and 3nids theme.

*********
Configuration:
Go to admin -> content -> Theme 3nids settings 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();
  }