1<?xml version="1.0" encoding="utf-8" ?>
2<Templates imagesBasePath="fck_template/images/">
3	<Template title="Image and Title" image="template1.gif">
4		<Description>One main image with a title and text that surround the image.</Description>
5		<Html>
6			<![CDATA[
7				<img style="MARGIN-RIGHT: 10px" height="100" alt="" width="100" align="left"/>
8				<h3>Type the title here</h3>
9				Type the text here
10			]]>
11		</Html>
12	</Template>
13	<Template title="Strange Template" image="template2.gif">
14		<Description>A template that defines two colums, each one with a title, and some text.</Description>
15		<Html>
16			<![CDATA[
17				<table cellspacing="0" cellpadding="0" width="100%" border="0">
18					<tbody>
19						<tr>
20							<td width="50%">
21							<h3>Title 1</h3>
22							</td>
23							<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </td>
24							<td width="50%">
25							<h3>Title 2</h3>
26							</td>
27						</tr>
28						<tr>
29							<td>Text 1</td>
30							<td>&nbsp;</td>
31							<td>Text 2</td>
32						</tr>
33					</tbody>
34				</table>
35				More text goes here.
36			]]>
37		</Html>
38	</Template>
39	<Template title="Text and Table" image="template3.gif">
40		<Description>A title with some text and a table.</Description>
41		<Html>
42			<![CDATA[
43				<div style="WIDTH: 80%">
44				<h3>Title goes here</h3>
45				<p>
46				<table style="FLOAT: right" cellspacing="0" cellpadding="0" width="150" border="1">
47					<tbody>
48						<tr>
49							<td align="center" colspan="3"><strong>Table title</strong></td>
50						</tr>
51						<tr>
52							<td>&nbsp;</td>
53							<td>&nbsp;</td>
54							<td>&nbsp;</td>
55						</tr>
56						<tr>
57							<td>&nbsp;</td>
58							<td>&nbsp;</td>
59							<td>&nbsp;</td>
60						</tr>
61						<tr>
62							<td>&nbsp;</td>
63							<td>&nbsp;</td>
64							<td>&nbsp;</td>
65						</tr>
66						<tr>
67							<td>&nbsp;</td>
68							<td>&nbsp;</td>
69							<td>&nbsp;</td>
70						</tr>
71					</tbody>
72				</table>
73				Type the text here</p>
74				</div>
75			]]>
76		</Html>
77	</Template>
78</Templates>
79