-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.njk
More file actions
68 lines (65 loc) · 2.25 KB
/
Copy pathfooter.njk
File metadata and controls
68 lines (65 loc) · 2.25 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
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
67
68
<footer>
<div class="container">
<div class="grid">
<div class="text-center">
<div><b>Around the web</b></div>
<div class="social">
{%- for link in metadata.author.links %}
{%- if link.name and link.url %}
<a
href="{{ link.url }}"
aria-label="{{ link.name }}"
title="{{ link.name }}"
>
{% if link.icon %}
<i class="{{ link.icon }}"></i>
{% else %}
{% include "public/svg/" + link.name +".svg" %}
{% endif %}
</a>
{%- endif %}
{%- endfor %}
</div>
</div>
<div class="text-center">
<div><b>Credits</b></div>
<p>
Built with
<a href="https://www.11ty.dev/">Eleventy</a> and
<a href="https://picocss.com">pico css</a>
<br />
Icons are from <a href="https://fontawesome.com/">Font Awesome</a>.
<br />
Check out the site
<a href="https://github.com/EdRW/edrw.dev">source</a>.
</p>
</div>
<div class="text-center">
<br />
<a href="https://brainmade.org/">
<img
class="human-made-logo only-on-dark"
alt="A logo of a human head with a seed germinating within it, with the website brainmade.org next to it."
src="/../public/svg/brain-made-white-logo.svg"
/>
<img
class="human-made-logo only-on-light"
alt="A logo of a human head with a seed germinating within it, with the website brainmade.org next to it."
src="/../public/svg/brain-made-black-logo.svg"
/>
</a>
</div>
</div>
<!-- ----------------------------------------------------------------------- -->
<!-- Row 2: Copyright -->
<!-- ----------------------------------------------------------------------- -->
<div class="text-center pt-2">
<small>
Copyright © 2014 -
{{ metadata.publishDate | readableDate('yyyy') }}
{{ metadata.author.name }}.
All rights reserved.
</small>
</div>
</div>
</footer>