-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.njk
66 lines (61 loc) · 4.02 KB
/
render.njk
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
---
layout: render-layout.njk
title: Funding Opportunities
component: cards
---
{% from './_includes/_components.njk' import filtercard, card, button, stats, highlight, hero, category, accordion, backtop, stayupdated, documents %}
<style>
{% if component == "cards" %}{% include './_includes/card/_cards.css' %} {% endif %}
{% if component == "filter" %}{% include './_includes/filtercard/_filtercards.css' %} {% endif %}
{% if component == "button" %}{% include './_includes/button/_button.css' %} {% endif %}
{% if component == "global" %}{% include './_includes/global/_global.css' %} {% endif %}
{% if component == "unav" %}{% include './_includes/unav/_unav.css' %} {% endif %}
{% if component == "stats" %}{% include './_includes/stats/_stats.css' %} {% endif %}
{% if component == "footer" %}{% include './_includes/footer/_footer.css' %} {% endif %}
{% if component == "highlight" %}{% include './_includes/highlight/_highlight.css' %} {% endif %}
{% if component == "hero" %}{% include './_includes/hero/_hero.css' %} {% endif %}
{% if component == "category" %}{% include './_includes/category/_category.css' %} {% endif %}
{% if component == "accordion" %}{% include './_includes/accordion/_accordion.css' %} {% endif %}
{% if component == "backtop" %}{% include './_includes/backtop/_backtop.css' %} {% endif %}
{% if component == "stay" %}{% include './_includes/stayupdated/_stayupdated.css' %} {% endif %}
{% if component == "documents" %}{% include './_includes/documents/_documents.css' %} {% endif %}
</style>
{{
card({
heading:"Funding Available Now",
intro:"",
cards:[
{
title:"Resilient Watersheds Grant (RWG) Program",
content:"At least $45 million of Environmental Bond Act funding is available for implementation of flood mitigation projects across New York State.",
link:"https://dec.ny.gov/environmental-protection/water/water-quantity/resilient-ny",
image:"https://dec.ny.gov/sites/default/files/styles/hero_background/public/2025-01/hudsonriverfinch.jpg?h=6499b6f1&itok=pwuERhHh&upd=1736349114",
imagealt:"stream flowing through green trees",
deadline:"Friday, June 6, 2025"
},
{
title:"Inland Waterways and the Local Waterfront Revitalization Program Implementation Projects ",
content:"Implement restoration and flood risk reduction projects improving waterfront and watershed resiliency and reducing climate impacts.",
link:"https://dos.ny.gov/RFA-24-OPDBA-22",
image:"https://dec.ny.gov/sites/default/files/styles/hero_background/public/2025-01/tonkawaparcel.jpg?h=2992ba0a&itok=Rtt5yi5q&upd=1736190439",
imagealt:"a stream in sunlight with trees and grass",
deadline:"Friday, June 6, 2025"
},
{
title:"Coastal Rehabilitation and Resilience Projects",
content:"Implement coastal rehabilitation and resiliency projects inspired by nature or natural processes within New York State Coastal areas",
link:"https://dos.ny.gov/RFA-24-OPDBA-23",
image:"https://dos.ny.gov/sites/g/files/oee926/files/styles/wide_lead_tall/public/media/2021/05/thumbnail-19.jpg?h=32d1b75d&itok=mhbr1uJp",
imagealt:"shore grass on the beach next to a body of water ",
deadline:"Friday, June 6, 2025"
},
{
title:"Electric School Bus Infrastructure",
content:"Governor Hochul announced funding for electric school bus charging infrastructure under the New York School Bus Incentive Program.",
link:"https://www.nyserda.ny.gov/All-Programs/Electric-School-Buses/NY-School-Bus-Incentive-Program-Overview",
image:"https://www.governor.ny.gov/sites/default/files/styles/hero_wide/public/2023-09/electric-school-buses_0.jpg?h=ec45e355&itok=Gz-4qXik",
imagealt:"school buses"
}
]
})
}}