Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / extras / source / misc_config / wizard / web / layouts / layoutF.xsl
blobfe2a2c69f54c484b2cfdfdb7f4a4ce33845e081e
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 <!-- =================================================
21 This template is a skeleton for single level TOC pages
22 with Frames : it generates the main index.html which contains
23 the frameset.
25 Do not overwrite this ! copy it and complete the missing
26 code.
28 I use the @ character whereever there is a missing code, so
29 you can use a simple find to navigate and find the
30 places...
32 ====================================================== -->
34 <xsl:stylesheet version="1.0"
35 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
36 xmlns="http://www.w3.org/1999/xhtml">
38 <xsl:output method = "html"
39 media-type = "text/html"
40 indent = "yes"
41 doctype-public = "-//W3C//DTD HTML 4.0 Transitional//EN"
42 omit-xml-declaration = "yes"
43 standalone = "yes" />
45 <xsl:include href="../layout.xsl"/>
48 <!-- =============================
49 ROOT
50 ================================== -->
53 <xsl:template match="/">
54 <html>
55 <xsl:call-template name="head"/>
56 <xsl:call-template name="frameset"/>
57 </html>
58 </xsl:template>
61 <!-- =============================
62 HTML FRAMES
63 ================================== -->
66 <xsl:template name="frameset">
68 <!--
69 @ Add frameset here...
71 the following noframes tag is
72 naturally optional.
73 -->
75 <noframes/>
77 <!-- the body tag has no influance here,
78 we add it for good style.
79 -->
81 <body>
82 </body>
83 </xsl:template>
86 <!-- =============================
87 HTML HEAD
89 this section should not be changed
90 ================================== -->
92 <xsl:template name="head">
93 <head>
94 <title>
95 <xsl:value-of select="/session/general-info/@title"/>
96 </title>
97 <!-- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -->
98 <meta HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-8"/>
99 <meta name="description" content="{/session/general-info/@description}"/>
100 <meta name="keywords" content="{/session/general-info/@keywords}"/>
101 <meta name="author" content="{/session/general-info/@author}"/>
102 <meta name="email" content="{/session/general-info/@email}"/>
103 <meta name="copyright" content="{/session/general-info/@copyright}"/>
104 <!-- create date?
105 update date?
106 fav icon?
108 <link href="style.css" rel="stylesheet" type="text/css"/>
110 </head>
111 </xsl:template>
113 </xsl:stylesheet>