-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
128 lines (108 loc) · 3.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
title: Vets.gov Dashboard
mission_statement: Vets.gov enables Veterans to <b>discover</b>, <b>apply</b> for, <b>track</b>, and <b>manage</b> the benefits they have earned
access: Improving Veteran access to benefits and services
tiles:
- name: Vets.gov accounts
layout: basic
datapoint: "29,210"
context: that have been secured to the highest level of federal certification (LOA3) against fraud, abuse, and cyber threats
- name: Mobile access
layout: compare_100bars
id: mobile
datapoint: 100
before: 46
- name: Cost savings
layout: basic
datapoint: "$22M"
context: to date
- name: Online portion of 582k annual healthcare applications
layout: compare_pie
id: applications
datapoint: 50
before: 10
after_text: 2017
- name: 508 compliance
layout: basic
datapoint: 100%
context: according to Section 508 accessibility scans, which improves the experience for Veterans who are blind or have low-vision
- name: Days in VA release cycle
layout: compare
datapoint: 1
after_text: Vets.gov
before: 90
before_text: Before
charts: core
accounts: core
feedback:
- name: Veteran reaction to healthcare application
layout: quote
text: This is super easy. I have not had this level of ease with a website for the government at all. This is awesome…the other website…leads you in back door that’s blocked with spikes and IEDs.”
- name: More Veteran research
url: research.html
layout: link
text: Learn more about our human centered design approach to Veteran research
---
{% include header.html %}
{% include tile_section.html %}
<div class="container">
<div class="row subtitle">
<div class="col-md-12">
<p>Enabling Veterans to:</p>
</div>
</div>
</div>
<div class="category-grid">
{% assign categories = "Discover, Apply, Track, Manage" | split: ", " %}
{% for category in categories %}
{% assign shaded = forloop.index | modulo: 2 %}
<div class="band{% if shaded == 0 %} shaded{% endif %}">
<div class="container">
<div class="row">
<div class="col-md-12 category-header">
<p>{{category}}</p>
</div>
</div>
<div class="row">
{% assign projects = site.boards | where: "category", category | sort: "status" %}
{% for project in projects %}
<div class="col-sm-6 col-md-3">
{% include tiles/project.html %}
</div>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>
<div class="quote-band">
<div class="container">
<div class="row subtitle">
<div class="col-md-12">
<h3>Veteran research</h3>
</div>
</div>
{% include research.html %}
</div>
</div>
<div class="container">
<div class="row subtitle">
<div class="col-md-12">
<p>Migration status</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4">
<div class="chart-wrapper">
<div class="chart-title">
Products delivered
</div>
<div class="chart-stage">
<p class="datapoint">39</p>
<span class="chart-notes">since Nov 2015 </span>
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}