Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / extras / source / misc_config / wizard / web / layouts / frame_left / index.html.xsl
blobabbfe484b49b4b8115c9c233055c4b2a2173136b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
19 <xsl:stylesheet version="1.0"
20 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
21 xmlns="http://www.w3.org/1999/xhtml">
23 <xsl:output method = "html"
24 media-type = "text/html"
25 indent = "yes"
26 doctype-public = "-//W3C//DTD HTML 4.0 Transitional//EN"
27 omit-xml-declaration = "yes"
28 standalone = "yes" />
31 <!-- =============================
32 ROOT
33 ================================== -->
36 <xsl:template match="/">
37 <html>
38 <xsl:call-template name="head"/>
39 <xsl:call-template name="frameset"/>
40 </html>
41 </xsl:template>
44 <!-- =============================
45 HTML FRAMES
46 ================================== -->
49 <xsl:template name="frameset">
50 <frameset rows="*" cols="284,*" framespacing="0" frameborder="NO" border="0">
51 <frame src="tocframe.html" name="tocframe" scrolling="Auto" noresize=""/>
52 <frame src="mainframe.html" name="mainframe"/>
53 </frameset>
54 <noframes/>
55 <body>
56 </body>
57 </xsl:template>
60 <!-- =============================
61 HTML HEAD
63 this section should not be changed
64 ================================== -->
66 <xsl:template name="head">
67 <head>
68 <title>
69 <xsl:value-of select="/session/general-info/@title"/>
70 </title>
71 <!-- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -->
72 <meta name="description" content="{/session/general-info/@description}"/>
73 <meta name="keywords" content="{/session/general-info/@keywords}"/>
74 <meta name="author" content="{/session/general-info/@author}"/>
75 <meta name="email" content="{/session/general-info/@email}"/>
76 <meta name="copyright" content="{/session/general-info/@copyright}"/>
77 <!-- create date?
78 update date?
79 fav icon?
80 -->
81 <link REL="shortcut icon" href="images/favicon.ico" type="image/ico"/>
82 <link href="style.css" rel="stylesheet" type="text/css"/>
84 </head>
85 </xsl:template>
87 </xsl:stylesheet>