This repository was archived by the owner on Jun 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathfooter.html
More file actions
55 lines (54 loc) · 3.14 KB
/
footer.html
File metadata and controls
55 lines (54 loc) · 3.14 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
<!-- ============================================ -->
<!-- Footer -->
<!-- ============================================ -->
<section id="footer-1390">
<div class="cs-container">
<div class="cs-top">
<a aria-label="go back to home" class="cs-logo" href="">
<img class="cs-logo-img" loading="lazy" decoding="async" src="https://codestitch.app/frontend/images/logo-white.svg" alt="logo" width="209" height="40">
</a>
<ul class="cs-ul">
{% set navPages = collections.all | eleventyNavigation %}
{% for entry in navPages %}
<li class="cs-li">
<a href="{{ entry.url }}" class="cs-link">{{ entry.key }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="cs-bottom">
<!--Social-->
<ul class="cs-social">
<li class="cs-social-li">
<a href="{{ client.social.facebook }}" class="cs-social-link" aria-label="facebook" target="_blank" rel="noopener">
<img class="cs-social-icon cs-default" src="https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/facebook-ba.svg" alt="icon" loading="lazy" decoding="async" width="12" height="12" aria-hidden="true">
</a>
</li>
<li class="cs-social-li">
<a href="{{ client.social.twitter }}" class="cs-social-link" aria-label="twitter" target="_blank" rel="noopener">
<img class="cs-social-icon cs-default" src="https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/twitter-ba.svg" alt="icon" loading="lazy" decoding="async" width="12" height="12" aria-hidden="true">
</a>
</li>
<li class="cs-social-li">
<a href="{{ client.social.instagram }}" class="cs-social-link" aria-label="instagram" target="_blank" rel="noopener">
<img class="cs-social-icon cs-default" src="https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/instagram-ba.svg" alt="icon" loading="lazy" decoding="async" width="12" height="12" aria-hidden="true">
</a>
</li>
<li class="cs-social-li">
<a href="{{ client.social.youtube }}" class="cs-social-link" aria-label="twitter" target="_blank" rel="noopener">
<img class="cs-social-icon cs-default" src="https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/youtube-ba.svg" alt="icon" loading="lazy" decoding="async" width="12" height="12" aria-hidden="true">
</a>
</li>
</ul>
<span class="cs-copyright">
© Copyright 2023 -
<a href="" class="cs-copyright-link">CodeStitch</a>
</span>
<div class="cs-flex">
<a href="" class="cs-copyright-link">Privacy Policy</a>
<span class="cs-separater">|</span>
<a href="" class="cs-copyright-link">Terms of Use</a>
</div>
</div>
</div>
</section>