diff options
Diffstat (limited to 'templates/template_index.html')
| -rw-r--r-- | templates/template_index.html | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/templates/template_index.html b/templates/template_index.html new file mode 100644 index 0000000..01de113 --- /dev/null +++ b/templates/template_index.html @@ -0,0 +1,94 @@ +<?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"><!-- $(NAV_BAR) --></div> + <div class="navposition"> + <span class="navposnumber"><!-- $(TOTAL_ITEMS) --> albums</span> + </div> +</div> + + +<div class="master_content"> + <!-- ## Description --> + <div class="description"> + <!-- $(BEGIN_GO_UP) --> + <div class="desc_go_up">:. <a href="$(GO_UP_LINK)">Go Up</a></div> + <!-- $(END_GO_UP) --> + <div class="desc_title"><!-- $(TITLE) --></div> + <div class="desc_text"><!-- $(DESCRIPTION) --></div> + </div> + + <!-- ## Albums --> + <div class="index_thumbs"> + <!-- $(BEGIN_IMG_LIST) --> + <!-- $(BEGIN_IMG_LIST_LANDSCAPE) --> + <div class="index_item"> + <div class="position_marker" id="$(IMG_LIST_ID)"></div> + <a href="$(ALBUM_SUBPATH)"> + <img src="$(IMG_THUMBNAIL)" width="$(IMG_SIZE_THUMB_W)" height="$(IMG_SIZE_THUMB_H)" alt="" /> + <span class="album_text"><!-- $(IMG_TITLE) --></span><br /> + <span class="album_subtext"><!-- $(IMG_DESCRIPTION) --></span> + <span class="album_note">(<!-- $(ALBUM_NUM_ITEMS) --> items)</span> + </a> + </div> + <!-- $(END_IMG_LIST_LANDSCAPE) --> + <!-- $(BEGIN_IMG_LIST_PORTRAIT) --> + <div class="index_item"> + <div class="position_marker" id="$(IMG_LIST_ID)"></div> + <a href="$(ALBUM_SUBPATH)"> + <img src="$(IMG_THUMBNAIL)" width="$(IMG_SIZE_THUMB_W)" height="$(IMG_SIZE_THUMB_H)" alt="" /> + <span class="album_text_portrait"><!-- $(IMG_TITLE) --></span><br /> + <span class="album_subtext_portrait"><!-- $(IMG_DESCRIPTION) --></span> + <span class="album_note">(<!-- $(ALBUM_NUM_ITEMS) --> items)</span> + </a> + </div> + <!-- $(END_IMG_LIST_PORTRAIT) --> + <!-- $(BEGIN_IMG_LIST_SQUARED) --> + <div class="index_item"> + <div class="position_marker" id="$(IMG_LIST_ID)"></div> + <a href="$(ALBUM_SUBPATH)"> + <img src="$(IMG_THUMBNAIL)" width="$(IMG_SIZE_THUMB_W)" height="$(IMG_SIZE_THUMB_H)" alt="" /> + <span class="album_text_squared"><!-- $(IMG_TITLE) --></span><br /> + <span class="album_subtext_squared"><!-- $(IMG_DESCRIPTION) --></span> + <span class="album_note">(<!-- $(ALBUM_NUM_ITEMS) --> items)</span> + </a> + </div> + <!-- $(END_IMG_LIST_SQUARED) --> + <!-- $(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> |
