Skip to content

Add Ukraine Aid banner #957

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

Merged
merged 1 commit into from
Mar 3, 2022
Merged
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
42 changes: 28 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,39 @@ <h1>From<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Research To<br />Product
{% endif %}

<div class="container homepage-feature-module key-features-module">

<div class="row">
<div class="col-md-12">
<h2>Key Features &amp;<br />Capabilities</h2>
<div class="col-md-9">
<div class="row">
<div class="col-md-12">
<h2>Key Features &amp;<br />Capabilities</h2>

<a href="{{ site.baseurl }}/features" class="btn btn-lg with-right-arrow module-button">
See all Features
</a>
</div>
</div>
<a href="{{ site.baseurl }}/features" class="btn btn-lg with-right-arrow module-button">
See all Features
</a>
</div>
</div>

<div class="row key-features-boxes">
{% assign features = site.features | where: "featured-home", true | sort: 'order' %}
<div class="row key-features-boxes">
{% assign features = site.features | where: "featured-home", true | sort: 'order' %}

{% for feature in features %}
<div class="col-md-3 key-feature-box">
<h5>{{ feature.title }}</h5>
<p>{{ feature.summary-home }}</p>
{% for feature in features %}
<div class="col-md-3 key-feature-box">
<h5>{{ feature.title }}</h5>
<p>{{ feature.summary-home }}</p>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
<div class="col-md-3 ecosystem-row">
<div class="card ecosystem-card">
<div class="card-body">
<div class="card-summary">
<p>Support Ukraine 🇺🇦 <br/><a href="https://opensource.fb.com/support-ukraine" target="_blank" rel="noopener">Help Provide Humanitarian Aid to Ukraine.</a></p>
</div>
</div>
</div>
</div>
</div>
</div>

Expand Down