Skip to content

Commit

Permalink
Remove 'help wanted' sign
Browse files Browse the repository at this point in the history
  • Loading branch information
fhemberger committed Jan 12, 2015
1 parent 5498e19 commit d7c29e5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 51 deletions.
3 changes: 1 addition & 2 deletions app.js
Expand Up @@ -4,7 +4,7 @@ var express = require('express'),

// Load routes
var routes = {};
['index', 'about', 'help', 'talks', 'atom', 'ical', 'error404'].forEach(function(element) {
['index', 'about', 'talks', 'atom', 'ical', 'error404'].forEach(function(element) {
routes[element] = require('./routes/' + element);
});

Expand Down Expand Up @@ -42,7 +42,6 @@ if (app.get('env') === 'production') {

app.get('/', routes.index);
app.get('/about', routes.about);
app.get('/help-wanted', routes.help);
app.get(/^\/talks\/?(\d{4})?\/?$/, routes.talks);
app.get('/atom.xml', routes.atom);
app.get('/colognejs.ics', routes.ical);
Expand Down
4 changes: 0 additions & 4 deletions routes/help.js

This file was deleted.

38 changes: 0 additions & 38 deletions views/help-wanted.jade

This file was deleted.

9 changes: 2 additions & 7 deletions views/index.jade
Expand Up @@ -5,16 +5,11 @@ block content

.next-meetup
h2
| Next Meetup: Tuesday, !{nextDate}
| &mdash;&nbsp;<br>
a(href="#location") New location at triAGENS
| Next Meetup: <br>
| Tuesday, !{nextDate} @ <a href="#location">triAGENS</a>

h3 Join us at 19:00, talks start at 19:30

p(style="margin:20px 0 0;font-size:1.2em")
strong We need your participation for Cologne.js:
a(href="http://colognejs.de/help-wanted") Help us running the meetup!

.talk-slots.grid-row
- var numberOfTalks = talks ? talks.length : 0;
- if (talks)
Expand Down

0 comments on commit d7c29e5

Please sign in to comment.