<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi Kersten!<br>
<br>
<div class="moz-cite-prefix">Am 11-03-2014 23:10, schrieb Kersten
Richter:<br>
</div>
<blockquote
cite="mid:1394590240-4154-1-git-send-email-kersten@us.ibm.com"
type="cite">
<pre wrap="">Style sheet is called kimchi.css. Not sure how the xsl works so wasn't sure how to get it included in the build. Can someone please take a look? This line needs to be in the header:
<link rel="stylesheet" type="text/css" href="kimchi.css" />
I looked around the open source site but didn't see anything promising.
let me know if I can do anything to help or if this is a pipe dream.
</pre>
</blockquote>
<br>
It's very easy to link a CSS to an XSL file. Inside the tag
"<xsl:template match="/">" there's a full template of the HTML
page. Notice the regular <head> tag, with <title> and a
<link> tag to set a custom icon. You can add exactly that line
you provided above to the <head> tag, just like a regular HTML
file. So we would have something like:<br>
<tt><br>
</tt><tt><html></tt><tt><br>
</tt><tt> <head></tt><tt><br>
</tt><tt> <title>...</title></tt><tt><br>
</tt><tt> <link set-custom-icon /></tt><tt><br>
</tt><b><tt> <link set-css-file /></tt></b><tt><br>
</tt><tt> </head></tt><tt><br>
</tt><tt></html></tt><br>
</body>
</html>