diff options
Diffstat (limited to 'website/src/docs/index.html')
-rw-r--r-- | website/src/docs/index.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/website/src/docs/index.html b/website/src/docs/index.html new file mode 100644 index 0000000..ae1f289 --- /dev/null +++ b/website/src/docs/index.html @@ -0,0 +1,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 -%] |