-
01 ECN20
-
03 ECN20
-
04 ECN20
-
05 ECN20
-
02 ECN20
-
06 ECN20
-
07 ECN20
-
08 ECN20
-
09 ECN20
-
10 ECN20
-
11 ECN20
-
12 ECN20
-
14 ECN20
-
15 ECN20
-
13 ECN20
-
16 ECN20
-
17 ECN20
-
18 ECN20
-
19 ECN20
-
20 ECN20
-
21 ECN20
-
22 ECN20
-
23 ECN20
-
24 ECN20
-
25 ECN20
-
26 ECN20
-
27 ECN20
-
28 ECN20
-
29 ECN20
-
30 ECN20
-
33 ECN20
-
31 ECN20
-
32 ECN20
-
35 ECN20
-
34 ECN20
-
37 ECN20
-
38 ECN20
-
39 ECN20
-
40 ECN20
-
36 ECN20
// This is a generic paginator for album, photo and movie pages. Depending on the page type,
// there are different sets of variables available. With this data, you can make a paginator
// that lets you say "You're viewing photo 5 of 35", or "You're viewing photos 10 - 18 of 37"
// for album views.
//
// Available variables for all page types:
// $page_type - "collection", "item", or "other"
// $page_subtype - "album", "movie", "photo", "tag", etc.
// $previous_page_url - the url to the previous page, if there is one
// $next_page_url - the url to the next page, if there is one
// $total - the total number of photos in this album
//
// Available for the "collection" page types:
// $page - what page number we're on
// $max_pages - the maximum page number
// $page_size - the page size
// $first_page_url - the url to the first page, or null if we're on the first page
// $last_page_url - the url to the last page, or null if we're on the last page
// $first_visible_position - the position number of the first visible photo on this page
// $last_visible_position - the position number of the last visible photo on this page
//
// Available for "item" page types:
// $position - the position number of this photo
//
?>