drupal/themes/xtemplate/xtemplate.xtmpl

121 lines
3.0 KiB
Plaintext

<!-- BEGIN: header -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>{head_title}</title>
{head}
<link type="text/css" rel="stylesheet" href="{stylesheet}" />
</head>
<body{onload_attributes}>
<table border="0" cellpadding="0" cellspacing="0" id="header">
<tr>
<td id="logo">
<a href="./">{logo}</a>
</td>
<td id="menu">
<div id="secondary">{secondary_links}</div>
<div id="primary">{primary_links}</div>
<!-- BEGIN: search_box -->
<form action="{search_url}" method="post">
<div id="search">
<input class="form-text" type="text" size="15" value="" name="keys" />
<input class="form-submit" type="submit" value="{search_button_text}" />
</div>
</form>
<!-- END: search_box -->
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" id="content">
<tr>
<!-- BEGIN: blocks -->
<td id="sidebar-left">
{blocks}
</td>
<!-- END: blocks -->
<td valign="top">
<!-- BEGIN: mission -->
<div id="mission">{mission}</div>
<!-- END: mission -->
<div id="main">
{breadcrumb}
<h1>{body_title}</h1>
<!-- BEGIN: help -->
<div id="help">{help}</div>
<!-- END: help -->
<!-- BEGIN: message -->
<div class="{class}">{message}</div>
<!-- END: message -->
<!-- END: header -->
<!-- BEGIN: node -->
<div class="{classes}">
<!-- BEGIN: title -->
<h2><a href="{link}">{title}</a></h2>
<!-- END: title -->
<span class="author">Submitted by {author} on {date}.</span>
<span class="taxonomy">{taxonomy}</span>
<div class="content">{content}</div>
<div class="links">&raquo; {links}</div>
</div>
<!-- END: node -->
<!-- BEGIN: comment_new -->
<div class="comment">
<h3>{title}</h3>
<span class="new">new</span>
<div class="author">Posted by {author} on {date}.</div>
<div class="content">{content}</div>
<div class="links">&raquo; {links}</div>
</div>
<!-- END: comment_new -->
<!-- BEGIN: comment_old -->
<div class="comment">
<h3>{title}</h3>
<div class="author">Posted by {author} on {date}.</div>
<div class="content">{content}</div>
<div class="links">&raquo; {links}</div>
</div>
<!-- END: comment_old -->
<!-- BEGIN: box -->
<div class="box">
<h2>{subject}</h2>
<div class="content">{content}</div>
</div>
<!-- END: box -->
<!-- BEGIN: block -->
<div class="block block-{module}" id="block-{module}-{delta}">
<h2>{subject}</h2>
<div class="content">{content}</div>
</div>
<!-- END: block -->
<!-- BEGIN: footer -->
</div><!-- main -->
</td>
<!-- BEGIN: blocks -->
<td id="sidebar-right">
{blocks}
</td>
<!-- END: blocks -->
</tr>
</table>
<!-- BEGIN: message -->
<div id="footer">
{footer_message}
</div>
<!-- END: message -->
{footer}
</body>
</html>
<!-- END: footer -->