Start on tour UI and make some small changes to the overall Quay UI

This commit is contained in:
Joseph Schorr 2014-04-29 00:45:42 -04:00
parent 654c50b90d
commit c244f367ba
9 changed files with 347 additions and 122 deletions

11
static/partials/tour.html Normal file
View file

@ -0,0 +1,11 @@
<div class="tour-section-container">
<ul class="tour-sections">
<li ng-class="kind == '' || kind == 'features' ? 'active' : ''"><a href="/tour/features">Features</a></li>
<li ng-class="kind == 'organizations' ? 'active' : ''"><a href="/tour/organizations">Teams and Organizations</a></li>
<li ng-class="kind == 'enterprise' ? 'active' : ''"><a href="/tour/enterprise">For Enterprise</a></li>
</ul>
</div>
<div class="container">
<div class="tour-content" kind="kind"></div>
</div>