Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update 6/26 #18

Merged
merged 17 commits into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file removed BIDS logo files/favicon.ico
Binary file not shown.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions BIDS_logo/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
The BIDS logo originates from a [design competition](https://en.99designs.de/logo-design/contests/design-brain-imaging-data-standard-logo-916110).

See the related discussion here: https://github.com/bids-standard/bids-specification/issues/216

# Files
- Standard formats
- `BIDS_logo.jpg`
- Transparent background
- `BIDS_logo_black_transparent_background_crop.png`
- `BIDS_logo_white_transparent_background_crop.png`
- Vector graphics
- `BIDS_logo.eps`
- Transparent background
- `BIDS_logo_black.svg`
- `BIDS_logo_white.svg`
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build Status](https://travis-ci.com/bids-standard/bids-specification.svg?branch=master)](https://travis-ci.com/bids-standard/bids-specification)
[![CircleCI](https://circleci.com/gh/bids-standard/bids-specification.svg?style=svg)](https://circleci.com/gh/bids-standard/bids-specification)

# bids-specification
![BIDS logo](BIDS_logo/BIDS_logo_black_transparent_background_crop.png)

The Brain Imaging Data Structure (BIDS) is an emerging standard for the
organisation of neuroimaging data.
Expand Down
3 changes: 2 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
site_name: Brain Imaging Data Structure v1.3.0-dev
theme:
name: material
favicon: BIDS logo files/favicon.ico
custom_dir: theme_customizations/
favicon: images/favicon.png
extra_javascript:
- js/jquery-3.4.1.min.js
markdown_extensions:
Expand Down
3 changes: 3 additions & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Changelog

## [Unreleased](https://github.com/bids-standard/bids-specification/tree/HEAD)

- \[INFRA] add footer, replacing mkdocs/material advert with Github link [#250](https://github.com/bids-standard/bids-specification/pull/250) ([sappelhoff](https://github.com/sappelhoff))
- \[MISC] rename logo files, add a README of where they come from, fix favicon [#249](https://github.com/bids-standard/bids-specification/pull/249) ([sappelhoff](https://github.com/sappelhoff))
- \[ENH] Add favicon to RTD [#246](https://github.com/bids-standard/bids-specification/pull/246) ([franklin-feingold](https://github.com/franklin-feingold))
- \[MISC] Update Authors in BEP025 [#241](https://github.com/bids-standard/bids-specification/pull/241) ([josator2](https://github.com/josator2))
- \[MISC] Document BEPs that are not active anymore, but have not been merged [#240](https://github.com/bids-standard/bids-specification/pull/240) ([sappelhoff](https://github.com/sappelhoff))
- \[FIX] remove ManufacturersAmplifierModelName (again) [#236](https://github.com/bids-standard/bids-specification/pull/236) ([robertoostenveld](https://github.com/robertoostenveld))
Expand Down
Binary file added src/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions theme_customizations/partials/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!--
Copyright (c) 2016-2019 Martin Donath <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
-->

{%- import "partials/language.html" as lang with context -%}

<!-- Application footer -->
<footer class="md-footer">

<!-- Link to previous and/or next page -->
{%- if page.previous_page or page.next_page -%}
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">

<!-- Link to previous page -->
{%- if page.previous_page -%}
<a href="{{ page.previous_page.url | url }}"
title="{{ page.previous_page.title }}"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-back
md-footer-nav__button"></i>
</div>
<div class="md-flex__cell md-flex__cell--stretch
md-footer-nav__title">
<span class="md-flex__ellipsis">
<span class="md-footer-nav__direction">
{{- lang.t("footer.previous") -}}
</span>
{{- page.previous_page.title -}}
</span>
</div>
</a>
{%- endif -%}

<!-- Link to next page -->
{%- if page.next_page -%}
<a href="{{ page.next_page.url | url }}"
title="{{ page.next_page.title }}"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch
md-footer-nav__title">
<span class="md-flex__ellipsis">
<span class="md-footer-nav__direction">
{{- lang.t("footer.next") -}}
</span>
{{- page.next_page.title -}}
</span>
</div>
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--arrow-forward
md-footer-nav__button"></i>
</div>
</a>
{%- endif -%}
</nav>
</div>
{%- endif -%}

<!-- Further information -->
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">

<!-- Copyright and theme information -->
<div class="md-footer-copyright">
{%- if config.copyright -%}
<div class="md-footer-copyright__highlight">
{{- config.copyright -}}
</div>
{%- endif -%}
See the source code and discussion page on
<a href="https://github.com/bids-standard/bids-specification">GitHub</a>
</div>

<!-- Social links -->
{%- include "partials/social.html" -%}
</div>
</div>
</footer>