This repository has been archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
85 lines (83 loc) · 3.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: home
---
<div class="usa-hero">
<div class="usa-hero-overlay">
{% include header.html %}
<div class="usa-grid">
<div class="usa-width-one-whole">
<h2>BE MORE PRODUCTIVE</h2>
<h5>Search and compare cloud technologies.</h5>
<a href="{{site.baseurl}}/products" class="usa-button usa-button-secondary" id="products-button">Explore Products</a>
</div>
</div>
<div class="hero-search">
<div class="hero-search-container">
<form id="hero-search-form" action="{{site.baseurl}}/products" class="usa-search usa-search-big">
<div role="search">
<label class="usa-sr-only" for="search-field-big">Search big</label>
<input id="search-field-big" type="search" name="q" placeholder="what are you looking for? Click or press / to start searching">
<button type="submit">
<span class="usa-search-submit-text">Search</span>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="usa-content">
<section class="features">
<div class="usa-grid">
<h1>Find the right product for your team.</h1>
<div class="usa-grid">
<div class="usa-width-one-half features-description">
<ul>
<li>
<h2>Explore and compare</h2>
<p>
Apps.gov features over 100 cutting-edge products to make your team more productive.
</p>
</li>
<br/>
<li>
<h2>Quickly evaluate a product</h2>
<p>
Each product page includes information on requirements, ATOs, and procurement options.
</p>
</li>
</ul>
</div>
<div class="home-products-list usa-width-one-half">
<ul class="product-logos">
{% assign urlList = ',' %}
{% for product_hash in site.data.products | limit: 46 %}{% assign product = product_hash[1] %}
{% if product.logo_url %}
{% capture compareUrl %},{{ product.logo_url }},{% endcapture %}
{% if urlList contains compareUrl %}{% else %}
<li class="product-logo">
<img src="{% if product.logo_url or product.logo %}{{ site.baseurl }}/assets/img/product_logos/{% if product.logo_url %}{{ product.logo_url }}{% else %}{{ product.logo }}{% endif %}{% endif %}">
</li>
{% capture tempList %}{{ urlList }}{{ product.logo_url }},{% endcapture %}
{% assign urlList = tempList %}
{% endif %}
{% endif %}
{% endfor %}
</ul>
<div class="gradient">
</div>
</div>
</div>
</div>
</section>
<section class="list-product">
<div class="usa-grid">
<h1>Sell to the Federal Government</h1>
<p>
Apps.gov is a marketplace serving <span id="gov-stat">4.2 million</span> federal employees. Learn
more about listing your product.
</p>
<a href="{{site.baseurl}}/listing" class="usa-button usa-button-outline-inverse usa-button-big">List your Product <i class="fa fa-angle-double-right"></i></a>
</div>
</section>
</div>