forked from cfpb/cfpb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·251 lines (231 loc) · 12.9 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
---
layout: default
title: Home
---
<section class="hero">
<div class="wrap">
<section class="intro">
<h1>We'd like to share our work with you</h1>
<p>The Consumer Financial Protection Bureau is a federal agency dedicated to ensuring that
markets for consumer financial products and services are fair, transparent, and
competitive. To support this mission, technologists at the CFPB build external
resources for the public and internal tools to help the Bureau run more efficiently.
</p>
<ul class="learn-more">
<li class="learn-more_item">
<a class="call-to-action" href="articles/introducing-cfpb-open-tech/">
Learn more
</a>
</li>
<li class="learn-more_item">
<a class="call-to-action"
href="source-code-policy/">
View our Source Code Policy
</a>
</li>
</ul>
</section>
<section class="sidebar off-the-press">
<h2 class="sidebar_head">Off the press</h2>
<ul class="sidebar_list nav-list">
{% for post in site.posts limit:2 %}
<li class="sidebar_list_item">
<h3 class="sidebar_list_item_head">
{% if post.external-url %}
<a href="{{ post.external-url }}">
{% else %}
<a href="{{ post.url | remove_first:'/' }}/">
{% endif %}
{{ post.title }}
</a>
</h3>
<div class="sidebar_list_item_meta entry_meta">
{% if post.author %}
By <span class="author">{{ post.author }}</span> –
{% endif %}
{% if post.date %}
<time datetime="{{ post.date | date: '%b %d, %Y' }}">
{{ post.date | date: '%b %d, %Y' }}
</time>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
</section>
</div>
</section> <!-- /.hero -->
<section class="featured-projects">
<ul class="wrap nav-list">
<li class="featured-project">
<div class="featured-project_img__eregs"></div>
<h3 class="featured-project_head">
<a href="http://www.consumerfinance.gov/eregulations/">eRegulations</a>
</h3>
<p class="featured-project_desc">eRegulations is a web-based application that makes
regulations easy to find, read, and understand.</p>
<p class="featured-project_links">
<a class="call-to-action"
href="http://www.consumerfinance.gov/blog/making-regulations-easier-to-use/">
Learn more</a> |
<a class="call-to-action" href="http://eregs.github.io/eregulations/">
Project homepage</a>
</p>
</li>
<li class="featured-project">
<div class="featured-project_img__pdp"></div>
<h3 class="featured-project_head">
<a href="http://www.consumerfinance.gov/hmda/">Public Data Platform</a>
</h3>
<p class="featured-project_desc">Learn more about home mortgage data, download the data
yourself, or build new tools using our API.</p>
<div class="featured-project_links">
<a class="call-to-action" href="https://github.com/cfpb/qu">GitHub repo</a> |
<a class="call-to-action" href="http://cfpb.github.io/api/hmda/">API docs</a>
</div>
</li>
<li class="featured-project">
<div class="featured-project_img__collab"></div>
<h3 class="featured-project_head">
<a href="http://cfpb.github.io/collab/">Collab</a>
</h3>
<p class="featured-project_desc">Collab is a Django project with a standard set of
configurations to provide services to reusable apps.</p>
<div class="featured-project_links">
<a class="call-to-action" href="http://github.com/cfpb/collab">GitHub repo</a>
</div>
</li>
</ul>
</section>
<section class="articles wrap">
<h2 class="section-head"><i class="icon-document"></i> Articles</h2>
<section class="featured-entries">
{% for post in site.posts limit:1 %}
<article class="entry">
<h3 class="entry_title">
{% if post.external-url %}
<a href="{{ post.external-url }}">
{% else %}
<a href="{{ post.url | remove_first:'/'}}/">
{% endif %}
{{ post.title }}
</a>
</h3>
{% if post.tagline %}
<p class="entry_tagline">{{ post.tagline }}</p>
{% endif %}
{% if post.excerpt %}
<p class="entry_description">{{ post.excerpt | markdownify }}</p>
{% endif %}
<div class="entry_meta">
{% if post.author %}
By <span class="author">{{ post.author }}</span> –
{% endif %}
{% if post.date %}
<time datetime="{{ post.date | date: '%b %d, %Y' }}">
{{ post.date | date: '%b %d, %Y' }}
</time>
{% endif %}
{% comment %}
{% if post.tags %}
<div class="tags cf">
<h4 class="tags_head">Tags:</h4>
<ul class="tag-list">
{% for tag in post.tags %}
<li class="tag">
<a class="tag_link">{{ tag }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endcomment %}
</div>
<!-- <a class="entry_read-more-link call-to-action__icon"
href="{{ post.url | remove_first:'/'}}/">
Read more <i class="icon-right"></i>
</a> -->
</article>
{% endfor %}
</section>
<section class="sidebar more-articles">
<h2 class="sidebar_head">More articles</h2>
<ul class="sidebar_list nav-list">
{% for post in site.posts limit:3 offset:1 %}
<li class="sidebar_list_item">
<h3 class="sidebar_list_item_head">
{% if post.external-url %}
<a href="{{ post.external-url }}">
{% else %}
<a href="{{ post.url | remove_first:'/' }}/">
{% endif %}
{{ post.title }}
</a>
</h3>
<div class="sidebar_list_item_meta entry_meta">
{% if post.author %}
By <span class="author">{{ post.author }}</span> –
{% endif %}
{% if post.date %}
<time datetime="{{ post.date | date: '%b %d, %Y' }}">
{{ post.date | date: '%b %d, %Y' }}
</time>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
<!-- Hide until we have published at least 4 articles -->
<!-- <a class="more-articles_read-more-link call-to-action__icon"
href="articles/">
Read more articles <i class="icon-right"></i>
</a> -->
</section>
</section>
<section class="repositories wrap">
<h2 class="section-head"><i class="icon-github"></i> Repositories</h2>
<section class="repos">
<section class="repo">
<h3 class="repo_name"><a href="https://github.com/cfpb/idea-box">idea-box</a></h3>
<p class="repo_description">An application that lets an organization collect ideas, comment on them, and vote them
up.</p>
</section>
<section class="repo">
<h3 class="repo_name"><a href="https://github.com/cfpb/ec2mapper">ec2mapper</a></h3>
<p class="repo_description">EC2mapper is a web application that provides a user-friendly interface to view Amazon AWS
network configurations, while allowing changes to be easily tracked over time.</p>
</section>
<section class="repo">
<h3 class="repo_name"><a href="https://github.com/cfpb/transit_subsidy">transit_subsidy</a></h3>
<p class="repo_description">Open source version of a simple Transit Subsidy intake form that is commonly used by United
States federal government agencies. <i>Home of the first citizen pull request accepted by
the U.S. government!</i></p>
</section>
</section>
<section class="sidebar more-repos">
<h2 class="sidebar_head">More repositories</h2>
<ul class="sidebar_list nav-list">
<li class="sidebar_list_item">
<h3 class="sidebar_list_item_head">
<a href="http://github.com/cfpb/django-nudge">django-nudge</a>
<i class="icon-external-link"></i>
</h3>
</li>
<li class="sidebar_list_item">
<h3 class="sidebar_list_item_head">
<a href="http://github.com/cfpb/django-cache-tools">django-cache-tools</a>
<i class="icon-external-link"></i>
</h3>
</li>
<li class="sidebar_list_item">
<h3 class="sidebar_list_item_head">
<a href="https://github.com/cfpb/hmda-tools">hmda-tools</a>
<i class="icon-external-link"></i>
</h3>
</li>
</ul>
<a class="more-repos_view-all-link call-to-action__icon" href="https://github.com/cfpb">
View all repositories <i class="icon-external-link"></i>
</a>
</section>
</section>