kong-dashboard
Version:
Web UI for managing Kong gateway
52 lines (51 loc) • 2.13 kB
HTML
<div class="container">
<h3 class="header">Welcome to Kong Dashboard</h3>
<p class="flow-text">
Kong dashboard is a central hub for you to manage your Kong setup.
</p>
<p> </p>
<div class="row">
<div class="col s4 home-block">
<h5>Learn Kong</h5>
<p>
This Dashboard will let you interact with your Kong API to create or edit <strong>Services</strong>,
<strong>Routes</strong>, <strong>Consumers</strong> and <strong>Plugins</strong>.
</p>
<p>
Wondering what all that means? Have a look at the Kong documentation.
</p>
</div>
<div class="col s4 home-block">
<h5>Get started</h5>
<p>Not sure where to start?</p>
<p>
How about listing your current <a href="#!/services">Services</a>,
<a href="#!/routes">Routes</a> or
<a href="#!/consumers">Consumers</a>, creating a <a href="#!/services/add">new Service</a> or a
<a href="#!/consumers/add">new Consumer</a>?
</p>
</div>
<div class="col s4 home-block">
<h5>Contribute</h5>
<p>Kong Dashboard is an open source project hosted on github.</p>
<p>Special thanks to 5 top contributors:</p>
<div class="chip" ng-repeat="contributor in contributors">
<img ng-src="{{ contributor.avatar_url }}" alt="{{ contributor.login }} avatar">
<a href="{{ contributor.html_url }}">
{{ contributor.login }}
</a>
</div>
</div>
</div>
<div class="row">
<div class="col s4">
<a href="https://docs.konghq.com/" target="_blank" class="btn">Documentation</a>
</div>
<div class="col s4">
<a href="#!/services/add" class="btn">Create a Service</a>
</div>
<div class="col s4">
<a href="https://github.com/PGBI/kong-dashboard" target="_blank" class="btn">Github page</a>
</div>
</div>
</div>