-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.njk
29 lines (24 loc) · 1.36 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
---
layout: render-layout.njk
title: Funding Opportunities
component: hero
---
{% from './_includes/_components.njk' import filtercard, card, button, stats, highlight, hero, category, accordion, backtop %}
<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 %}
</style>
{{ hero({
title: "Forecasted Funding Opportunities"
})
}}