-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related to #951 - fellowship type template & science fellowships
- Loading branch information
Showing
7 changed files
with
165 additions
and
18 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
47 changes: 44 additions & 3 deletions
47
network-api/networkapi/fellows/templates/fellows_science.html
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 |
---|---|---|
@@ -1,5 +1,46 @@ | ||
{% extends "foundation-base.html" %} | ||
{% extends "fellows_type.html" %} | ||
|
||
{% block body %} | ||
science fellows | ||
{% block fellowship_type %} | ||
Science | ||
{% endblock %} | ||
|
||
{% block fellowship_description %} | ||
<p>The Mozilla Fellowships for Science present a unique opportunity for researchers who want to influence the future of open science and data sharing within their communities.</p> | ||
<p>We're looking for researchers with a passion for open source and data sharing, already working to shift research practice to be more collaborative, iterative and open. Fellows will spend 10 months starting September 2017 as community catalysts at their institutions, mentoring the next generation of open data practitioners and researchers and building lasting change in the global open science community.</p> | ||
<p>Throughout their fellowship term, chosen fellows will receive training and support from Mozilla to hone their skills around open source, data sharing, open science policy and licensing. They will also craft code, curriculum and other learning resources that help their local communities learn open data practices, and teach their institutional peers.</p> | ||
{% endblock %} | ||
|
||
{% block fellowship_illustration %} | ||
img | ||
{% endblock %} | ||
|
||
{% block benefit_illustration %} | ||
img | ||
{% endblock %} | ||
|
||
{% block benefit_description %} | ||
<p>The Fellowships are designed to allow for flexibility for both Fellows and their families. The standard fellowship offers a stipend of $60,000 USD*, paid in 10 monthly installments. Fellows are responsible for remitting all applicable taxes and other government payments as required.</p> | ||
<p>To help offset cost of living, the fellowship also provides supplements for childcare and health insurance, and helps pay for research/equipment and books. The fellowships also covers the costs of required travel for fellowship activities.</p> | ||
{% endblock %} | ||
|
||
{% block benefit_list %} | ||
<li>a stipend of $60,000 USD*, paid in 10 monthly installments</li> | ||
<li>a one-time health insurance supplement for Fellows and their families, ranging from $3,500 for single Fellows to $7,000 for a couple with two or more children</li> | ||
<li>a one-time childcare allotment of up to $6,000 for families with children</li> | ||
<li>an allowance of up to $3,000 towards the purchase of laptop computer, digital cameras, recorders and computer software; fees for continuing studies or other courses, research fees or payments, to the extent such purchases and fees are related to the fellowship | ||
</li> | ||
<li>coverage in full for all approved fellowship trips – domestic and international</li> | ||
{% endblock %} | ||
|
||
{% block eligibility_list %} | ||
<li>be currently based at or affiliated with a research institution</li> | ||
<li>have the ability to accept outside funds for this fellowship directly (i.e., not distributed through the institution)</li> | ||
<li>be an early-career researcher (i.e., graduate students, post-docs, research scientists, lecturers)</li> | ||
<li>specialize in scientific research: physical, life, social, library, or natural sciences</li> | ||
<li>be able to travel</li> | ||
<li>obtain support from their advisors. As fellows will be based at their home institutions, please note that a letter of support from their advisor is mandatory for consideration</li> | ||
<li>have experience participating in open communities</li> | ||
{% endblock %} | ||
|
||
|
||
<p>mavis</p> |
80 changes: 80 additions & 0 deletions
80
network-api/networkapi/fellows/templates/fellows_type.html
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,80 @@ | ||
{% extends "foundation-base.html" %} | ||
|
||
{% block body %} | ||
|
||
<div id="fellowship-breadcrumb"> | ||
<a href="">breadcrumb</a> | ||
</div> | ||
|
||
<div class="row mb-5"> | ||
<div class="col-md-12 my-b"> | ||
<h1 class="h1-white">{% block fellowship_type %}{% endblock %} Fellowship</h1> | ||
</div> | ||
<div class="col-md-9"> | ||
{% block fellowship_description %}{% endblock %} | ||
</div> | ||
<div class="col-md-3">{% block fellowship_illustration %}{% endblock %}</div> | ||
</div> | ||
|
||
<div class="row mb-5"> | ||
<div class="col-md-12 my-5"> | ||
<hr class="hr-gradient mt-0"> | ||
<h4 class="h2-headings-white">Stipend and Financial Benefits</h4> | ||
</div> | ||
<div class="col-md-6">{% block benefit_illustration %}{% endblock %}</div> | ||
<div class="col-md-6"> | ||
{% block benefit_description %}{% endblock %} | ||
</div> | ||
<div class="col-md-12"> | ||
<p>Fellows will receive:</p> | ||
<ul class="fellowships-list two-column"> | ||
{% block benefit_list %} | ||
{% endblock %} | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="row mb-5"> | ||
<div class="col-md-12 my-5"> | ||
<hr class="hr-gradient mt-0"> | ||
<h4 class="h2-headings-white">Eligibility Criteria</h4> | ||
</div> | ||
<div class="col-md-8"> | ||
<p>Fellows must be:</p> | ||
<ul class="fellowships-list"> | ||
{% block eligibility_list %} | ||
{% endblock %} | ||
</ul> | ||
</div> | ||
<div class="col-md-4">img</div> | ||
</div> | ||
|
||
<div class="row py-5 px-md-2"> | ||
<div class="col-md-2">img</div> | ||
<div class="col-md-10"> | ||
<div class="d-flex flex-column flex-md-row justify-content-around"> | ||
<div> | ||
<h2 class="h3-cta-black">Application are open</h2> | ||
<p>short copy short copy short copy short copy short copy short copy short copy short copy short copy</p> | ||
</div> | ||
<div class="ml-md-5 align-self-center"> | ||
<button class="btn btn-normal">I want to be a Fellow</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row py-5 px-md-2"> | ||
<div class="col-md-1">img</div> | ||
<div class="col-md-11"> | ||
<div class="d-flex flex-column flex-md-row justify-content-around"> | ||
<div> | ||
<p>Want to support the incredible work Fellows are doing? Either as a host organization or a funder, you can join us to keep the Internet healthy.</p> | ||
</div> | ||
<div class="ml-md-5 align-self-center"> | ||
<button class="btn btn-ghost">Ways to Support</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
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
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,19 @@ | ||
#fellowships-nav { | ||
a { | ||
@include yellow-underline-nav-link(".active", "Nunito Sans"); | ||
} | ||
} | ||
|
||
.fellowships-list { | ||
list-style: outside; | ||
|
||
&.two-column { | ||
column-count: 2; | ||
column-gap: 2rem; | ||
} | ||
|
||
li { | ||
margin-left: 1.1rem; | ||
padding-left: 1.5rem; | ||
} | ||
} |