Skip to content

Commit 1759c69

Browse files
committed
Adding meetings as a new category, adding meetings as a new navigation item
1 parent c9e23a8 commit 1759c69

14 files changed

+48
-21
lines changed

_posts/event/2013-05-22-foss4g-na.markdown _posts/events/2013-05-22-foss4g-na.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Foss4g NA 2013
4-
category: event
4+
category: events
55

66
excerpt: Great Foss4g NA event for 2013
77
---

_posts/cugos_meetings/2013-02-20-cugos_monthly.markdown _posts/meetings/2013-02-20-cugos_monthly.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Feb 20th 2013 - LizardTech
4-
category: cugos_meetings
4+
category: meetings
55

66
excerpt: Feb 2013 CUGOS Monthly Meeting at LizardTech (6pm)
77
---

_posts/presentation/2012-01-18-presentation1.markdown _posts/presentations/2012-01-18-presentation1.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Presentation1
4-
category: presentation
4+
category: presentations
55

66
excerpt: Short text about presentation
77
---

_posts/project/2012-12-01-projfinder.markdown _posts/projects/2012-12-01-projfinder.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
layout: post
33
title: ProjFinder
4-
category: project
4+
category: projects
55

6+
permalink: /projects/projfinder
67
excerpt: Projection Finder project used for code sprints with CUGOS
78
---
89

_posts/project/2013-02-14-cugos-website.markdown _posts/projects/2013-02-14-cugos-website.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
layout: post
33
title: Migrate CUGOS website to Jekyll on GitPages
4-
category: project
4+
category: projects
55

6+
permalink: /projects/jekyll
67
excerpt: Migrating the CUGOS website to GitPages on GitHub with Jekyll
78
---
89

about/index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: default
33
title: About
4-
weight: 6
4+
weight: 7
5+
permalink: /
56
---
67

78
About

blog/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: default
33
title: Blog
4-
weight: 3
4+
weight: 4
5+
permalink: /
56
---
67

78
<h2>Blog</h2>

contact/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: default
33
title: Contact
4-
weight: 7
4+
weight: 8
5+
permalink: /
56
---
67

78
<p class="lead">

events/index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
layout: default
33
title: Events
4-
weight: 1
4+
weight: 2
5+
permalink: /
56
---
67

78
<h2>Events</h2>
8-
{% for event in site.categories.event %}
9+
{% for event in site.categories.events %}
910
<div class="row">
1011
<div class="span12">
1112
<div class="event">

index.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
title: Home
44
---
55

6-
{% for meeting in site.categories.cugos_meetings limit: 1 %}
6+
{% for meeting in site.categories.meetings limit: 1 %}
77
<div class="alert alert-info">
88
<h4>Next CUGOS meeting: <a style="color:black;" href={{ meeting.url }}>{{ meeting.title }}</a></h4>
99
</div>
@@ -18,7 +18,7 @@ <h2 style="color:white;">CUGOS in Action</h2>
1818
<div class="row">
1919
<div class="span4">
2020
<h2>Upcoming Events</h2>
21-
{% for event in site.categories.event limit: 2 %}
21+
{% for event in site.categories.events limit: 2 %}
2222
<div class="event">
2323
<h4><a href={{ event.url }}>{{ event.title }}</a></h4>
2424
<span class="date">{{ event.date | date_to_string }}</span>
@@ -38,10 +38,9 @@ <h4><a href={{ blog.url }}>{{ blog.title }}</a></h4>
3838
</div>
3939
<div class="span4">
4040
<h2>Latest Projects</h2>
41-
{% for project in site.categories.project limit: 2 %}
41+
{% for project in site.categories.projects limit: 2 %}
4242
<div class="project">
4343
<h4><a href={{ project.url }}>{{ project.title }}</a></h4>
44-
<span class="date">{{ project.date | date_to_string }}</span>
4544
<div class="entry">{{ project.excerpt }}</div>
4645
</div>
4746
{% endfor %}

meetings/index.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: default
3+
title: Meetings
4+
weight: 1
5+
permalink: /
6+
---
7+
8+
<h2>CUGOS Meetings</h2>
9+
{% for meeting in site.categories.meetings %}
10+
<div class="row">
11+
<div class="span12">
12+
<div class="event">
13+
<h3><a href={{ meeting.url }}>{{ meeting.title }}</a></h3>
14+
<span class="date">{{ meeting.date | date_to_string }}</span>
15+
<div class="entry">{{ meeting.content }}</div>
16+
</div>
17+
</div>
18+
</div>
19+
{% endfor %}
20+

people/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: default
33
title: People
4-
weight: 5
4+
weight: 6
5+
permalink: /
56
---
67

78
<h2>People</h2>

presentations/index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
layout: default
33
title: Presentations
4-
weight: 2
4+
weight: 3
5+
permalink: /
56
---
67

78
<h2>Presentations</h2>
8-
{% for presentation in site.categories.presentation %}
9+
{% for presentation in site.categories.presentations %}
910
<div class="row">
1011
<div class="span12">
1112
<div class="presentation">

projects/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
layout: default
33
title: Projects
4-
weight: 4
4+
weight: 5
5+
permalink: /
56
---
67

78
<h2>Projects</h2>
8-
{% for project in site.categories.project %}
9+
{% for project in site.categories.projects %}
910
<div class="row">
1011
<div class="span12">
1112
<div class="project">
1213
<h3><a href={{ project.url }}>{{ project.title }}</a></h3>
13-
<span class="date">{{ project.date | date_to_string }}</span>
14-
<div class="entry">{{ project.content }}</div>
14+
<div class="entry">{{ project.excerpt }}</div>
1515
</div>
1616
</div>
1717
</div>

0 commit comments

Comments
 (0)