mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-29 00:47:01 +00:00
87f7dd2230
Co-authored-by: victor-meng <56978073+victor-meng@users.noreply.github.com>
62 lines
2.0 KiB
HTML
62 lines
2.0 KiB
HTML
<!DOCTYPE html public "-//W3C//DTD HTML 4.0//en">
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Azure Cosmos DB Emulator</title>
|
|
|
|
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
|
|
</head>
|
|
|
|
<body>
|
|
<header class="header HeaderBg">
|
|
<div class="items">
|
|
<img class="DocDBicon" src="/CosmosDB_20170829.svg" alt="Azure Cosmos DB" />
|
|
<a class="createdocdbacnt" href="https://aka.ms/documentdbcreate" target="_blank">
|
|
Create an Azure Cosmos DB account <img class="rightarrowimg" src="/Arrow.svg" alt="" />
|
|
</a>
|
|
<span class="title">Azure Cosmos DB Emulator</span>
|
|
</div>
|
|
</header>
|
|
|
|
<nav class="fixedleftpane">
|
|
<div
|
|
id="Quickstart"
|
|
data-bind="click: quickstart_click, css:{ topSelected: navigationSelection() === 'quickstart' }"
|
|
>
|
|
<img id="imgiconwidth1" src="/Quickstart.svg" alt="Open Quick Start" />
|
|
<span class="menuQuickStart">Quickstart</span>
|
|
</div>
|
|
|
|
<div id="Explorer" data-bind="click: explorer_click, css:{ topSelected: navigationSelection() === 'explorer' }">
|
|
<img id="imgiconwidth1" src="/Explorer.svg" alt="Open Data Explorer" />
|
|
<span class="menuExplorer">Explorer</span>
|
|
</div>
|
|
|
|
<div>
|
|
<a class="feedbackstyle" href="https://aka.ms/cosmosdbfeedback?subject=Cosmos%20DB%20Emulator%20Feedback">
|
|
<img id="imgiconwidth1" src="/Feedback.svg" alt="Report Issue" />
|
|
<span class="menuExplorer">Report Issue</span>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<iframe
|
|
name="quickstart"
|
|
class="iframe"
|
|
src="quickstart.html"
|
|
data-bind="visible: navigationSelection() === 'quickstart'"
|
|
>
|
|
</iframe>
|
|
|
|
<iframe
|
|
name="explorer"
|
|
class="iframe"
|
|
src="explorer.html?platform=Emulator"
|
|
data-bind="visible: navigationSelection() === 'explorer'"
|
|
>
|
|
</iframe>
|
|
</body>
|
|
</html>
|