-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy path_foot.njk
More file actions
26 lines (25 loc) · 1.33 KB
/
_foot.njk
File metadata and controls
26 lines (25 loc) · 1.33 KB
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
{% for c in collections.component %}
{% if page.url == c.url %}
{% set component = c %}
{% endif %}
{% endfor %}
<rh-footer-universal>
<h3 slot="links-primary" hidden>Community</h3>
<ul slot="links-primary">
<li><a href="https://github.com/patternfly/patternfly-elements">GitHub</a></li>
<li><a href="https://github.com/patternfly/patternfly-elements/blob/main/CONTRIBUTING.md">Contributing</a></li>
<li><a href="https://github.com/patternfly/patternfly-elements/blob/main/CODE_OF_CONDUCT.md">Code of conduct</a></li>
<li><a href="https://www.redhat.com/mailman/listinfo/patternfly-elements-contribute">Contributors email list</a></li>
</ul>
<rh-footer-copyright slot="links-secondary">© 2018-{{ page.date.getFullYear() }} Red Hat, Inc.</rh-footer-copyright>
<h3 slot="links-secondary" hidden>Resources</h3>
<ul slot="links-secondary">
<li><a href="/get-started">Documentation</a></li>{% if page.url == component.url %}
<li><a href="/elements/{{ component.data.package }}/demo">Demo page</a></li>{% endif %}
<li><a href="/blog">Blog</a></li>
<li><a href="https://medium.com/patternfly-elements">Medium</a></li>
</ul>
<a slot="tertiary" href="https://www.netlify.com">
<img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify">
</a>
</rh-footer-universal>