-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
indian.html
30 lines (30 loc) · 1.01 KB
/
indian.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
---
title: Indian
layout: page
permalink: /indian
comments: false
lang_selector: false
---
<div class="blog-grid-container">
<!-- begin post -->
{% assign author = site.authors | where: "name", post.author | first %}
{% assign genre = site.genre | where: "title", post.genre | first %}
{% assign country = site.countries | where: "title", post.country | first %}
{% for item in site.data.indian-language.language %}
<div class="blog-grid-item">
<div class="card box-shadow-3 width-100 border-radius-15">
<div class="card-footer-2 bg-white">
<div class="wrapfooter">
<span class="author-meta">
<span class="post-name"><a href="{{site.baseurl}}/language/{{ item.name | downcase | slugify }}">{{ item.name }}</a></span>
<span class="meta-footer-thumb">
<i class="fas fa-language"></i>
</span>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<!-- end post -->