22108f333d
There is no index.html start page for the QEMU HTML documentation. An index page is needed so that documentation can be browsed easily on the web. This patch adds an index.html.in template file where the QEMU version number is expanded. It is written in HTML instead of using the existing sphinx (rST) and texi documentation generators because they are heavyweight and would make this harder. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20191219135620.1626608-1-stefanha@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
18 lines
680 B
HTML
18 lines
680 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>QEMU @@VERSION@@ Documentation</title>
|
|
</head>
|
|
<body>
|
|
<h1>QEMU @@VERSION@@ Documentation</h1>
|
|
<ul>
|
|
<li><a href="qemu-doc.html">User Documentation</a></li>
|
|
<li><a href="qemu-qmp-ref.html">QMP Reference Manual</a></li>
|
|
<li><a href="qemu-ga-ref.html">Guest Agent Protocol Reference</a></li>
|
|
<li><a href="interop/index.html">System Emulation Management and Interoperability Guide</a></li>
|
|
<li><a href="specs/index.html">System Emulation Guest Hardware Specifications</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|