Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added myself to members, created members for hire section, added link to... #30

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions data/hire.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// Add yourself to this via a pull-request to the source repo at
// https://github.com/lrug/lrug.org/pulls
// Do keep the list sorted by last name when you do so.
// We're using microformats as the keys here, although we currently only
// render out fn and url. Feel free to add more keys and we'll update the
// renderer.
[
{
"fn":"Ronny Ager-Wick",
"url":"http://ronny.ager-wick.com"
},
{
"fn":"Manu S Ajith",
"url":"http://codingarena.in/"
},
{
"fn":"Ben Aldred",
"url":"http://tinycodefactory.com/"
},
{
"fn":"Levent Ali",
"url":"http://www.leventali.com/"
},
{
"fn":"Graham Ashton",
"url":"http://effectif.com"
},
{
"fn":"Jairo Diaz",
"url":"http://codescrum.com/"
},
{
"fn":"Dan Garland",
"url":"http://wegotcoders.com/clients "
},
{
"fn":"Carlos Martinez",
"url":"https://resume.creddle.io/resume/br3ed1rqbos"
},
{
"fn":"James R. McCarthy",
"url":"http://lety.co/"
},
{
"fn":"Andrew McDonough",
"url":"http://andrewmcdonough.com"
},
{
"fn":"Julius Pabrinkis",
"url":"https://www.linkedin.com/in/pabrinkis"
},
{
"fn":"Alex Pounds",
"url":"http://alexpounds.com/cv"
},
{
"fn":"Nigel Runnels-Moss",
"url":"https://www.linkedin.com/in/nigelrm"
},
{
"fn":"Peter Saxton",
"url":"https://github.com/CrowdHailer"
},
{
"fn":"Tadas Tamosauskas",
"url":"http://codeme.lt"
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about some way of indicating whether recruiters may contact you?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Surely if the user feels strongly about this they can indicate so on the site they link to. I fail to see a good reason to include more than a link to a site of your choice.

At first I thought that indicating whether you we're presently available was a good idea, but then realised that this info would go stale without constant updating on the users part, which would bring in the requirement for there to be an app or system allowing users to easily keep their status updated.

Given the small numbers involved in this it's not really worthwhile.

]
1 change: 1 addition & 0 deletions source/_default_sidebar.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* [Members & friends](/members-and-friends/)
* [Logo Fite!](/what-are-we-going-to-do-about-a-logo/)
* [Posting Jobs](/posting-jobs/)
* [Members for hire](/members-for-hire/)

### Next or Most Recent

Expand Down
23 changes: 23 additions & 0 deletions source/members-for-hire/index.html.md.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: Members for hire
created_at: 2015-02-23 16:19:54 Z
slug: members-for-hire
breadcrumb: Members for hire
created_by:
email: [email protected]
name: James McCarthy
class_name: ""
status: Published
---

A list of LRUG members who are available to hire on a contract basis. These individuals usually attend LRUG [meetings](/meetings/), or have attended a few of them, or maybe even just one. Maybe they just signed up to the mailing-list, whatever, it's not an exclusive club or anything.

<ul>
<% data.hire.each do |member| %>
<li class="vcard">
<a class="url" href="<%= member.url %>" title="<%= member.url %>">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason for setting the title as a URL?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this is dictated by the directory name, currently the directory is named members-for-hire and that is the url structure.

<span class="fn"><%= member.fn %></span>
</a>
</li>
<% end %>
</ul>