-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathfooter.html
More file actions
66 lines (57 loc) · 2.54 KB
/
footer.html
File metadata and controls
66 lines (57 loc) · 2.54 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
<div class="footer">
<div class="footer-text">
<p>
<b>Carleton Computer Science Society</b><br />
4135 Herzberg Laboratories<br />
1125 Colonel By Drive,<br />
Ottawa, ON K1S 5B6<br /><br />
email: <a href="mailto:bod@ccss.carleton.ca">bod@ccss.carleton.ca</a>
</p>
</div>
<div class="footer-socials">
<a href="http://discord.carletoncomputersciencesociety.ca"
><i class="fab fa-discord"></i
></a>
<a href="https://www.instagram.com/carletoncss/"
><i class="fab fa-instagram"></i
></a>
<a href="https://www.facebook.com/CarletonComputerScienceSociety"
><i class="fab fa-facebook"></i
></a>
<a href="https://ca.linkedin.com/company/carleton-computer-science-society"
><i class="fab fa-linkedin"></i
></a>
<a href="https://www.youtube.com/@carletoncomputersciencesoc305"
><i class="fab fa-youtube"></i
></a>
<a href="https://github.com/CarletonComputerScienceSociety"
><i class="fab fa-github"></i
></a>
</div>
<!--Added dynamic date updating with JavaScript-->
<div class="footer-copyright">
© {{ now.Year }} Carleton Computer Science Society
</div>
</div>
<script
src="https://code.jquery.com/jquery-1.9.1.min.js"
integrity="sha256-wS9gmOZBqsqWxgIVgA8Y9WcQOa7PgSIX+rPA0VL2rbQ="
crossorigin="anonymous"
></script>
<!--JS Bundle-->
{{- $mainScriptPath := "js/index.js" }}
{{- $main := resources.Get $mainScriptPath | resources.ExecuteAsTemplate $mainScriptPath . }}
{{- $navbarScriptPath := "js/navbar.js" }}
{{- $navbar := resources.Get $navbarScriptPath | resources.ExecuteAsTemplate $navbarScriptPath . }}
{{- $slideshowScriptPath := "js/slideshow.js" }}
{{- $slideshow := resources.Get $slideshowScriptPath | resources.ExecuteAsTemplate $slideshowScriptPath . }}
{{- $faqScriptPath := "js/faq.js" }}
{{- $faq := resources.Get $faqScriptPath | resources.ExecuteAsTemplate $faqScriptPath . }}
{{- $partnershipsSlideshowScriptPath := "js/partnerships-slideshow.js" }}
{{- $partnershipsSlideshow := resources.Get $partnershipsSlideshowScriptPath | resources.ExecuteAsTemplate $partnershipsSlideshowScriptPath . }}
{{- $bundle := slice $main $navbar $slideshow $faq $partnershipsSlideshow }}
{{- if site.Params.Staticman }}
{{- $bundle = slice $main $navbar $slideshow $faq $partnershipsSlideshow }}
{{- end }}
{{- $bundle = $bundle | resources.Concat "js/bundle.js" | resources.Fingerprint "sha512" -}}
<script type="text/javascript" src="{{ $bundle.Permalink }}" integrity="{{ $bundle.Data.Integrity }}" crossorigin="anonymous"></script>