<include file="top.h">
<conf pos="/developers" pagename="devel">
<init append scan=user>
<init scan=devel>
</init>
<section link="/developers">
<div align=center>
<p>
This is a list of the people that are involved in this project
</p>
<p>
<developers>
<developer name="King Leo (Martin Oberzalek)" email=kingleo@gmx.at info="The basic stuff">
</developers>
</p>
<p>
<div align=right>
<b>New developers are welcome!</b>
</div>
</p>
<delete>
<define name="developer" PAR_1_STRING=name PAR_2_STRING=email PAR_3_STRING=info DPAR_3=" " init=devel>
function developer( name, email, info) {
print( "<li>" );
print( name );
print( "<a href=\"mailto:" + email + "\">" + email + "</a>" );
if( info != " " ) {
print( "<br>" );
print( info );
}
print( "</li>" );
}
</define>
<define name="developers" type=open_close_tag init=devel>
function developers( text ) {
print( "<table><tr><td>" );
print( "<ul>" );
print( text );
print( "</ul>" );
print( "</table>" );
}
</define>
</delete>
</section>
<include file="bottom.h">
|