Changeset 988
- Timestamp:
- 03/24/07 21:46:13 (20 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 2 removed
- 3 modified
-
README.CSS (modified) (1 diff)
-
templates/common_categories.tt (deleted)
-
templates/common_locales.tt (deleted)
-
templates/navbar.tt (modified) (1 diff)
-
templates/navbar_categories.tt (added)
-
templates/navbar_locales.tt (added)
-
templates/node.tt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.CSS
r973 r988 218 218 optionally a link to the licence we're using it under. 219 219 220 div# common_navigation221 Used in: n ode.tt220 div#navbar_common_navigation 221 Used in: navbar.tt 222 222 Purpose: Hold the common locales and categories, if enabled 223 224 div#common_categories 225 Used in: common_categories.tt 223 div#navbar_locales 224 Used in: navbar_locales.tt 225 Purpose: Hold the common locales, if enabled 226 div#navbar_categories 227 Used in: navbar_categories.tt 226 228 Purpose: Hold the common categories, if enabled 227 h3#common_categories_title 228 Used in: common_categories.tt 229 Purpose: Title for the common categories 230 ul#common_categories_list 231 Used in: common_categories.tt 232 Purpose: Parent list for the common categories 233 li.common_category 234 Used in: common_categories.tt 235 Purpose: A common category 236 a.common_category_link 237 Used in: common_categories.tt 238 Purpose: A link to a common category 239 240 div#common_locales 241 Used in: common_locales.tt 242 Purpose: Hold the common locales, if enabled 243 h3#common_locales_title 244 Used in: common_locales.tt 245 Purpose: Title for the common locales 246 ul#common_locales_list 247 Used in: common_locales.tt 248 Purpose: Parent list for the common locales 249 li.common_locale 250 Used in: common_locales.tt 251 Purpose: A common locale 252 a.common_locale_link 253 Used in: common_locales.tt 254 Purpose: A link to a common locale 229 div#navbar_group_title 230 Used in: navbar_categories.tt, navbar_locales.tt 231 Purpose: Title for the common categories / locales 232 ul#navbar_group 233 Used in: navbar_categories.tt, navbar_locales.tt 234 Purpose: Parent list for the common categories / locales 235 #navbar_group > li 236 Used in: navbar_categories.tt, navbar_locales.tt 237 Purpose: A common category / locale 255 238 256 239 input#address -
trunk/templates/navbar.tt
r972 r988 7 7 [% INCLUDE navbar_search.tt %] 8 8 [% INCLUDE navbar_this_page.tt %] 9 <div id="navbar_common_navigation"> 10 [% INCLUDE navbar_categories.tt %] 11 [% INCLUDE navbar_locales.tt %] 12 </div> 9 13 [% INCLUDE navbar_revision_info.tt %] 10 14 -
trunk/templates/node.tt
r972 r988 150 150 [% END %] 151 151 152 [% IF common_catloc %]153 <div id="common_navigation">154 [% IF common_categories %]155 [% INCLUDE common_categories.tt %]156 [% END %]157 [% IF common_locales %]158 [% INCLUDE common_locales.tt %]159 [% END %]160 </div>161 [% END %]162 163 152 [% INCLUDE footer.tt %]
