forked from talkingkotlin/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 2.16 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
---
layout: post-index
title: آخرین پادکست ها
description: "پادکست های رادیو کاتلین"
tags: [Kotlin, podcast, programming, Java, Android]
comments: false
image:
feature: kotlin_talking_twitter-01.png
---
{% for post in paginator.posts %}
<article class="hentry">
<header>
{% if post.image.feature %}
<div class="entry-image-index">
<a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}"><img
src="{{ site.url }}/images/{{ post.image.feature }}" alt="{{ post.title }}"></a>
</div><!-- /.entry-image -->
{% endif %}
<div class="entry-meta">
<span class="entry-date date published updated"><time datetime="{{ post.date | date_to_xmlschema }}"><a
href="{{ site.url }}{{ post.url }}">{{ post.published | date: "%B %d, %Y" }}</a></time></span>
{% if site.reading_time %}
<span class="entry-reading-time">
<i class="fa fa-clock-o"></i>
{% include read-time-index.html %}
</span><!-- /.entry-reading-time -->
{% endif %}
</div><!-- /.entry-meta -->
{% if post.link %}
<h1 class="entry-title"><a href="{{ site.url }}{{ post.url }}" class="permalink" rel="bookmark"
title="{{ post.title }}"><i class="fa fa-bookmark"></i></a> <a href="{{ post.link }}">{{ post.title }}</a></h1>
{% else %}
<h1 class="entry-title"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}"
itemprop="url">{{ post.title }}</a></h1>
{% endif %}
</header>
<div class="entry-content">
{% if post.image %}
<div class="index-post-image">
<img src="{{ site.url }}/images/episodes/{{ post.image }}" alt="{{ post.title }}">
{% else %}
<img src="{{ site.url }}/images/kotlin_talking_logo.png" alt="{{ post.title }}">
{% endif %}
{{ post.description }}
</div>
<p><a href="{{ site.url }}{{ post.url }}" class="permalink" rel="bookmark" title="{{ post.title }}">گوش بدین
({{ post.length_rounded }}) »</a></p>
<!--<p class="footnotes">Duration: {{ post.length }}</p>-->
</div><!-- /.entry-content -->
</article><!-- /.hentry -->
{% endfor %}
{% include pagination.html %}