Add basic index.html

This commit is contained in:
Erik Johnston 2020-10-16 16:49:08 +01:00
parent eb4e9acd7f
commit ff648d2f84
2 changed files with 45 additions and 0 deletions

View file

@ -58,6 +58,7 @@ steps:
- ./mdbook build server -d /workdir/implementation-guides/implementation-guides/server
- ./mdbook build client -d /workdir/implementation-guides/implementation-guides/client
- ./mdbook build application-services -d /workdir/implementation-guides/implementation-guides/application-services
- cp index.html /workdir/implementation-guides/implementation-guides/
- tar -czf implementation-guides.tar.gz implementation-guides
artifact_paths:
- implementation-guides/implementation-guides.tar.gz

View file

@ -0,0 +1,44 @@
<!DOCTYPE HTML>
<html lang="en" class="sidebar-visible no-js light">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>Matrix Implementation Guides</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" />
<link rel="shortcut icon" href="server/favicon.svg">
<link rel="stylesheet" href="server/css/variables.css">
<link rel="stylesheet" href="server/css/general.css">
<link rel="stylesheet" href="server/css/chrome.css">
<!-- Fonts -->
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">
</head>
<body>
<div id="page-wrapper" class="page-wrapper">
<div id="content" class="content">
<h1>Matrix Implementation Guides</h1>
The current guides are:
<ul>
<li><a href="application-services">Application Services</a></li>
<li><a href="client">Client</a></li>
<li><a href="server">Server</a></li>
</ul>
</div>
</div>
</body>
</html>