-
Notifications
You must be signed in to change notification settings - Fork 0
/
render.njk
47 lines (43 loc) · 2.92 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
---
layout: render-layout.njk
title: Funding Opportunities
component: cards
---
{% from './_includes/_components.njk' import filtercard, card, button, stats, highlight, hero, category, accordion, backtop, stayupdated %}
<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 %}
</style>
{{
card({
heading:"Featured",
intro:"",
cards:[
{
title:"$60 Million Awarded to Transformational Green Infrastructure Projects ",
content:"Green Resiliency Grant funding will support 13 transformative green infrastructure projects across the state.",
link:"https://www.governor.ny.gov/news/governor-hochul-announces-60-million-awarded-transformational-green-infrastructure-projects#:~:text=Governor%20Kathy%20Hochul%20today%20announced,flood-prone%20and%20disadvantaged%20communities.",
image:"https://www.governor.ny.gov/sites/default/files/styles/hero_wide/public/thumbnails/image/Environment_Nature_CentralPark_NYC_hero.jpg?h=3ae694ea&itok=lj7Rr8JE",
imagealt:"central park in new york city showing the lake and skyline"
},
{
title:"DEC releases first Clean Water, Clean Air and Green Environmental Bond Act Annual Report ",
content:"The annual report provides an overview of the Bond Act and summary of activities that occurred during FY 23-24.",
link:"https://extapps.dec.ny.gov/fs/programs/BondActNYS/CWCAGJ-Environmental-Bond-Act-FY-2023-24-Annual-Report.pdf",
image:"https://www.governor.ny.gov/sites/default/files/2021-07/Cranberry_Lake_Forest_Preserve_1280.jpg",
imagealt:"cranberry lake forest preserve showing a beautiful serene view of the placid lake with trees in summer"
}
]
})
}}