mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
124 lines
3.5 KiB
Plaintext
124 lines
3.5 KiB
Plaintext
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<?py ## Template for larch documentation table of contents page (using pytenjin) ?>
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
|
<title>Table of Contents</title>
|
|
<!-- (en) Add your meta data here -->
|
|
|
|
<link href="css/larchdocs.css" rel="stylesheet" type="text/css"/>
|
|
<!--[if lte IE 7]>
|
|
<link href="css/yaml/core/iehacks.css" rel="stylesheet" type="text/css" />
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<!-- skip link navigation -->
|
|
<ul id="skiplinks">
|
|
<li><a class="skip" href="#col1">Skip to main content (Press Enter).</a></li>
|
|
<?py if webpage: ?>
|
|
<li><a class="skip" href="#col3">Skip to navigation (Press Enter).</a></li>
|
|
<?py #endif ?>
|
|
</ul>
|
|
|
|
<div class="page_margins">
|
|
<div class="page">
|
|
<div id="top"><div id="tm"></div></div>
|
|
<!-- begin: #col1 -->
|
|
<div id="col1" role="main">
|
|
<div id="col1_content">
|
|
<div id="header" role="banner">
|
|
<h1><span><em>live Arch Linux</em> builder</span></h1>
|
|
</div>
|
|
|
|
<!-- begin: #col3 navigation column -->
|
|
<div id="col3" role="complementary">
|
|
<div id="col3_content">
|
|
<img class="indent2" alt="larch logo" src="css/screen/larch150x.png" width="150" height="150" />
|
|
<?py if webpage: ?>
|
|
<div class="vlist">
|
|
<ul>
|
|
<li><a href="../index.html"><h6 class="rlink">Home</h6></a></li>
|
|
</ul>
|
|
</div>
|
|
<?py #endif ?>
|
|
</div>
|
|
</div>
|
|
<!-- end: #col3 -->
|
|
|
|
<h2>Table of Contents</h2>
|
|
<p>This documentation covers <em>larch</em> version 8.2.</p>
|
|
|
|
<p>WARNING: The structure of the profiles has changed a little since larch-7.2,
|
|
so it would be best to start afresh - but actually only small changes would be
|
|
necessary, primarily to the /boot directory.
|
|
</p>
|
|
<p>[Last modified for larch-8.2.0, Oct 24, 2010]
|
|
</p>
|
|
|
|
|
|
|
|
<ul class="toc">
|
|
<?py
|
|
level = 1
|
|
for item in items:
|
|
l = int(item['level'])
|
|
while l > level:
|
|
html = ' '*level + '<ul>'
|
|
level += 1
|
|
?>
|
|
#{html}
|
|
<?py
|
|
#endwhile
|
|
while l < level:
|
|
level -= 1
|
|
html = ' '*level + '</ul>'
|
|
?>
|
|
#{html}
|
|
<?py
|
|
#endwhile
|
|
?>
|
|
${' '*level}<li class="level${level}"><a href="${item['filename']}">${item['pagetitle']}</a></li>
|
|
<?py
|
|
subitems = item['anchors']
|
|
if subitems:
|
|
html = ' '*level + '<ul>'
|
|
?>
|
|
#{html}
|
|
<?py
|
|
for subitem in subitems:
|
|
?>
|
|
${' '*level}<li class="level${level+1}"><a href="${item['filename']}#${subitem[1]}">${subitem[2]}</a></li>
|
|
<?py
|
|
#endfor
|
|
html = ' '*level + '</ul>'
|
|
?>
|
|
#{html}
|
|
<?py
|
|
#endif
|
|
#endfor
|
|
?>
|
|
</ul>
|
|
|
|
<div class="topref"><a href="#top">Top</a></div>
|
|
</div>
|
|
<!-- begin: #footer -->
|
|
<div id="footer">
|
|
<div id="footer-content" role="contentinfo">© 2010 Michael Towers<br />
|
|
Page layout assisted by <a href="http://www.yaml.de/">YAML</a> and
|
|
<a href="http://www.kuwata-lab.com/tenjin/">pyTenjin</a>
|
|
</div>
|
|
</div>
|
|
<!-- end: #footer -->
|
|
</div>
|
|
<!-- end: #col1 -->
|
|
<div id="bottom"><div id="bl"><div id="bm"></div></div></div>
|
|
</div>
|
|
</div>
|
|
<!-- full skiplink functionality in webkit browsers -->
|
|
<script src="css/yaml/core/js/webkit-focusfix.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|