-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathseminars.html
107 lines (82 loc) · 2.67 KB
/
seminars.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
layout: default
title: Weekly Seminar
---
<style>
.presentation {
margin-top: 1rem;
margin-bottom: 1.5rem;
}
.left {
display: inline-block;
vertical-align:middle;
width: 75%;
margin-right: 3%;
}
.right {
display: inline-block;
text-align: center;
vertical-align: middle;
width: 21%;
color: #666;
}
.title{
font-size: 1.1rem;
font-weight: bold;
}
.author {
font-style : italic
}
.description * {
margin-top: 0.4rem;
margin-bottom: 0rem;
}
.archives {
text-align: right;
font-style: italic;
}
summary {
font-style: italic;
}
</style>
<p>NaoMod hosts one seminar per week where group member or a guest speaker gives a talk on a subject of their choosing, such as an interesting paper, their ongoing work, a nice tool they discovered, or inspirational thoughts. </p>
<!-- <p>This page is automatically generated from <a href="http://agenda.univ-nantes.fr/home/[email protected]/NaomodWeeklySeminars">this ICS file</a> (<a href="https://agenda.univ-nantes.fr/home/[email protected]/NaomodWeeklySeminars.html
">calendar view</a>).</p> -->
<p><a href="{{site.baseurl}}/naomod_weekly_seminars.ics">Link to calendar ICS file with all seminars with titles and descriptions.</a></p>
<h2> Upcoming seminars (list generated at {{ "now" | date: "%Y-%m-%d %H:%M" }}) </h2>
<hr/>
{% assign counter = 0 %}
{% for post in site.posts reversed %}
{% if counter > 4 %} {% break %} {% endif%}
{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% capture posttime %}{{post.date | date: '%s'}}{% endcapture %}
{% if posttime > nowunix %}
{% include seminar_presentation.html %}
{% assign counter = counter | plus: 1 %}
{% endif%}
{% endfor %}
<details> <summary>Click here to see more upcoming seminars</summary>
{% assign counter = 0 %}
{% for post in site.posts reversed%}
{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% capture posttime %}{{post.date | date: '%s'}}{% endcapture %}
{% if posttime > nowunix %}
{% if counter > 4 %}
{% include seminar_presentation.html %}
{% endif%}
{% assign counter = counter | plus: 1 %}
{% endif%}
{% endfor %}
</details>
<h2> Past seminars </h2>
<hr/>
{% for cat in site.categories%}
{% if cat[0] == "seminar" %} {% for post in cat[1] %}
{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% capture posttime %}{{post.date | date: '%s'}}{% endcapture %}
{% if posttime < nowunix %}
{% include seminar_presentation.html %}
{% endif%}
{% endfor %} {% endif %}
{% endfor %}
<p class="archives"><a href="/seminars_2018-2019">Archives (07-2018 to 09-2019)</a></p>