Skip to content
This repository was archived by the owner on Feb 4, 2019. It is now read-only.

Commit

Permalink
Show quick news in the home page
Browse files Browse the repository at this point in the history
  • Loading branch information
nacx committed Mar 6, 2014
1 parent 4d46540 commit 2d0a62c
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 0 deletions.
15 changes: 15 additions & 0 deletions _includes/news.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{% assign newspresent = false %}
<div id="quicknews" class="alert alert-info">
{% for page in site.pages %}
{% if page.quicknew %}
{% if newspresent == true %}<br/>{% endif %}
{% assign newspresent = true %}
<a class="text-primary" href="{{ page.permalink }}"><strong>{{ page.title }}</strong>: {{ page.quicknew }}</a>
{% endif %}
{% endfor %}
</div>
{% if newspresent == false %}
<script type="text/javascript">
$('#quicknews').hide();
</script>
{% endif %}
3 changes: 3 additions & 0 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ <h2>The Java Multi-Cloud Toolkit</h2>
</div>
</div>

{% capture news %}{% include news.md %}{% endcapture %}
{{ news | markdownify }}

<div class="section-divider">
<span class="text">CLOUDS</span>
</div>
Expand Down
Binary file added img/gsoc2014.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions news/gsoc2014.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: page
title: Google Summer Of Code 2014
permalink: /news/gsoc2014/
quicknew: Want to participate in GSoC 2014? See how you can join the program!
---

-> [![Google Summer of Code 2014](/img/gsoc2014.png)](http://www.google-melange.com/gsoc/homepage/google/gsoc2014) <-

Google Summer of Code is a global program that offers post-secondary student developers ages 18 and older stipends to write code for various open source software projects. Apache jclouds is one of the participants in the program, and encourages anyone interested in it to submit their project ideas.

You can find more information about Google Summer of Code in [the official site](https://developers.google.com/open-source/soc/), and the [GSoC 2014 site](http://www.google-melange.com/gsoc/homepage/google/gsoc2014).

## How to participate

If you want to participate in the project, just let us know!

* Subscribe to the [dev mailing list](/community) and send us an email telling who you are and what you would like to do.
* Search the [existing project ideas](https://issues.apache.org/jira/issues/?jql=project%20%3D%20JCLOUDS%20AND%20labels%20%3D%20gsoc2014) and see if you would like working on them.
* **Propose your own ideas!**

### The mentors

<table class="table table-striped table-hover">
<thead>
<tr>
<th>Mentor</th>
<th>Nickname</th>
<th>Timezone</th>
</tr>
</thead>
<tbody>
<tr>
<td>Andrew Gaul</td>
<td>gaul</td>
<td>PST</td>
</tr>
<tr>
<td>Ignasi Barrera</td>
<td>nacx</td>
<td>CET</td>
</tr>
<tr>
<td>Matt Stephenson</td>
<td>mattstep</td>
<td>PST</td>
</tr>
</tbody>
</table>

0 comments on commit 2d0a62c

Please sign in to comment.