This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/partials/about.html
Sida Chen 1dcc5d9d64 Add dependent packages in about page
Content of bill-of-materials.json is added to about page as a table.

Fixes https://jira.coreos.com/browse/QUAY-1170
2018-10-30 09:53:03 -04:00

84 lines
No EOL
3.3 KiB
HTML

<div class="cor-container about-us">
<h2>
About Us
</h2>
<div class="row">
<div class="col-sm-12 about-basic-info">
<h3>The Basics</h3>
</div>
<div class="col-sm-3">
<div class="about-basic-icon"><i class="fa fa-3x fa-calendar"></i></div>
<div class="about-basic-text">
<b> Founded</b><br>
2012
</div>
</div>
<div class="col-sm-3">
<div class="about-basic-icon"><i class="fa fa-3x fa-globe"></i></div>
<div class="about-basic-text">
<b> Location</b><br>
New York City, NY
</div>
</div>
<div class="col-sm-3">
<div class="about-basic-icon"><i class="fa fa-3x fa-users"></i></div>
<div class="about-basic-text">
<b> Local Worker Bees</b><br>
7
</div>
</div>
<div class="col-sm-3">
<div class="about-basic-icon"><img src="/static/img/coreos-globe-color-lg.png" style="height: 42px; vertical-align: bottom;"></div>
<div class="about-basic-text">
<b> CoreOS</b><br>
August, 2014
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h3>Our Story</h3>
<p>Quay was originally created out of necessity when we wanted to use Docker containers with our original IDE
product. We were using Docker containers to host and isolate server processes invoked on behalf of our users
and often running their code. We started by building the Docker image dynamically whenever we spun up a new
host node. The image was monolithic. It was too large, took too long to build, and was hard to manage
conflicts. It was everything that Docker wasn't supposed to be. When we decided to split it up into pre-built
images and host them somewhere, we noticed that there wasn't a good place to host images securely. Determined
to scratch our own itch, we built Quay, and officially launched it as an aside in our presentation to the <a
href="http://www.meetup.com/Docker-NewYorkCity/events/142142762/">Docker New York City Meetup</a> on October
2nd, 2013.</p>
<p>After launch, our customers demanded that Quay become our main focus. They rely on us to make sure they can
store and distribute their container images, and we understand that solemn responsibility. Our customers have
been fantastic with giving us great feedback and suggestions.</p>
<p>In August, 2014, Quay joined <a href="https://coreos.com">CoreOS</a> to provide registry support for the
enterprise. As ever, we are working as hard as we can to deliver on the promise and execute our vision of what
a top notch container registry should be.
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h3>Packages and Projects used</h3>
<table class="co-table co-fixed-table" style="margin-top: 20px;">
<thead>
<tr>
<td>Project Name</td>
<td>Project License</td>
<td>Type</td>
</tr>
</thead>
</table>
<div style="height: 300px; overflow-y: auto;">
<table class="co-table co-fixed-table">
<tr ng-repeat="project in billOfMaterials">
<td>{{project.project}}</td>
<td>{{project.license}}</td>
<td>{{project.format}}</td>
</tr>
</table>
</div>
</div>
</div>
</div>