-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsession.html
39 lines (38 loc) · 1.63 KB
/
session.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
---
layout: default
title: Session
---
<div>
<h1 style="text-align: center;">Online session of IDLI </h1>
<br>
</div>
<div>
<hr>
<h3>Online session by IDLI</h3>
<p style="text-align:justify;">Check out next Deep Learning sessions and Speakers. <a href="https://docs.google.com/spreadsheets/d/16M6Ed8Usm25kvMXfPkH15ngT15nKh8X_D0WOJl7i_vs/pubhtml?widget=true&headers=false">Click here for more information</a>.</p>
<iframe src="https://calendar.google.com/calendar/embed?src=indiadeeplearning.group%40gmail.com&ctz=Asia/Calcutta" style="border: 0" width="600" height="600" frameborder="0" scrolling="no"></iframe>
</div>
<br>
<br>
<hr>
<div>
{% for upcomming in site.upcomming %}
<li>
<a href="{{ upcomming.url }}">{{ upcomming.title }}</a>
</li>
<p>
{{ upcomming.content | strip_html | truncate: 150 }} <a href="{{ upcomming.url }}">Read more</a>
<span class="post-date" style="margin-top:3px"><i class="fa fa-calendar" aria-hidden="true"></i> {{ upcomming.date | date_to_string }} - <i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</span>
</p>
{% endfor %}
</div>
{% for session in site.session %}
<li>
<span> {{ session.date | date: "%B %e, %Y" }} </span>
<a href="{{ session.url }}">{{ session.title }}</a>
</li>
<p style="text-align: justify;">
{{ session.content | strip_html | truncate: 350 }} <a href="{{ session.url }}">Read more</a>
<span class="post-date" style="margin-top:3px"><i class="fa fa-calendar" aria-hidden="true"></i> {{ session.date | date_to_string }} - <i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</span>
</p>
{% endfor %}