11-30-2007, 08:01 PM
|
#5 (permalink)
|
|
The Prestige
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
|
template.tpl
Located in /includes/templates/templatename.tpl
index.tpl
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="author" content="Tanax">
<title>{title}</title>
</head>
<body>
{folders}
<center>
{content}
</center>
</body>
</html>
view.tpl
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="author" content="Tanax">
<title>{title}</title>
</head>
<body>
{folders}
<center>
{image}
</center>
</body>
</html>
gallery.tpl
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="author" content="Tanax">
<title>{title}</title>
</head>
<body>
{folders}
<center>
{pagelinks}
{images}
</center>
</body>
</html>
It's pretty basic! But this is how it looks. You can change where the pagelinks are shown, etc etc.. by just changing the order of them in the html code.
|
|
|
|