source: trunk/instant_messenger/xsl/layer.xsl @ 260

Revision 260, 1.1 KB checked in by niltonneto, 16 years ago (diff)
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3<xsl:output method="html" omit-xml-declaration="yes"/>
4
5<xsl:template match="/layer">
6   <div class="layer"> 
7                <table border="0" cellpadding="0" cellspacing="0" class="font_menu">
8                        <tr>
9                                <td>
10                                        <img id="im__avatar" src="{path}templates/default/images/photo.png" style="margin:2px;"/>
11                                </td>
12                                <td style="valign:top">
13                                        <span style="font-weight:bold;"><xsl:value-of select="lang1" /> : </span>
14                                        <br></br>
15                                        <span id="im_layer_nickname"><xsl:value-of select="nickname" /></span>
16                                        <br></br>
17                                        <br></br>
18                                        <img src="{path}templates/default/images/addBuddy1.gif" style="cursor:pointer;" onclick="javascript:templates.add_user();" title="{lang2}" alt="{lang2}"/>
19                                        <img src="{path}templates/default/images/console_prefs1.png" style="cursor:pointer;" onclick="javascript:templates.preferences('span_preferences');" title="{lang3}" alt="{lang3}"/>                                   
20                                        <span id="span_preferences"></span>
21                                        <br></br>
22                                </td>   
23                        </tr>           
24                </table>
25   </div>               
26</xsl:template>
27
28</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.