forked from zerostaticthemes/jekyll-serif-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
research.html
103 lines (90 loc) · 6.13 KB
/
research.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
title: BDSi - Behavioural Data Science incubator - Research Support
layout: default
bodyClass: page-list
accentColour: "#cf0071"
---
<div class="container py-6">
<h1 class="hero text-white">
Research
<span class="text-accent text-shadow text-bold">Support</span>
</h1>
</div>
<div class="strip strip-diagonal">
<div class="content-with-toc">
<div class="toc"></div>
<div class="content">
<h2>What can we do for you?</h2>
<p>The best way to learn how we can help you is to walk in during our <a href="#walk-in-hours">walk-in hours</a> or contact us for a (digital) coffee, so we can discuss your research, the challenges you face, and potential support we may be able to provide. What happens afterwards depends on the situation, but broadly speaking we will either consult or collaborate.</p>
<p>
We can provide {% for service in site.services %}{% unless forloop.first %}, {% endunless %}<a href="{% link {{service.path}} %}">{{service.title | downcase }}</a>{% endfor %}, and much more.
We work closely together with {% for partner in site.partners %}{% unless forloop.first %}, {% if forloop.last %}and {% endif %}{% endunless %}<a href="{{partner.website}}">{{partner.title}}</a>{% endfor %}.
</p>
<h3 id="walk-in-hours">walk-in hours</h3>
<p>We have walk-in hours (almost) every monday, from 15:00 to 16:00. During these hours, our data scientists will be available to answer all your questions. We're eager to learn what research you are doing, and explore any opportunities for applying modern data science together.</p>
<p>If we can't help you on the spot, we can set up a consultation later for us to prepare and discuss more in depth, refer you to other experts, or provide you with additional resources.</p>
{% comment %} find first 'Walk-In Hour' event {% endcomment %}
{% assign next_walk_in_hour = site.data.calendar | sort: "date" | find_exp: "event", "event.title contains 'BDSi Walk-in Hour' or event.title contains 'BDSi Open Hour'" %}
<p>The next walk-in hour is {% include datetime.html page=next_walk_in_hour %}.</p>
<button class="button center" id="add-to-calendar-walk-in-hour">Add to calendar</button>
<script type="application/javascript">
const config = {
name:"{{ next_walk_in_hour.title }}",
options:['Microsoft365', 'Apple', 'Google', 'iCal'],
location:"{{ next_walk_in_hour.location }}",
startDate:"{{ next_walk_in_hour.start | date: '%Y-%m-%d' }}",
endDate:"{{ next_walk_in_hour.end | date: '%Y-%m-%d' }}",
startTime:"{{ next_walk_in_hour.start | date: '%H:%M' }}",
endTime:"{{ next_walk_in_hour.end | date: '%H:%M' }}",
timeZone:"Europe/Amsterdam",
organizer:"BDSi|[email protected]",
listStyle: "dropdown"
};
const button = document.getElementById('add-to-calendar-walk-in-hour');
if (button) {
button.addEventListener('click', () => atcb_action(config, button));
}
</script>
<h3>Consultation</h3>
<p>Consultations are always free. We will aim to provide advice and connect you with other researchers, communities or funding opportunities. Consultations are generally the first step towards collaboration.</p>
<p>To schedule a consultation, please reach out to <a href="mailto:{{ site.data.contact.email }}">{{ site.data.contact.email }}</a> and one of our team members will answer your questions, or contact you for further consultations.</p>
<a href="mailto:{{ site.data.contact.email }}" class="button center">get in touch</a>
<h3>Collaboration</h3>
<p>BDSi also collaborates on projects with a high impact for data science at BMS. <a href="{% link data-science-grant.html %}">BDSi Data Science grants</a> are provided several times per year to support projects with a high impact for data science at BMS.</p>
<p>BDSi Data Science grants are meant to:</p>
<ul>
<li>kickstart high-risk, high-reward projects with an eye on obtaining further national and international funding at a later date</li>
<li>support valorization of ongoing BMS research with (interactive) visualization and data-exploration</li>
<li>explore data-driven approaches to new and existing lines of research by supporting the gathering, storage, and processing of complex datasets</li>
</ul>
<p>For more information about the BDSi Data Science grants, please <a
href="{% link data-science-grant.html %}">see the most recent call for proposals</a>, or <a
href="mailto:{{ site.data.contact.email }}">contact us directly</a>. Keep an eye on <a
href="{{ site.data.contact.newsletter }}">our newsletter</a> and this website for announcements about
new calls for proposals.</p>
<div style="margin: 0 auto; width: max-content;">
<a href="mailto:{{ site.data.contact.email }}" class="button">get in touch</a> <a href="{% link data-science-grant.html %}" class="button">BDSi Data Science Grant</a> <a href="{{ site.data.contact.newsletter }}" class="button">sign up for the newsletter</a>
</div>
<h2 class="mt-6">Latest Projects</h2>
{% assign projects_reversed = site.projects | sort: date | reverse %}
{% for project in projects_reversed limit: 5 %}
<div class="mb-4">
<a href="{{site.baseurl}}{{ project.url }}"><h3>{{- project.title -}}</h3></a>
<div class="authors">
{% include author-list.html authors=project.authors page=project
header="h6" %}
</div>
<div class="introduction">
{% if project.introduction %}
{{ project.introduction }}
{% else %}
{{ project.content | split: "</p>" | slice: 0, 1 | join: " " }}
{% endif %}
<a href="{{project.url}}">continue reading...</a>
</div>
</div>
{% endfor %}
<a href="{% link projects.html %}" class="button center">All projects</a>
</div>
</div>
</div>