137 lines
3.5 KiB
HTML
137 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Azure API Apps</title>
|
|
<style>
|
|
body {
|
|
background: #fff;
|
|
color: #505050;
|
|
font: 14px 'Segoe UI', tahoma, arial, helvetica, sans-serif;
|
|
margin: 20px;
|
|
padding: 0;
|
|
}
|
|
|
|
#header {
|
|
background: #efefef;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 48px;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
padding: 0 30px;
|
|
line-height: 150px;
|
|
}
|
|
|
|
p {
|
|
font-size: 20px;
|
|
color: #fff;
|
|
background: #969696;
|
|
padding: 0 30px;
|
|
line-height: 50px;
|
|
}
|
|
|
|
#main {
|
|
padding: 5px 30px;
|
|
}
|
|
|
|
.section {
|
|
width: 21.7%;
|
|
float: left;
|
|
margin: 0 0 0 4%;
|
|
}
|
|
|
|
.section h2 {
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
margin: 0;
|
|
border-bottom: 1px solid silver;
|
|
padding-bottom: 12px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.section.first {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.section.first h2 {
|
|
font-size: 24px;
|
|
text-transform: none;
|
|
margin-bottom: 25px;
|
|
border: none;
|
|
}
|
|
|
|
.section.first li {
|
|
border-top: 1px solid silver;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.section.last {
|
|
margin-right: 0;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
line-height: 20px;
|
|
}
|
|
|
|
li {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
a {
|
|
color: #267cb2;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="header">
|
|
<h1>Your Azure API App</h1>
|
|
<p>Congratulations! You've created a project</p>
|
|
</div>
|
|
|
|
<div id="main">
|
|
|
|
<div class="section first">
|
|
<h2>This application consists of:</h2>
|
|
<ul>
|
|
<li>NuGet packages used to create an <a href="http://www.asp.net/web-api">ASP.NET Web API</a></li>
|
|
<li>Swagger metadata generation by <a href="http://www.nuget.org/packages/Swashbuckle">Swashbuckle</a></li>
|
|
<li>Metadata files used by the Azure Marketplace during API App Marketplace packaging</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Learn More</h2>
|
|
<ul>
|
|
<li><a href="http://go.microsoft.com/fwlink/?LinkID=529090">What is an Azure API App?</a></li>
|
|
<li><a href="http://go.microsoft.com/fwlink/?LinkID=529086">What is Azure App Service?</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Create, Debug, Deploy</h2>
|
|
<ul>
|
|
<li><a href="http://go.microsoft.com/fwlink/?LinkID=529089">Create an Azure API App</a></li>
|
|
<li><a href="http://go.microsoft.com/fwlink/?LinkID=529088">Deploy an API App</a></li>
|
|
<li><a href="http://go.microsoft.com/fwlink/?LinkID=529087">Debug an Azure API App</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section last">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |