-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split the project meetings from the team meetings
- Loading branch information
1 parent
3b8a692
commit 7bb375b
Showing
3 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: "Team Meetings" | ||
layout: gridlay | ||
excerpt: "Team Meetings" | ||
sitemap: false | ||
permalink: /team_meetings/ | ||
--- | ||
|
||
# Team Meetings | ||
|
||
{% assign standing_meetings = site.data.standing_meetings %} | ||
|
||
{% for smeeting in standing_meetings %} | ||
|
||
<div class="row"> | ||
<span id="{{meeting.label}}"> </span> | ||
|
||
<div class="clearfix"> | ||
<div class="well" style="padding-left: 20px; padding-right: 20px"> | ||
<a style="text-decoration:none;" href="#{{smeeting.label}}"> | ||
{{ smeeting.name }} -- {{ smeeting.date }} at {{smeeting.time_cest}} Geneva (CH) Time | ||
</a> | ||
<div> | ||
Connection information: {{smeeting.connect}} <br /> | ||
</div><div> | ||
Agenda: | ||
<ul> | ||
{% for item in smeeting.agenda %} | ||
<li><strong>{{item.title}}</strong> | ||
{% if item.speaker %} | ||
({{item.speaker}}) [{{item.date|date: "%b %-d, %Y"}}] | ||
{% endif %} | ||
{{item.link | markdownify}} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
{% endfor %} |