-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 1.43 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
---
layout: page
title: Dipti Sonawane
---
{{ site.description | markdownify }}
<ul class="specialties">
{% for specialty in site.specialties %}
<li class="filter" data-filter=".{{ specialty | downcase | replace:' ','-' }}">{{ specialty }}</button></li>
{% endfor %}
</ul>
<ul class="post-list">
{% for post in site.posts %}
{% capture classes %}
{% for category in post.categories %}
{{ category | downcase | replace:' ','-' | join:' ' }}
{% endfor %}
{% endcapture %}
<li class="post-link {{classes | strip_html | strip_newlines}}">
{% if post.hero %}
<a href="{{ post.url | prepend: site.baseurl }}">
<figure class="thumbnail">
<img src="{{ site.baseurl }}/{{ post.hero }}"></img>
</figure>
</a>
{% endif %}
<a href="{{ post.url | prepend: site.baseurl }}">
<h3>{{ post.title }}</h3>
</a>
<ul class="categories">
{% for category in post.categories %}
{% if category != 'Recent' %}
<li>{{ category }}</li>
{% endif %}
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<script type="text/javascript">
$(function(){
$('ul.post-list').mixItUp({
load: {
filter: '.recent'
},
selectors: {
target: 'li'
},
animation: {
enable: false,
effects: 'fade scale translateY(-100px)',
duration: 600,
reverseOut: true
}
});
});
</script>