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

Commit c21e7a2

Browse files
author
peterneubauer
committed
some more app, starting a contributors section
1 parent efa06e6 commit c21e7a2

File tree

11 files changed

+130
-29
lines changed

11 files changed

+130
-29
lines changed

all.iml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="WEB_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$" />
6+
<orderEntry type="sourceFolder" forTests="false" />
7+
</component>
8+
</module>
9+

app.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ app.locals({
5858
neo4jS: {
5959
version: "1.9-SNAPSHOT",
6060
date: "2012-10-02",
61-
summary: "Snapshot",
61+
summary: "Snapshot"
6262
}
6363
});
6464

@@ -90,6 +90,7 @@ app.get('/spring', routes.spring); // path: development guides in featured langu
9090
app.get('/integrate', routes.integrate); // graph: language drivers and frameworks
9191
app.get('/participate', routes.participate); // graph: language drivers and frameworks
9292
app.get('/download', routes.download); // download Neo4j
93+
app.get('/contributors', routes.contributors);
9394

9495

9596

public/assets/img/apps/cineasts.png

540 KB
Loading

public/assets/img/apps/demodexter.png

353 KB
Loading
26.6 KB
Loading
64.6 KB
Loading
23.8 KB
Loading

routes/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,6 @@ exports.participate = function(req, res){
137137
res.render('participate', { category: 'participate', title: 'Participate' });
138138
};
139139

140+
exports.contributors = function(req, res){
141+
res.render('contributors', { category: 'contributors', title: 'Contributors' });
142+
};

views/contributors.ejs

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<% include ./head %>
2+
3+
<!-- Example row of columns -->
4+
<div role="main" class="row">
5+
6+
7+
<div class="span12">
8+
<div class="inner">
9+
<h1>Contributors - you rock.</h1>
10+
<p class="lead">The Neo4j project is driven by the community. Here are some individuals that you might encounter in the discussion forums or come across their projects.
11+
For a full list of all code contributors, please see <a href="http://docs.neo4j.org/chunked/snapshot/contributors.html">The official docs.</a></p>
12+
<ul class="thumbnails integrate" id="isotope">
13+
14+
<li class="span3">
15+
<div class="thumbnail corner">
16+
<span class="thumbTop"></span>
17+
<a href="http://www.maxdemarzi.com">
18+
<img src="/assets/img/contributors/maxdemarzi.jpg" title="Max De Marzi" alt="image" />
19+
</a>
20+
<div class="caption">
21+
<h5>Max De Marzi</h5>
22+
<p>Max is a wizard in graph <a href="http://www.maxdemarzi.com">vizualisations</a>. He works on the popular <a href="https://github.com/maxdemarzi/neography">Neography Ruby Gem</a> for the Neo4j Server.</p>
23+
</div>
24+
<span class="thumbBottom"></span>
25+
</div>
26+
</li>
27+
<li class="span3">
28+
<div class="thumbnail corner">
29+
<span class="thumbTop"></span>
30+
<a href="http://scholr.ly/">
31+
<img src="/assets/img/contributors/mhluongo.jpg" title="Matt Luongo" alt="image" />
32+
</a>
33+
<div class="caption">
34+
<h5>Matt Luongo</h5>
35+
<p>Matt is building awesome technology at <a href="http://scholr.ly/">Scholr.ly</a> in Boston. He is the author of the <a href="https://github.com/scholrly/neo4django/">Neo4django</a> Django bindings for Neo4j.</p>
36+
</div>
37+
<span class="thumbBottom"></span>
38+
</div>
39+
</li>
40+
<li class="span3">
41+
<div class="thumbnail corner">
42+
<span class="thumbTop"></span>
43+
<a href="https://github.com/andreasronge/neo4j">
44+
<img src="/assets/img/contributors/ronge.jpeg" title="Andreas Ronge" alt="image" />
45+
</a>
46+
<div class="caption">
47+
<h5>Andreas Ronge</h5>
48+
<p>Andreas is a long time Neo4j contributor and author of the Neo4j <a href="https://github.com/andreasronge/neo4j">JRuby and Rails bindings</a></p>
49+
</div>
50+
<span class="thumbBottom"></span>
51+
</div>
52+
</li>
53+
54+
</ul>
55+
</div>
56+
</div>
57+
58+
</div>
59+
60+
61+
<% include ./foot %>
62+

views/header.ejs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
<li><a href="/spring">Spring</a></li>
8383
<li><a href="/integrate">Integrate</a></li>
8484
<li><a href="/participate">Participate</a></li>
85+
<li><a href="/contributors">Contributors</a></li>
8586
<li><a href="/download">Download</a></li>
8687
</ul>
8788
</li>

0 commit comments

Comments
 (0)