forked from Hackerbone/Hackerbone.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
146 lines (141 loc) · 4.68 KB
/
footer.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<footer class="footer-1 bg-dark">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<img alt="Logo" class="logo" src="img/logo-light.png" />
</div>
<div class="col-md-3 col-sm-6">
<div class="widget">
<h6 class="title">Recent Posts</h6>
<hr>
<ul class="link-list recent-posts">
<li>
<a href="https://blog.fossasia.org/unesco-hackathon-vietnam-2018-wrap-up/">UNESCO Hackathon Vietnam Wrap-Up 2018</a>
<span class="date">October
<span class="number">28, 2018</span>
</span>
</li>
<li>
<a href="https://blog.fossasia.org/jugaad-fest-hyderabad-on-30th-september-2018-hack-fix-trick-or-simply-make-open-tech-work-for-you/">Jugaad Fest, Hyderabad</a>
<span class="date">Sebtember
<span class="number">24, 2018</span>
</span>
</li>
<li>
<a href="https://blog.fossasia.org/fossasia-summit-2018-wrap-up/">2018 Summit Wrap-Up</a>
<span class="date">April
<span class="number">4, 2018</span>
</span>
</li>
</ul>
</div>
<!--end of widget-->
</div>
<div class="col-md-3 col-sm-6">
<div class="widget">
<h6 class="title">Latest Updates</h6>
<hr>
<div class="twitter-feed">
<div class="tweets-feed" data-feed-name="fossasia">
</div>
</div>
</div>
<!--end of widget-->
</div>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-sm-6">
<span class="sub">© Copyright 2016 - Medium Rare</span>
</div>
<div class="col-sm-6 text-right">
<ul class="list-inline social-list">
<li>
<a href="https://fossasia.org/" target="_blank">
<i class="ti-world"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ" target="_blank">
<i class="ti-youtube"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/fossasia/" target="_blank">
<i class="ti-instagram"></i>
</a>
</li>
<li>
<a href="https://twitter.com/fossasia" target="_blank">
<i class="ti-twitter-alt"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/fossasia/" target="_blank">
<i class="ti-facebook"></i>
</a>
</li>
<li>
<a href="https://codein.withgoogle.com/organizations/fossasia/" target="_blank">
<i class="ti-settings"></i>
</a>
</li>
<li>
<a href="https://github.com/fossasia" target="_blank">
<i class="ti-github"></i>
</a>
</li>
<li>
<a href="https://flickr.com/photos/fossasia" target="_blank">
<i class="ti-flickr"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/groups/FOSSASIA-3762811" target="_blank">
<i class="ti-linkedin"></i>
</a>
</li>
<li>
<a href="https://plus.google.com/108920596016838318216" target="_blank">
<i class="ti-google"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of container-->
</footer>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/flickr.js"></script>
<script src="js/flexslider.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/masonry.min.js"></script>
<script src="js/twitterfetcher.min.js"></script>
<script src="js/spectragram.min.js"></script>
<script src="js/ytplayer.min.js"></script>
<script src="js/countdown.min.js"></script>
<script src="js/smooth-scroll.min.js"></script>
<script src="js/parallax.js"></script>
<script src="js/scripts.js"></script>
<script src="js/thankyou.js"></script>
<script src="js/backtotop.js"></script>
{% for student in site.data.students %}
{% if student.lat and student.lng %}
<script>
L.marker([{{student.lat}}, {{student.lng}}], {icon: studentIcon}).addTo(map).bindPopup("<b>{{student.name}}</b>");
</script>
{% endif %}
{% endfor %}
{% for mentor in site.data.mentors %}
{% if mentor.lat and mentor.lng %}
<script>
L.marker([{{mentor.lat}}, {{mentor.lng}}], {icon: mentorIcon}).addTo(map).bindPopup("<b>{{mentor.name}}</b>");
</script>
{% endif %}
{% endfor %}
</body>
</html>