factor/extra/webapps/help/search.xml

76 lines
2.2 KiB
XML

<?xml version='1.0' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<t:base t:href="$help-webapp/content/" />
<title>Search - Factor Documentation</title>
<style>
a:link { text-decoration: none; color: #104e8b; }
a:visited { text-decoration: none; color: #104e8b; }
a:active { text-decoration: none; color: #104e8b; }
a:hover { text-decoration: underline; color: #104e8b; }
body {
font-family: sans-serif; font-style: normal
font-size: 12pt;
}
.navbar {
background-color: #f3f2ea;
padding: 5px;
border: 1px solid #ccc;
font: 9pt sans-serif;
margin-bottom: 10px;
}
h2 { background-color: #f5f5f5; color: #222; }
hr { border: 0; background-color: #ccc; color: #ccc; height: 1px; }
</style>
</head>
<body>
<t:html t:name="navbar"/>
<t:if t:value="articles">
<h2>Articles</h2>
<ul>
<t:each t:name="articles">
<li> <t:link t:name="value" /> </li>
</t:each>
</ul>
</t:if>
<t:if t:value="vocabs">
<h2>Vocabularies</h2>
<ul>
<t:each t:name="vocabs">
<li> <t:link t:name="value" /> </li>
</t:each>
</ul>
</t:if>
<t:if t:value="words">
<h2>Words</h2>
<ul>
<t:each t:name="words">
<li> <t:link t:name="value" /> </li>
</t:each>
</ul>
</t:if>
<hr />
<p>This is the <a href="http://factorcode.org" target="_top">Factor</a>
documentation, generated offline from a
<code>load-all</code> image. If you want, you can also browse the
documentation from within the <a href="http://factorcode.org" target="_top">Factor</a> UI.</p>
</body>
</html>
</t:chloe>