- Fix landing page for enterprise

- Fix tour and tour content for enterprise
This commit is contained in:
Joseph Schorr 2014-06-03 14:09:38 -04:00
parent c630d7e948
commit 8a374b1c34
3 changed files with 19 additions and 14 deletions

View file

@ -70,7 +70,7 @@
</div>
</div>
<div class="row testimonial">
<div class="row testimonial" quay-require="['BILLING']">
<div class="message">
Being responsible for operations of a startup means finding tools that just work, and Quay.io has provided that for us. Whenever we've needed a new feature, or found an issue, it was resolved immediately. I wish every third party we relied on offered the same level of support as Quay.io.
</div>
@ -84,7 +84,7 @@
</div>
</div>
<div class="tour-action">
<div class="tour-action" quay-require="['BILLING']">
<a href="/plans?trial-plan=personal">
<button class="btn btn-success">
Start free trial
@ -100,7 +100,7 @@
<div class="col-md-12">
<div class="tour-section-title">Organize your repositories like you organize your company</div>
<div class="tour-section-description">
Organizations in Quay provide unique features for businesses and other
Organizations in Quay provide unique features for <span quay-require="['BILLING']">businesses and other</span>
groups, including team-based sharing and fine-grained permission controls.
</div>
</div>
@ -196,7 +196,7 @@
</div>
</div>
<div class="row testimonial">
<div class="row testimonial" quay-require="['BILLING']">
<div class="message">
Docker is at the core of Aptible's deployment platform, and Quay provides the secure repository hosting we need to safely store our customer's application images, and our own. With its thorough team access control model, we can be sure that only authorized users are able to access a Docker image repository. No other Docker repository index makes this as easy as Quay.
</div>
@ -210,7 +210,7 @@
</div>
</div>
<div class="tour-action">
<div class="tour-action" quay-require="['BILLING']">
<a href="/organizations/new/" data-title="Starts the process to create a new organization" bs-tooltip="tooltip.title">
<button class="btn btn-success">
Create New Organization

View file

@ -1,5 +1,11 @@
<div class="landing-content">
<div class="jumbotron landing">
<div class="jumbotron landing">
<div class="landing-background" ng-class="user.anonymous ? 'landing': 'signedin'"></div>
<div class="landing-filter" ng-class="user.anonymous ? 'landing': 'signedin'"></div>
<div class="landing-content">
<img class="logo" src="/static/img/box-logo.png">
<div class="header-bar"></div>
<div class="container">
<div class="row messages">
<div class="col-md-7">
@ -9,19 +15,20 @@
</span>
<h1>Quay.io Enterprise Edition</h1>
</div>
<div ng-show="!user.anonymous">
<span class="namespace-selector" user="user" namespace="namespace" ng-show="user.organizations"></span>
<div class="resource-view" resource="my_repositories">
<!-- Repos -->
<div ng-show="my_repositories.value.length > 0">
<h2>Top Repositories</h2>
<h2>Top Repositories</h2>
<div class="repo-listing" ng-repeat="repository in my_repositories.value">
<span class="repo-circle no-background" repo="repository"></span>
<a ng-href="/repository/{{ repository.namespace }}/{{ repository.name }}">{{repository.namespace}}/{{repository.name}}</a>
<div class="markdown-view description" content="repository.description" first-line-only="true"></div>
</div>
<a href="/repository/?namespace={{ user.username }}">See All Repositories</a>
</div>
<!-- No Repos -->
@ -41,7 +48,6 @@
<div class="col-md-4 col-md-offset-1">
<div ng-show="user.anonymous">
<h3>Create Username</h3>
<div class="signup-form"></div>
</div>
<div ng-show="!user.anonymous" class="user-welcome">
@ -52,7 +58,6 @@
</div>
</div> <!-- col -->
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- jumbotron -->
</div>
</div>
</div> <!-- jumbotron -->

View file

@ -2,7 +2,7 @@
<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">Enterprise</a></li>
<li ng-class="kind == 'enterprise' ? 'active' : ''" quay-require="['BILLING']"><a href="/tour/enterprise">Enterprise</a></li>
</ul>
</div>