View Single Post
Old 11-30-2007, 08:01 PM   #5 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

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.
Tanax is offline  
Reply With Quote
The Following 2 Users Say Thank You to Tanax For This Useful Post:
iflashlord (05-03-2009), Nor (12-04-2007)