diff options
Diffstat (limited to 'templates/classic/template_index.html')
| -rw-r--r-- | templates/classic/template_index.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/templates/classic/template_index.html b/templates/classic/template_index.html new file mode 100644 index 0000000..36d4eec --- /dev/null +++ b/templates/classic/template_index.html @@ -0,0 +1,90 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head profile="http://www.w3.org/2005/10/profile"> + <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> + <title>$(PAGE_TITLE)</title> +<!-- $(CGG_META_TAGS) --> +<!-- $(CGG_ATOM_FEED_TAGS) --> + <link href="$(TEMPLATES_PATH)styles.css" type="text/css" rel="stylesheet" media="screen, print" /> + <script type="text/javascript" src="$(TEMPLATES_PATH)scripts-general.js"> </script> +</head> +<body> + + +<!-- ## Navigation bar --> +<div class="navigation"> + <div class="navlinks"> + <!-- $(BEGIN_NAV_BAR) --> + <!-- $(BEGIN_NAV_BAR_FIRST) --> + <a href="$(NAV_BAR_ELEM_LINK)" rel="home"><!-- $(NAV_BAR_ELEM_TITLE) --></a> > + <!-- $(END_NAV_BAR_FIRST) --> + <!-- $(BEGIN_NAV_BAR_ELEM) --> + <a href="$(NAV_BAR_ELEM_LINK)"><!-- $(NAV_BAR_ELEM_TITLE) --></a> > + <!-- $(END_NAV_BAR_ELEM) --> + <!-- $(BEGIN_NAV_BAR_LAST) --> + <a href="$(NAV_BAR_ELEM_LINK)"><!-- $(NAV_BAR_ELEM_TITLE) --></a> > + <!-- $(END_NAV_BAR_LAST) --> + <!-- $(BEGIN_NAV_BAR_CURRENT) --> + <!-- $(NAV_BAR_ELEM_TITLE) --> + <!-- $(END_NAV_BAR_CURRENT) --> + <!-- $(BEGIN_NAV_BAR_CURRENT_ROOT) --> + <!-- $(NAV_BAR_ELEM_TITLE) --> + <!-- $(END_NAV_BAR_CURRENT_ROOT) --> + <!-- $(END_NAV_BAR) --> + </div> + <div class="navposition"> + <span class="navposnumber"><!-- $(TOTAL_ITEMS) --> albums</span> + </div> +</div> + + +<div class="master_content"> + <!-- ## Description --> + <div class="description"> + <!-- $(ifdef(SHOW_GO_UP)) --><!-- $(ifndef(IS_ROOT)) --> + <div class="desc_go_up">:. <a href="$(GO_UP_LINK)">Go Up</a></div> + <!-- $(endif(IS_ROOT)) --><!-- $(endif(SHOW_GO_UP)) --> + <div class="desc_title"><!-- $(TITLE) --></div> + <div class="desc_text"><!-- $(DESCRIPTION) --></div> + </div> + + <!-- ## Albums --> + <div class="index_thumbs"> + <!-- $(BEGIN_IMG_LIST) --> + <!-- $(BEGIN_LIST_PICTURE) --> + <div class="index_item"> + <div class="position_marker" id="$(IMG_POS_MARKER)"></div> + <a href="$(ALBUM_SUBPATH)"> + <img src="$(IMG_SRC_THUMB)" width="$(IMG_SIZE_THUMB_W)" height="$(IMG_SIZE_THUMB_H)" alt="" /> + <span class="album_text_$(THUMB_ORIENTATION)"><!-- $(IMG_TITLE) --></span><br /> + <span class="album_subtext_$(THUMB_ORIENTATION)"><!-- $(IMG_DESCRIPTION) --><!-- $(ifdef(IS_PROTECTED)) --><span class="album_protected_note"><br /><br />(This album is password protected)</span><!-- $(endif(IS_PROTECTED)) --></span> + <span class="album_note">(<!-- $(ALBUM_NUM_ITEMS) --> items)</span> + </a> + </div> + <!-- $(END_LIST_PICTURE) --> + <!-- $(BEGIN_LIST_SEPARATOR) --> + <div class="separators"> + <div class="album_list_separator"><!-- $(LIST_SEPARATOR_TITLE) --></div> + </div> + <!-- $(END_LIST_SEPARATOR) --> + <!-- $(BEGIN_LIST_INTERSPACE) --> + <div class="interspace"> + <div class="album_list_interspace"><!-- $(LIST_INTERSPACE_TITLE) --></div> + </div> + <!-- $(END_LIST_INTERSPACE) --> + <!-- $(END_IMG_LIST) --> + </div> + + <!-- ## Footnote, also acts as a bottom border --> + <div class="footnote"> + <div class="desc_text"><!-- $(FOOTNOTE) --></div> + </div> +</div> <!-- end of master_content --> + + +<!-- ## Footer --> +<div class="footer"><!-- $(FOOTER) --></div> + +</body> +</html> |
