factor/extra/webapps/help/search.xml

85 lines
2.7 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: #eeeee0;
padding: 5px;
border: 1px solid #ccc;
font:9pt "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif;
margin-bottom: 10px;
}
h2 { background-color: #f5f5f5; color: #222; }
hr { border: 0; background-color: #ccc; color: #ccc; height: 1px; }
</style>
</head>
<body>
<div class="navbar">
<b> Factor Documentation </b> |
<a href="/">Home</a> |
<a href="article-conventions.html">Glossary</a> |
<t:form t:action="$help-webapp/search" style="display:inline;">
<t:field t:name="search" />
<button type="submit">Search</button>
</t:form>
<a href="http://factorcode.org" style="float:right; padding: 4px;" >factorcode.org</a>
</div>
<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>