Skip to content

Commit c69acea

Browse files
authored
About section (#110)
* about main section completed * subnav pages refined * style lint ignore * added linting comment * changed underscore to dash for linting
1 parent a4493d7 commit c69acea

17 files changed

+515
-607
lines changed

assets/js/bioconductor.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,17 @@ document.addEventListener("DOMContentLoaded", function () {
6161
//Changes body and hero background color once clicked on certain links
6262
function changeBackgroundColors() {
6363
const heroElement = document.querySelector(".hero");
64-
const targetPageRegex = /\/install\//;
64+
const installPageRegex = /\/install\//;
65+
const aboutPageRegex = /\/about\//;
6566

66-
if (targetPageRegex.test(window.location.href)) {
67+
if (installPageRegex.test(window.location.href)) {
6768
document.body.style.backgroundColor = "#fff";
6869
heroElement.style.backgroundColor = "var(--neutral-n50)";
6970
}
71+
72+
if (aboutPageRegex.test(window.location.href)) {
73+
document.body.style.backgroundColor = "#fff";
74+
}
7075
}
7176

7277
changeBackgroundColors();

assets/style/about.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.about-join .join {
2+
width: 100%;
3+
margin-bottom: 2rem;
4+
}
5+
6+
.about-join .join-img-div {
7+
display: none;
8+
}
9+
10+
.about-join .gradient-border-inner {
11+
padding: 2rem;
12+
}
13+
14+
.about-join .join-content,
15+
.about-join h2 {
16+
padding: 0;
17+
}
18+
19+
.about-join .join-buttons {
20+
padding-bottom: 0.62rem;
21+
}
22+
23+
/* disabled here due to a linting error, but we need the webkit marker for this to work */
24+
25+
/* stylelint-disable */
26+
.about-join .text-gradient {
27+
background: var(--misc-pink);
28+
-webkit-background-clip: text;
29+
-webkit-text-fill-color: transparent;
30+
}
31+
/* stylelint-enable */

assets/style/colors.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
--misc-error: #a92626;
5858
--misc-dark: #070707;
5959
--misc-purple: #a333f1;
60+
--misc-pink: #ce3c7d;
6061

6162
/* Gradients */
6263
--gradient-warmcool: linear-gradient(to right, #ff2f4b, #4e5cff);

content/about/annual-reports.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<h1><img src="/images/icons/magnifier.gif" alt="" />Annual Reports</h1>
1+
<h1>Annual Reports</h1>
22

33
<p>
44
Project Annual Reports are available in PDF format for the following years:
55
</p>
66

7-
<ul class="inline_list">
7+
<ul class="inline-list">
88
<% annual_reports.sort{|a, b| b[:name] <=> a[:name]}.select do |r| %>
99
<li><a href="<%= r[:href] %>"><%= r[:name] %></a></li>
1010
<% end %>

content/about/awards.md

Lines changed: 29 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# ![](/images/icons/magnifier.gif) Bioconductor Community Awards
2-
1+
# Bioconductor Community Awards
32

43
The Bioconductor project proudly launched in 2020 an initiative to honor
54
contributions to the project. Each year, four awardees will be selected, each
@@ -15,14 +14,13 @@ towards the selection of an awardee. Up to four awardees are selected in each
1514
call using the below criteria as justification. One award each year is dedicated
1615
to a junior developer or new package development.
1716

18-
* __Outstanding new package contributions__, for developers of high-quality packages, added to Bioconductor in one of the two most recent releases prior to the nomination deadline, showing exemplary use of the Bioconductor package design principles.
19-
* __Outstanding support site contributions__, for individuals showing extraordinary helpfulness on the Bioconductor support site and/or in other forums.
20-
* __Outstanding documentation contributions__, for individuals writing and maintaining excellent user-facing documentation, workflows and/or tutorials.
21-
* __Outstanding community engagement and outreach__, for individuals who "make things happen", promote diversity, engage with and provide substantial contributions to the Bioconductor community.
22-
* __Outstanding long-term contributions to the project__, for individuals who have provided excellent contributions in any form to the project over a substantial time period.
23-
* __Outstanding contributions enabling computational analysis or representation of data from new scientific technologies__, for individuals who, via package development or other means, enable analysis of data from new scientific technologies within Bioconductor.
24-
* __Outstanding contributions enabling the use of new informatic technologies within the project__, for individuals who, via package development or other means, enable the use of novel informatic technologies within Bioconductor.
25-
17+
- **Outstanding new package contributions**, for developers of high-quality packages, added to Bioconductor in one of the two most recent releases prior to the nomination deadline, showing exemplary use of the Bioconductor package design principles.
18+
- **Outstanding support site contributions**, for individuals showing extraordinary helpfulness on the Bioconductor support site and/or in other forums.
19+
- **Outstanding documentation contributions**, for individuals writing and maintaining excellent user-facing documentation, workflows and/or tutorials.
20+
- **Outstanding community engagement and outreach**, for individuals who "make things happen", promote diversity, engage with and provide substantial contributions to the Bioconductor community.
21+
- **Outstanding long-term contributions to the project**, for individuals who have provided excellent contributions in any form to the project over a substantial time period.
22+
- **Outstanding contributions enabling computational analysis or representation of data from new scientific technologies**, for individuals who, via package development or other means, enable analysis of data from new scientific technologies within Bioconductor.
23+
- **Outstanding contributions enabling the use of new informatic technologies within the project**, for individuals who, via package development or other means, enable the use of novel informatic technologies within Bioconductor.
2624

2725
All nominees suggested will be considered for the award. The nominations will be
2826
processed, and the awardees will be selected, by the current members of the
@@ -31,51 +29,53 @@ active members of either of these boards are not eligible for an award. For more
3129
details about the selection process see the [Proceedures and
3230
Regulations](https://docs.google.com/document/d/1bHFoZS7kJoUh9ZOU2LwZaHwnJhradDmWcDV9EXJc8tI/edit?usp=sharing)
3331

32+
# How to nominate a person
3433

35-
# How to nominate a person
3634
In order to nominate someone for the awards, please fill out the nomination [Google Form](https://forms.gle/gPzmH8ewHNHWckdv6), with the following information:
37-
38-
1. Your full name and e-mail address.
39-
2. Full name and e-mail address of the nominee.
40-
3. The relevant award criteria.
41-
4. Motivation for the nomination and how the nominee satisfies the selected award criteria.
35+
36+
1. Your full name and e-mail address.
37+
2. Full name and e-mail address of the nominee.
38+
3. The relevant award criteria.
39+
4. Motivation for the nomination and how the nominee satisfies the selected award criteria.
4240

4341
The form is available 3-4 months before the annual Bioconductor conference. It
4442
will be advertised on the conference website, Bioconductor social media
4543
platforms, and support site forums. If you are unable to fill out a google form,
46-
please contact [email protected] to nominate a candidate.
44+
please contact [email protected] to nominate a candidate.
4745

4846
The deadline to nominate a candidate for the Bioc2023 Awards is Wednsday May 31 st, 2023. The Bioc2023 Awards will be announced during the
49-
[annual conference](https://bioc2023.bioconductor.org/) August 2-4, 2023.
50-
47+
[annual conference](https://bioc2023.bioconductor.org/) August 2-4, 2023.
5148

5249
# FAQ
53-
* __Am I allowed to nominate more than one person?__
54-
Yes. We appreciate it if you limit your nominations to no more than 3 people.
55-
* __Can the same individual be awarded multiple times (in different years)?__
56-
Yes. However, it has to be clear that the contributions that the individual is recognized for are different and "new" contributions that occured after the previous award was granted.
57-
* __Are self-nominations allowed?__
58-
No
59-
6050

51+
- **Am I allowed to nominate more than one person?**
52+
Yes. We appreciate it if you limit your nominations to no more than 3 people.
53+
- **Can the same individual be awarded multiple times (in different years)?**
54+
Yes. However, it has to be clear that the contributions that the individual is recognized for are different and "new" contributions that occured after the previous award was granted.
55+
- **Are self-nominations allowed?**
56+
No
6157

6258
# Important dates:
63-
* Deadline for nominations: May 31, 2023.
64-
* Notification about the awards: at the Bioconductor conference and via email, if the awardee does not attend the conference.
6559

60+
- Deadline for nominations: May 31, 2023.
61+
- Notification about the awards: at the Bioconductor conference and via email, if the awardee does not attend the conference.
6662

6763
# Awardees 2022
6864

6965
## Sean Davis
66+
7067
<img src="/images/biocawards/writeup/Davis.png" width="100%" height="100%"/>
7168

7269
## Erica Feick
70+
7371
<img src="/images/biocawards/writeup/Feick.png" width="100%" height="100%"/>
7472

7573
## Nicole Kramer
74+
7675
<img src="/images/biocawards/writeup/Kramer.png" width="100%" />
7776

7877
## Herv&eacute; Pag&egrave;s
78+
7979
<img src="/images/biocawards/writeup/Pages.png" width="100%" />
8080

8181
# Previous Winners
@@ -85,11 +85,7 @@ No
8585
2020: Helena Crowell, Aaron Lun, Lori Shepherd, Gordon Smyth
8686

8787
# Questions
88-
Questions can be addressed via email to cab(at)bioconductor.org
89-
9088

89+
Questions can be addressed via email to cab(at)bioconductor.org
9190

9291
![BiocAwards](/images/biocawards/BiocAward.png)
93-
94-
95-

content/about/code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ![](/images/icons/magnifier.gif) Project-wide Code of Conduct statement for Bioconductor
1+
# Project-wide Code of Conduct statement for Bioconductor
22

33
The Code of Conduct has moved to [GitHub Pages][1] (preview below).
44

0 commit comments

Comments
 (0)