This repository was archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdesign.html
More file actions
48 lines (47 loc) · 1.73 KB
/
design.html
File metadata and controls
48 lines (47 loc) · 1.73 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
<!-- Design -->
<footer id="footer">
<div class="container-fluid container">
<div class="row">
<div class="col-md-4">
{{ if $.Site.Data }}
<h3>Location</h3>
<p>The closest airport to</p>
<p>
{{ range $.Site.Data.admins }}
{{ partial "admins.html" . }}
{{ end }}
</p>
{{ else }}
<p>No Admins!</p>
{{ end }}
</div>
<div class="col-md-4">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="http://devrelcollective.slack.com" class=" btn-circle">
<i class="fab fa-slack"></i>
</a>
</li>
<li>
<a href="http://github.com/devrelcollective" class="btn-circle">
<i class="fab fa-github"></i></a>
</li>
<li>
<a href="https://twitter.com/devrelians" class="btn-circle">
<i class="fab fa-twitter"></i></a>
</li>
</ul>
</div>
<div class="footer-col col-md-4">
<h3>Credits</h3>
<p>Our collective is an inclusive thought experiment started by Dave Josephsen. This site is build by <a href="https://twitter.com/davidgsIoT" target="_blank">David G. Simmons</a> on Hugo. The 'Avocado' theme is based on the <a href="https://github.com/your-identity/hugo-theme-dimension/" target="_blank">Dimension</a> theme.</p>
</div>
</div>
</div>
<p class="copyright">© Design: <a href="https://DevRelCollective.fun">DevRelCollective</a>.</p>
<div class="container-fluid container">
<p><a href="https://www.netlify.com"><img class="netlify-badge" src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg"
alt="Deploys by Netlify" /></a></p>
</div>
</footer>