blob: ae1f2894cb4d5b70f2bfbae67f449de8dc1dfbb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
[% topdir = ".." -%]
[% PROCESS globals -%]
[% WRAPPER page
title = "virt tools: Documentation"
h1 = "virt tools: Documentation"
section = "docs"
local_stylesheet = 1
%]
[% FOREACH x IN external_docs_projects %]
[% WRAPPER h2 h2="$x" anchor="$x" %]
<ul>
[% FOREACH y IN external_documents %]
[% IF y.project == x %]
<li>
<a href="[% y.url %]">[% y.name %]</a>
[% y.description %]
<span class="notes">
Difficulty: [% y.difficulty %] out of 5.
</span>
</li>
[% END %]
[% END %]
</ul>
[% END %]
[% END %]
[% WRAPPER h2 h2="Contribute" anchor="contribute" %]
<p>
Not found what you're looking for?
<a href="[% topdir %]/contact/">Contact us via our mailing list
or chat (IRC).</a>
</p>
<p>
Do you know another source for virt tools documentation?
<a href="[% topdir %]/contact/">Send us a note on the mailing list.</a>
</p>
[% END %]
[% END -%]
|