Skip to content

Commit 3721743

Browse files
authored
Add logos (#38)
1 parent b5ef9da commit 3721743

15 files changed

+37
-8
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ url : https://ReproBrainChart.github.io
2525
baseurl :
2626
repository : "ReproBrainChart/ReproBrainChart.github.io"
2727
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
28-
logo : /assets/RBC%20Primary%20Logo.png # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
28+
logo : /assets/images/logos/rbc_primary_logo.png # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
2929
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
3030
# breadcrumbs : false # true, false (default)
3131
words_per_minute : 200

_data/navigation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ main:
3333
url: /docs/imaging/image_functional_QA
3434
- title: Community and Impact
3535
url: /docs/community
36+
hidden: true
3637
sublinks:
3738
- title: "RBC Team"
3839
url: /docs/team

_includes/masthead.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@
7474
{{ link.title }}
7575
</a>
7676
<div class="dropdown-menu" aria-labelledby="navbarDropdown-{{ link.title }}">
77-
<a class="dropdown-item" href="{{ site.baseurl }}{{ link.url }}">Overview</a>
77+
{% unless link.hidden %}
78+
<a class="dropdown-item" href="{{ site.baseurl }}{{ link.url }}">Overview</a>
79+
{% endunless %}
7880
{% for sublink in link.sublinks %}
7981
<a class="dropdown-item" href="{{ site.baseurl }}{{ sublink.url }}">{{ sublink.title }}</a>
8082
{% endfor %}
Loading
15.1 KB
Loading
96.4 KB
Loading
File renamed without changes.
File renamed without changes.
Loading
61.5 KB
Loading

docs/imaging/_posts/2020-01-01-image_curation.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ layout: single
55

66
---
77

8-
[CuBIDS](Reproducible and open science) was used for the curation of each of these datasets. CuBIDS is a sanity preserving workflow that summarizes the heterogeneity in a MRI BIDS dataset, helps prepare MRI datasets for preprocessing, and helps users perform metadata-based quality control on MRI BIDS data.
8+
[CuBIDS](Reproducible and open science) was used for the curation of each of these datasets.
9+
CuBIDS is a sanity preserving workflow that summarizes the heterogeneity in a MRI BIDS dataset, helps prepare MRI datasets for preprocessing, and helps users perform metadata-based quality control on MRI BIDS data.
910

10-
For each dataset, a CuBIDS summary is created that provides an opportunity to evaluate your data and decide how to handle heterogeneity by grouping the scans on the basis of metadata. You can find the link to each of the CuBIDS summaries for each study below. More information about how to interpret CuBIDS summaries can be found [here](https://cubids.readthedocs.io/en/latest/).
11+
<div style="text-align: center;">
12+
<img src="/assets/images/misc/cubids_workflow.png" width="auto" height="500" />
13+
</div>
14+
15+
For each dataset, a CuBIDS summary is created that provides an opportunity to evaluate your data and decide how to handle heterogeneity by grouping the scans on the basis of metadata.
16+
You can find the link to each of the CuBIDS summaries for each study below.
17+
More information about how to interpret CuBIDS summaries can be found [here](https://cubids.readthedocs.io/en/latest/).
1118

1219
- [HBN](https://github.com/ReproBrainChart/HBN_BIDS/blob/main/study-HBN_desc-CuBIDS_summary.tsv)
1320
- [NKI](https://github.com/ReproBrainChart/NKI_BIDS/blob/main/study-NKI_desc-CuBIDS_summary.tsv)
1421
- [PNC](https://github.com/ReproBrainChart/PNC_BIDS/blob/main/study-PNC_desc-CuBIDS_summary.tsv)
1522
- [CCNP](https://github.com/ReproBrainChart/CCNP_BIDS/blob/main/study-CCNP_desc-CuBIDS_summary.tsv)
1623
- [BHRC](https://github.com/ReproBrainChart/BHRC_BIDS/blob/main/study-BHRC_desc-CuBIDS_summary.tsv)
17-
18-

index.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author_profile: false
55
---
66

77
<div style="text-align: center;">
8-
<img src="/assets/RBC%20Primary%20Logo.png" width="700" height="300" />
8+
<img src="/assets/images/logos/rbc_primary_logo.png" width="700" height="300" />
99
</div>
1010

1111
<br/>
@@ -82,4 +82,25 @@ author_profile: false
8282
<br>
8383
</p>
8484

85-
<iframe src="/assets/dashboard.html" width="100%" height="500px"></iframe>
85+
<div style="text-align: center;">
86+
<h2>Contributing Institutions</h2>
87+
<br/>
88+
89+
<div style="display: flex; justify-content: space-between; width: 90%; margin: auto;">
90+
<img src="/assets/images/logos/university_of_pennsylvania.png" style="height: 150px;" />
91+
<img src="/assets/images/logos/child_mind_institute.png" style="height: 150px;" />
92+
<img src="/assets/images/logos/beijing_normal_university.png" style="height: 150px;" />
93+
<img src="/assets/images/logos/columbia_university.png" style="height: 150px;" />
94+
</div>
95+
96+
</div>
97+
98+
<br/>
99+
<br/>
100+
101+
<div style="text-align: center;">
102+
<h2>Data Downloads</h2>
103+
<br/>
104+
105+
<iframe src="/assets/dashboard.html" width="100%" height="600px"></iframe>
106+
</div>

0 commit comments

Comments
 (0)