Skip to content

Commit 5fd22f0

Browse files
authored
Merge pull request #21 from Liongrass/master
fix issues arising from events/calendar conflict
2 parents b78d35d + 4511e5f commit 5fd22f0

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

_data/settings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ tagline: 'BitDevs is a community for those interested in discussing and particip
33

44
menu:
55
- {name: 'About', url: '/about'}
6-
- {name: 'Events', url: '/events'}
6+
- {name: 'Calendar', url: '/calendar'}
77
- {name: 'Map', url: '/map'}
88
- {name: 'Meetup', url: 'https://www.meetup.com/Vancouver-Bitcoiners', external: true}
99
- {name: 'Cities', url: '/cities'}

events.md renamed to calendar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ BitDevs Vancouver is typically held once a month. You can subscribe to event ann
77

88
You can also find the BitDevs events and a collection of other Bitcoin events around Vancouver in the calendar below. You can [add the corresponding ical file to your calendar here](https://calendar.google.com/calendar/ical/mktcedcb09dvpumtk6gqd8sc58%40group.calendar.google.com/public/basic.ics).
99

10-
<iframe src="https://calendar.google.com/calendar/embed?src=mktcedcb09dvpumtk6gqd8sc58%40group.calendar.google.com&ctz=America%2FVancouver" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
10+
<iframe src="https://calendar.google.com/calendar/embed?src=mktcedcb09dvpumtk6gqd8sc58%40group.calendar.google.com&ctz=America%2FVancouver" style="border: 0" width="100%" height="600" frameborder="0" scrolling="no"></iframe>

events.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: default
3+
title: Meetings
4+
---
5+
6+
<div class="Home">
7+
<div class="Home-posts">
8+
<h2 class="Home-posts-title">Socratic Seminars</h2>
9+
{% for post in site.posts %}
10+
{% if post.type == "socratic" %}
11+
<div class="Home-posts-post">
12+
<span class="Home-posts-post-date">{{ post.date | date_to_string }}</span>
13+
<span class="Home-posts-post-arrow">&raquo;</span>
14+
<a class="Home-posts-post-title" href="{{ post.url }}">{{ post.title }}</a>
15+
</div>
16+
{% endif %}
17+
{% endfor %}
18+
</div>

0 commit comments

Comments
 (0)