source: companies/celepar/news_admin/templates/celepar/fckeditor/to_delete/fcktemplates.xml @ 763

Revision 763, 2.7 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 * FCKeditor - The text editor for internet
4 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
5 *
6 * Licensed under the terms of the GNU Lesser General Public License:
7 *              http://www.opensource.org/licenses/lgpl-license.php
8 *
9 * For further information visit:
10 *              http://www.fckeditor.net/
11 *
12 * "Support Open Source software. What about a donation today?"
13 *
14 * File Name: fcktemplates.xml
15 *      This is the sample templates definitions file. It makes the "templates"
16 *      command completely customizable.
17 *      See FCKConfig.TemplatesXmlPath in the configuration file.
18 *
19 * File Authors:
20 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
21-->
22<Templates imagesBasePath="fck_template/images/">
23        <Template title="Image and Title" image="template1.gif">
24                <Description>One main image with a title and text that surround the image.</Description>
25                <Html>
26                        <![CDATA[
27                                <img style="MARGIN-RIGHT: 10px" height="100" alt="" width="100" align="left"/>
28                                <h3>Type the title here</h3>
29                                Type the text here
30                        ]]>
31                </Html>
32        </Template>
33        <Template title="Strange Template" image="template2.gif">
34                <Description>A template that defines two colums, each one with a title, and some text.</Description>
35                <Html>
36                        <![CDATA[
37                                <table cellspacing="0" cellpadding="0" width="100%" border="0">
38                                        <tbody>
39                                                <tr>
40                                                        <td width="50%">
41                                                        <h3>Title 1</h3>
42                                                        </td>
43                                                        <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </td>
44                                                        <td width="50%">
45                                                        <h3>Title 2</h3>
46                                                        </td>
47                                                </tr>
48                                                <tr>
49                                                        <td>Text 1</td>
50                                                        <td>&nbsp;</td>
51                                                        <td>Text 2</td>
52                                                </tr>
53                                        </tbody>
54                                </table>
55                                More text goes here.
56                        ]]>
57                </Html>
58        </Template>
59        <Template title="Text and Table" image="template3.gif">
60                <Description>A title with some text and a table.</Description>
61                <Html>
62                        <![CDATA[
63                                <table align="left" width="80%" border="0" cellspacing="0" cellpadding="0"><tr><td>
64                                        <h3>Title goes here</h3>
65                                        <p>
66                                        <table style="FLOAT: right" cellspacing="0" cellpadding="0" width="150" border="1">
67                                                <tbody>
68                                                        <tr>
69                                                                <td align="center" colspan="3"><strong>Table title</strong></td>
70                                                        </tr>
71                                                        <tr>
72                                                                <td>&nbsp;</td>
73                                                                <td>&nbsp;</td>
74                                                                <td>&nbsp;</td>
75                                                        </tr>
76                                                        <tr>
77                                                                <td>&nbsp;</td>
78                                                                <td>&nbsp;</td>
79                                                                <td>&nbsp;</td>
80                                                        </tr>
81                                                        <tr>
82                                                                <td>&nbsp;</td>
83                                                                <td>&nbsp;</td>
84                                                                <td>&nbsp;</td>
85                                                        </tr>
86                                                        <tr>
87                                                                <td>&nbsp;</td>
88                                                                <td>&nbsp;</td>
89                                                                <td>&nbsp;</td>
90                                                        </tr>
91                                                </tbody>
92                                        </table>
93                                        Type the text here</p>
94                                </td></tr></table>
95                        ]]>
96                </Html>
97        </Template>
98</Templates>
Note: See TracBrowser for help on using the repository browser.