-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlectures.html
52 lines (52 loc) · 2.07 KB
/
lectures.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
---
layout: default
moreexists: false
showfeed: true
permalink: /lectures
title: Lectures
---
<div>
<div class = "columns">
<div class = "column is-6 is-pulled-left padded is-hidden-mobile">
{% assign post = site.posts.first %}
<h1 class="thick-text">{{ post.title }}</h1>
<h3><i>given by</i> {{ post.author }} </h3>
</br>
{{ post.content }}
</div>
<div class = "column">
</div>
<div class = "column is-5 padded">
<div class="columns">
<div class="column">
<h1 class="thick-text">All Lectures</h1>
</div>
<div class="column is-2" style="display:flex">
<div class="has-text-centered" style="width:100%; align-self:center">
<p><a id="continuelink" href="{{ "/feed.xml" | prepend: site.baseurl }}">RSS</a></p>
</div>
</div>
</div>
<div class = "scrollable-parent">
<div class = "scrollable-child">
<ul style="padding-bottom: 50px; margin-bottom: 50px;">
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url | prepend: site.baseurl }}">
{% if post.video %}
<i class='fa fa-video-camera' aria-hidden='true' style='font-size: 0.8em !important;'></i>
{% endif %}
{{ post.title }}</a></h2>
<h4 style="display: inline-block;"><i>{{ post.author}}</i></h4>
<small>
<p style="display: inline-block;"> | {{ post.date | date: "%b %-d, %Y" }}</p>
</small>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class = "gradient-fade"></div>
</div>
</div>
</div>