117 lines
2.9 KiB
XML
117 lines
2.9 KiB
XML
<?xml version='1.0' ?>
|
|
<!DOCTYPE html>
|
|
<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>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<style>
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
font-size: 12pt;
|
|
line-height: 150%;
|
|
}
|
|
|
|
a { color: #104e8b; }
|
|
a:link, a:visited, a:active { text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
|
|
input {
|
|
border: 1px solid #999999;
|
|
font-size: smaller;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
#container {
|
|
max-width: 800px;
|
|
}
|
|
|
|
.navbar {
|
|
margin: 0;
|
|
padding: 15px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
line-height: 150%;
|
|
border-bottom: 1px solid #ccc;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.navbar a {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.page {
|
|
margin: 15px;
|
|
}
|
|
|
|
h2 {
|
|
padding: 10px;
|
|
background-color: #f3f2ea;
|
|
color: #222;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
background-color: #ccc;
|
|
color: #ccc;
|
|
height: 1px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<t:html t:name="navbar"/>
|
|
|
|
<div class="page">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
</t:chloe>
|