Skip to content

Commit 8b3bd1b

Browse files
committed
Include links to lists of all contributors in the "Teams" page
Because it would be dishonest to not mention them. Also, consistently expose such pages for all projects (including Reactive and, yes, even OGM).
1 parent 0cecaa5 commit 8b3bd1b

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

_config/site.yml

+4
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,10 @@ projects:
391391
license:
392392
name: LGPL v2.1
393393
url: https://github.com/hibernate/hibernate-tools/blob/master/lgpl.txt
394+
jira:
395+
key: HBX
396+
github:
397+
project: hibernate-tools
394398
menu:
395399
intern:
396400
- name: About

_partials/menu/desktop-left-community.html.haml

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
- href = "/community/contributors/reactive/"
6464
%a.item{:href => href, :class => "#{(current_path.start_with?( href ) ? "selected" : "")}"}
6565
Hibernate Reactive
66+
- href = "/community/contributors/tools/"
67+
%a.item{:href => href, :class => "#{(current_path.start_with?( href ) ? "selected" : "")}"}
68+
Hibernate Tools
69+
- href = "/community/contributors/ogm/"
70+
%a.item{:href => href, :class => "#{(current_path.start_with?( href ) ? "selected" : "")}"}
71+
Hibernate OGM
6672

6773
- href = "/community/corporate-contributors/"
6874
- active = (href == current_path)

_partials/menu/mobile-section-community.html.haml

+8
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@
5050
%a.item(href="/community/contributors/validator/"){:class => "#{(item_active ? "active" : "")}"}
5151
%i.grid.icon.checkmark.box
5252
Contributors to Validator
53+
- item_active = (current_path == '/community/contributors/reactive/')
54+
%a.item(href="/community/contributors/reactive/"){:class => "#{(item_active ? "active" : "")}"}
55+
%i.grid.icon.sitemap
56+
Contributors to Reactive
57+
- item_active = (current_path == '/community/contributors/tools/')
58+
%a.item(href="/community/contributors/tools/"){:class => "#{(item_active ? "active" : "")}"}
59+
%i.grid.icon.sitemap
60+
Contributors to Tools
5361
- item_active = (current_path == '/community/contributors/ogm/')
5462
%a.item(href="/community/contributors/ogm/"){:class => "#{(item_active ? "active" : "")}"}
5563
%i.grid.icon.sitemap
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: community-contributors
3+
title: Contributors to Hibernate Tools
4+
project: tools
5+
---

community/team.html.haml

+24
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,27 @@ title: Hibernate Team
8686
$( '#list' ).fadeIn();
8787
});
8888
});
89+
90+
%h2{:id => "contributors"} Contributors
91+
92+
.ui.icon.message
93+
%i.icon.users
94+
.content
95+
Hibernate projects are not made just by members,
96+
they're the result of the work of hundreds of contributors!
97+
<br>
98+
Follow the links below to find them all.
99+
100+
.ui.labels.blue
101+
%a.ui.label(href="/community/contributors/orm/")
102+
Hibernate ORM
103+
%a.ui.label(href="/community/contributors/search/")
104+
Hibernate Search
105+
%a.ui.label(href="/community/contributors/validator/")
106+
Hibernate Validator
107+
%a.ui.label(href="/community/contributors/reactive/")
108+
Hibernate Reactive
109+
%a.ui.label(href="/community/contributors/tools/")
110+
Hibernate Tools
111+
%a.ui.label(href="/community/contributors/ogm/")
112+
Hibernate OGM

0 commit comments

Comments
 (0)