-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #680 from NPDebs/consulting_page
Expanding consultancy page(s)
- Loading branch information
Showing
5 changed files
with
70 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
- name: Ally Skills | ||
url: /consulting/ally-skills.html | ||
description: | | ||
Multiple OLS community members are trained Ally skill facilitators. | ||
We offer ad-hoc in-house workshops (starting at £2,000 GBP for universities) | ||
as well as anyone-may-register workshops... | ||
- name: Video call accessibility | ||
url: /consulting/accessibility-consulting.html | ||
description: | | ||
OLS has a long history of captioning videos as part of running online inclusive calls. | ||
Currently, we offer scientific video preparation and captioning, including... | ||
- name: Organisational Leadership | ||
# url: /consulting/organisational-leadership.html | ||
description: | | ||
We offer a range of workshop options to help you think through | ||
setting up governance for your organisation... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
layout: page | ||
title: Accessibility Consulting | ||
image: https://images.unsplash.com/photo-1429962714451-bb934ecdc4ec?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1650&q=80 | ||
photos: | ||
name: Anthony DELANOIX | ||
license: Unsplash License | ||
url: https://unsplash.com/photos/hzgs56Ze49s | ||
--- | ||
|
||
## Scientific video captioning and live streaming / accessibility consulting. | ||
|
||
OLS has a long history of captioning videos as part of running online inclusive calls. Currently, we offer scientific video preparation and captioning, including: | ||
|
||
- Transcript preparation and correction (mixture of online automatic captioning, with human corrections for quality control and accent/scientific terminology correction). | ||
- Upload and segmentation. | ||
- Live stream advice for multilingual and hearing-accessible calls | ||
|
||
Sample work: [youtube.com/openlifesci]({{ site.youtube }}) | ||
|
||
Rates start at $75USD / hour for video captioning. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: page | ||
title: Consulting | ||
image: https://images.unsplash.com/photo-1429962714451-bb934ecdc4ec?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1650&q=80 | ||
photos: | ||
name: Anthony DELANOIX | ||
license: Unsplash License | ||
url: https://unsplash.com/photos/hzgs56Ze49s | ||
--- | ||
|
||
<div class="container"> | ||
<section class="section"> | ||
<h1 class="title">Our Consulting Services</h1> | ||
<div class="columns is-multiline"> | ||
{% for service in site.data.consulting %} | ||
<div class="column is-one-third"> | ||
<div class="card"> | ||
<div class="card-content"> | ||
<h2 class="title is-4"><a href="{{ service.url }}">{{ service.name }}</a></h2> | ||
<p class="content">{{ service.description }}</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</section> | ||
</div> |