source: clfs-embedded/BOOK/stylesheets/top-index.xsl@ 8c3de96

Last change on this file since 8c3de96 was 4d57ce8, checked in by Maarten Lankhorst <m.b.lankhorst@…>, 18 years ago

Add arm book

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version='1.0' encoding='ISO-8859-1'?>
2<!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6
7<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8 xmlns="http://www.w3.org/1999/xhtml"
9 version="1.0">
10
11 <xsl:output method="html" encoding="iso-8859-1"/>
12
13 <xsl:template match="/">
14 <html>
15 <head>
16 <title>
17 Cross-Compiled Linux From Scratch - Embedded
18 </title>
19 <style type="text/css">
20 <xsl:text>
21body {
22 font-family: sans-serif;
23 text-align: left;
24 background: #fff;
25 color: #333;
26 margin: 1em;
27 padding: 0;
28 font-size: 1em;
29 line-height: 1.2em
30}
31
32a:link { color: #22b; }
33a:visited { color: #7e4988; }
34a:hover, a:focus { color: #d30e08; }
35a:active { color: #6b77b1;}
36
37h1, h2 {
38 color: #000;
39 font-weight: bold;
40}
41
42h3, h4, h5, h6 {
43 color: #222;
44}
45
46h1 { font-size: 173%; text-align: center; }
47h2 { font-size: 144%; text-align: center; }
48h3 { font-size: 120%; padding-top: 0.2em; margin-top: 0.3em; }
49h4 { font-size: 110%;}
50
51div.toc {
52 padding-left: 1em;
53 margin-top: 1em;
54}
55
56div.toc ul li h3, div.toc ul li h4 {
57 margin: .4em;
58}
59
60div.book {
61 padding-bottom: 0.5em;
62}
63
64div.book h1 {
65 background: #f5f6f7;
66 margin: 0px auto;
67 padding: 0.5em;
68}
69
70div.book h2 {
71 background: #dbddec;
72 margin: 0px auto;
73 padding: 0.2em;
74}
75div.authorgroup, div p.copyright {
76 background: #f5f6f7;
77 margin: 0px auto;
78 padding: 1em 0.5em;
79}
80
81hr {
82 background: #dbddec;
83 height: .3em;
84 border: 0px;
85 margin: 0px auto;
86 padding: 0;
87}
88 </xsl:text>
89 </style>
90 </head>
91 <body>
92 <xsl:apply-templates/>
93 </body>
94 </html>
95 </xsl:template>
96
97 <xsl:template match="bookinfo">
98 <div class="book">
99 <div class="titlepage">
100 <xsl:apply-templates/>
101 <hr/>
102 </div>
103 <div class="toc">
104 <h3>
105 <xsl:text>Embedded Architecture (Under Development)</xsl:text>
106 </h3>
107 <ul>
108 <li>
109 <h4>
110 <a href="x86">
111 <xsl:text>X86</xsl:text>
112 </a>
113 </h4>
114 </li>
115 <li>
116 <h4>
117 <a href="mips">
118 <xsl:text>MIPS</xsl:text>
119 </a>
120 </h4>
121 </li>
122 <li>
123 <h4>
124 <a href="arm">
125 <xsl:text>ARM</xsl:text>
126 </a>
127 </h4>
128 </li>
129 <li>
130 <h4>
131 <a href="wrt">
132 <xsl:text>Wireless Routers -- MIPS Based</xsl:text>
133 </a>
134 </h4>
135 </li>
136 </ul>
137 </div>
138 </div>
139 </xsl:template>
140
141 <xsl:template match="title">
142 <div>
143 <h1 class="title">
144 <xsl:value-of select="."/>
145 </h1>
146 </div>
147 <div>
148 <h2 class="subtitle">
149 <xsl:text>Version &version;</xsl:text>
150 </h2>
151 </div>
152 </xsl:template>
153
154 <xsl:template match="authorgroup">
155 <div class="authorgroup">
156 <h3 class="author">
157 <xsl:value-of select="author[1]/firstname"/>
158 <xsl:text> </xsl:text>
159 <xsl:value-of select="author[1]/surname"/>
160 </h3>
161 <h3 class="author">
162 <xsl:value-of select="author[2]/firstname"/>
163 <xsl:text> </xsl:text>
164 <xsl:value-of select="author[2]/surname"/>
165 </h3>
166 <h3 class="author">
167 <xsl:value-of select="author[3]/firstname"/>
168 <xsl:text> </xsl:text>
169 <xsl:value-of select="author[3]/surname"/>
170 </h3>
171 </div>
172 </xsl:template>
173
174 <xsl:template match="copyright">
175 <div>
176 <p class="copyright">
177 <xsl:text>Copyright ©</xsl:text>
178 <xsl:apply-templates/>
179 </p>
180 </div>
181 </xsl:template>
182
183 <xsl:template match="year">
184 <xsl:value-of select="."/>
185 </xsl:template>
186
187 <xsl:template match="holder">
188 <xsl:value-of select="."/>
189 </xsl:template>
190
191 <xsl:template match="bibliosource">
192 <div>
193 <p class="copyright">
194 <em>
195 <xsl:apply-templates/>
196 </em>
197 </p>
198 </div>
199 </xsl:template>
200
201 <xsl:template match="subtitle|author|firstname|surname|legalnotice"/>
202
203</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.