#
# $Id: main_config.pl,v 1.4 1999/04/12 00:13:48 jsmith Exp $
# for the Emacs theme
#
sub CGI::WeT::Theme::Loader::WeT::Emacs::Init {
my $body = {
'bgcolor' => '000000', # black
'text' => 'f5deb3', # wheat
'alink' => 'f5f5f5', # whitesmoke
'vlink' => 'e9967a', # darksalmon
'link' => 'ff0000', # red
};
my $css = [<<1HERE1];
A { text-decoration: none; }
P { text-align: justify; text-indent: 2em; font-size: medium;
font-family: serif; top: 0px; bottom: 0px; }
1HERE1
return {
'STANDARD_PAGE' => {
'LAYOUT' => [
[
[
[
'',
'[HEADERS key=Title]',
'',
],
'[VBOX colspan=2 bgcolor=182828]',
],
'[LINE]',
[
[
'[NAVIGATION level=current type=text join= top=Home up=Up]',
'
',
],
'[VBOX colspan=2 valign=top]',
],
'[LINE]',
[
[
'',
'News Headlines',
[
'
', '[CONTENT]', '
',
'[POP]', '[POP]', '[POP]'
],
'[NEWS_SUMMARY number=5 link=title]',
'
Choose a theme:',
'[THEME_CHOOSER type=list join=
]',
'',
],
'[VBOX width=100]',
[
'[CONTENT]',
],
'[VBOX width=*]',
],
'[LINE]',
[
[
'',
'[NAVPATH join=/ ellipses=... depth=4 type=text]',
''
],
'[VBOX bgcolor=7f735e colspan=2]', # f5deb3
],
'[LINE]',
[
[
'Copyright © 1999 Someone
',
],
'[VBOX colspan=2]',
],
'[LINE]',
],
'[HBOX width=100%25 cellpadding=0 cellspacing=0 bgcolor=2f4f4f border=0]',
]
},
'DEFAULT' => {
'BODY' => $body,
'CSS' => $css,
'LAYOUT' => [
[ '[BODY]' ],
'[STANDARD_PAGE]',
]
},
'NEWS' => {
'BODY' => $body,
'CSS' => $css,
'LAYOUT' => [
[
'',
'[HEADERS key=Date]',
' ',
'[HEADERS key=Link]',
'
',
'[BODY]',
'
',
[ '< ' ],
'[NEWS_NEXT type=story sequence=prev]',
[ ' contribute ' ],
'[LINK location=/@@NEWS@@/contribute.form.cgi]',
[ ' contribute (auth) ' ],
'[LINK location=/@@NEWS@@/contribute.form.private.cgi]',
[ ' >' ],
'[NEWS_NEXT type=story sequence=next]',
'',
],
'[STANDARD_PAGE]',
],
},
};
}
1;