Files
znc/webskins/_default_/tmpl/Header.tmpl
cflakes 6c5421b021 Deleted obsolete modules/webadmin dir, copied CSS files for ice & default to
webskins dir, made default the _default_ skin, moved dark-clouds to dark-clouds,
added /skinfiles/ feature to base skins on each other (and not only on default).

Next up: re-adding help texts that got lost during webadmin->webmods transition,
making skins look nice again.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1868 726aef4b-f618-498e-8847-2d620e286838
2010-04-04 10:27:33 +00:00

20 lines
673 B
Cheetah

<? ADDROW CSSLoop HREF=/pub/_default_.css ?>
<? INC BaseHeader.tmpl ?>
<? REM ?>
This is a wrapper file which simply includes BaseHeader.tmpl so that new skins can make
a Header.tmpl similar to...
<? ADDROW CSSLoop HREF=/pub/myskin.css ?>
<? INC BaseHeader.tmpl ?>
...this way a skin can base itself off of the same html as the default skin but still add
custom css/js
@todo In the future I'd like to support something like <? INC File.tmpl SUPER ?> or even
just do a current file vs inc'd file comparison to make sure they aren't the same.
This way we can <? INC Header.tmpl ?> from the "derived" Header.tmpl and not cause
an recursive loop.
<? ENDREM ?>