x
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
<ul class='usa-collection'>
<li class='usa-collection__item'>
<div class='usa-collection__calendar-date' href='https://www.performance.gov/presidents-winners-press-release/'>
<time datetime='2020-09-30T12:00:00+01:00'>
<span class='usa-collection__calendar-date-month'>
SEP
</span>
<span class='usa-collection__calendar-date-day'>
30
</span>
</time>
</div>
<div class='usa-collection__body'>
<h3 class='usa-collection__heading'>
<a class="usa-link" href="https://www.performance.gov/presidents-winners-press-release/">Gears of Government President’s Award winners
</a></h3>
<p class='usa-collection__description'>
In honor of National Women’s Small Business Month, we’ve partnered with SBA’s Office of Government Contracting and Business Development and Office of Program Performance, Analysis, and Evaluation to highlight the Women-Owned Small Businesses (WOSBs) data dashboard!'
</p>
</div>
</li>
<li class='usa-collection__item'>
<div class='usa-collection__calendar-date' href='https://www.performance.gov/sba-wosb-dashboard/'>
<time datetime='2020-09-30T12:00:00+01:00'>
<span class='usa-collection__calendar-date-month'>
SEP
</span>
<span class='usa-collection__calendar-date-day'>
30
</span>
</time>
</div>
<div class='usa-collection__body'>
<h3 class='usa-collection__heading'>
<a class="usa-link" href="https://www.performance.gov/sba-wosb-dashboard/">Women-owned small business dashboard
</a></h3>
<p class='usa-collection__description'>
In honor of National Women’s Small Business Month, we’ve partnered with SBA’s Office of Government Contracting and Business Development and Office of Program Performance, Analysis, and Evaluation to highlight the Women-Owned Small Businesses (WOSBs) data dashboard!
</p>
</div>
</li>
<li class='usa-collection__item'>
<div class='usa-collection__calendar-date' href='https://www.performance.gov/September-2020-Updates-Show-Progress/'>
<time datetime='2020-09-17T12:00:00+01:00'>
<span class='usa-collection__calendar-date-month'>
SEP
</span>
<span class='usa-collection__calendar-date-day'>
17
</span>
</time>
</div>
<div class='usa-collection__body'>
<h3 class='usa-collection__heading'>
<a class="usa-link" href="https://www.performance.gov/September-2020-Updates-Show-Progress/">September 2020 updates show progress on cross-agency and agency priority goals
</a></h3>
<p class='usa-collection__description'>
Today, we published progress updates for both Cross-Agency Priority (CAP) Goals and Agency Priority Goals (APGs) for the third quarter of FY2020. These updates highlight recent milestones and accomplishments as well as related initiatives that support progress towards a more modern and effective government.
</p>
</div>
</li>
</ul>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
render UswdsComponents::CollectionComponent.new do |collection|
collection.with_item(datetime: '2020-09-30T12:00:00+01:00',
href: 'https://www.performance.gov/presidents-winners-press-release/') do |item|
item.with_header { 'Gears of Government President’s Award winners' }
"In honor of National Women’s Small Business Month, we’ve partnered with SBA’s Office of Government Contracting and Business Development and Office of Program Performance, Analysis, and Evaluation to highlight the Women-Owned Small Businesses (WOSBs) data dashboard!'"
end
collection.with_item(datetime: '2020-09-30T12:00:00+01:00',
href: 'https://www.performance.gov/sba-wosb-dashboard/') do |item|
item.with_header { 'Women-owned small business dashboard' }
'In honor of National Women’s Small Business Month, we’ve partnered with SBA’s Office of Government Contracting and Business Development and Office of Program Performance, Analysis, and Evaluation to highlight the Women-Owned Small Businesses (WOSBs) data dashboard!'
end
collection.with_item(datetime: '2020-09-17T12:00:00+01:00',
href: 'https://www.performance.gov/September-2020-Updates-Show-Progress/') do |item|
item.with_header do
'September 2020 updates show progress on cross-agency and agency priority goals'
end
'Today, we published progress updates for both Cross-Agency Priority (CAP) Goals and Agency Priority Goals (APGs) for the third quarter of FY2020. These updates highlight recent milestones and accomplishments as well as related initiatives that support progress towards a more modern and effective government.'
end
end