Some ideas of me implemented in a ported theme greenway
look at the menue function and categories
Critics and Comments are welcome
Greenway
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
Looks nice Reinhard. 2 comments: first, your top right icons all have the title attribute of "home". Second, the general convention for template image folder names in s9y is /templatename/img (not images). It obviously works with any folder name since you are supplying the path, just thought I would point it out. Anyway, nice port.
EDIT: One other thing regarding the title attribute on your icons. You can make 2 of them language specific... homepage, and archives. No global language variable exists for contactform unless you create a template specific language file that then needs translations. Anyway, in your index.tpl, change this (for homepage):
to this:
And for archives, it would be title="{$CONST.ARCHIVES}"
EDIT: One other thing regarding the title attribute on your icons. You can make 2 of them language specific... homepage, and archives. No global language variable exists for contactform unless you create a template specific language file that then needs translations. Anyway, in your index.tpl, change this (for homepage):
Code: Select all
<a href="/" title="Home page">Code: Select all
<a href="/" title="{$CONST.HOMEPAGE}">=Don=