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 5
/
Copy pathindex.html
56 lines (44 loc) · 1.58 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
---
layout: default
title: Home
---
<div class="page-content home-page">
<div class="wrapper">
<div class="index">
<ul class="icons">
<li><img src="/assets/img/icons-workers.png" alt="Worker Icons"></li>
</ul>
<h1 class="page-heading">We work for you.</h1>
<h4>You have rights. We’ll help you exercise them. This site is dedicated to the needs of workers and is designed to improve based on your input.</h4>
<div class="usa-grid">
<div class="usa-width-one-whole">
<label for="worker-profile">I am a:</label>
</div>
</div>
<div class="usa-grid">
<div class="usa-width-two-thirds top-margin">
<div class="profile-wrapper">
<div class="awesomplete">
<input list="workerprofiles" class="dropdown-input-index" autocomplete="off" aria-autocomplete="list" placeholder="enter your job title">
<datalist id="workerprofiles">
{% for profile in site.profiles %}
{% if profile.layout == "profiles" %}
<option value="{{ profile.name }}" data-url="/profiles/{{ profile.val}}.html">{{ profile.name }}</option>
{% endif %}
{% endfor %}
</ul>
</div>
<button class="dropdown-btn" type="button"></button></h1>
</div>
</div>
<div class="usa-width-one-third top-margin side-margin">
<div class="button_wrapper">
<a class="usa-button usa-button-big usa-button-secondary learn-rights" href="profiles/all.html">Learn My Rights</a>
</div>
</div>
</div>
<a href="profiles/all.html" class="explore-rights">Explore all rights</a>
</div>
</div>
</div>
</div>