diff options
Diffstat (limited to 'website/src')
-rw-r--r-- | website/src/docs/index.html | 43 | ||||
-rw-r--r-- | website/src/docs/style.css | 11 |
2 files changed, 54 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 -%] diff --git a/website/src/docs/style.css b/website/src/docs/style.css new file mode 100644 index 0000000..ecf24d1 --- /dev/null +++ b/website/src/docs/style.css @@ -0,0 +1,11 @@ +ul { + list-style: none; + margin: 0px; + padding: 0px; +} + +span.notes { + display: block; + font-size: 70%; + color: #888; +}
\ No newline at end of file |