-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
103 lines (100 loc) · 2.47 KB
/
index.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
---
layout: default
---
<div class="explore">
<div class="container-lg">
<h2 class="text-center">Explore</h2>
<p class="text-center col-md-7 col-sm-10 mx-auto">
Check out these apps made by P-society that can help developers in great way. They're all open source and free to use on any project.
</p>
<div class="d-md-flex flex-wrap gutter flex-auto">
{% assign apps = site.apps %}
{% for app in apps limit:1 %}
{% include app.html app=app %}
{% endfor %}
</div>
<br>
<div class="text-center py-3">
<p class="lead mx-auto col-md-8">
Currently many are work in progress.
</p>
</div>
</div>
</div>
<div class="contributor">
<div class="container-lg"></div>
<h2 class="text-center">Members</h2>
<p class="lead text-center col-md-7 col-sm-10 mx-auto">
These are some members of our society.
</p><br>
<div class="d-md-flex flex-wrap gutter flex-auto">
{% assign contributors = site.contributors-app %}
<div class="owl-carousel owl-theme">
{% for app in contributors%}
{% include contributor.html app=app %}
{% endfor %}
</div>
</div>
<br>
<div class="text-center">
<a href="/contributors/">
<button class="btn btn-outline btn-large waves-effect waves-light">
{% octicon telescope class:"mr-2" %}
See all members
</button>
</a>
</div>
</div>
<div class="time_line">
<div class="container">
<div class="text-center">
<h1 id="timeline">Achievements</h1>
</div>
{% assign achievement = site.trophy %}
{% for app in achievement limit:1%}
{% include achievement.html app=app %}
{% endfor %}
</div>
<div class="text-center">
<a href="/trophy/">
<button class="btn btn-outline btn-large waves-effect waves-light">
{% octicon telescope class:"mr-2" %}
See all achievements
</button>
</a>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
var owl = $('.owl-carousel');
owl.owlCarousel({
autoplay: true,
autoplayTimeout: 3000,
loop:true,
nav:true,
margin:10,
responsive:{
0:{
items:1
},
600:{
items:3
},
960:{
items:5
},
1200:{
items:6
}
}
});
owl.on('mousewheel', '.owl-stage', function (e) {
if (e.deltaY>0) {
owl.trigger('next.owl');
} else {
owl.trigger('prev.owl');
}
e.preventDefault();
});
});
</script>