Skip to content

Update companies and universities module #63

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

Draft
wants to merge 2 commits into
base: main-nav-updates
Choose a base branch
from
Draft
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
10 changes: 10 additions & 0 deletions _case_studies/salesforce copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: blog_detail
title: Salesforce
logo: assets/images/salesforce.png
featured-home: true
order: 4
link: https://www.facebook.com
---

Pushing the state of the art in NLP and Multi-task learning.
1 change: 1 addition & 0 deletions _case_studies/salesforce.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Salesforce
logo: assets/images/salesforce.png
featured-home: true
order: 1
link: https://www.facebook.com
---

Pushing the state of the art in NLP and Multi-task learning.
10 changes: 10 additions & 0 deletions _case_studies/stanford-university copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: blog_detail
title: Stanford University
logo: assets/images/stanford-university.png
featured-home: true
order: 5
link: https://www.facebook.com
---

Using PyTorch's flexibility to efficiently research new algorithmic approaches.
1 change: 1 addition & 0 deletions _case_studies/stanford-university.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Stanford University
logo: assets/images/stanford-university.png
featured-home: true
order: 2
link: https://www.facebook.com
---

Using PyTorch's flexibility to efficiently research new algorithmic approaches.
10 changes: 10 additions & 0 deletions _case_studies/udacity copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: blog_detail
title: Udacity
logo: assets/images/udacity.png
featured-home: true
order: 6
link: https://www.facebook.com
---

Educating the next wave of AI Innovators using PyTorch.
1 change: 1 addition & 0 deletions _case_studies/udacity.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Udacity
logo: assets/images/udacity.png
featured-home: true
order: 3
link: https://www.facebook.com
---

Educating the next wave of AI Innovators using PyTorch.
12 changes: 6 additions & 6 deletions _sass/homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,6 @@

.col-md-4 {
margin-bottom: rem(40px);
@include desktop {
margin-bottom: 0;
}
}

.case-study-title {
Expand All @@ -243,10 +240,13 @@
}

p {
color: $not_quite_black;
font-size: rem(24px);
color: $dark_grey;
font-size: 1.125rem;
letter-spacing: 0.25px;
line-height: rem(36px);
}

.btn {
background-color: $white;
}
}

Expand Down
9 changes: 4 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,11 @@ <h2>Companies &amp; Universities<br />Using PyTorch</h2>

{% for case_study in case_studies %}
<div class="col-md-4">
<img src="{{ site.baseurl }}/{{ case_study.logo }}" class="img-fluid" width="140">
<img src="{{ site.baseurl }}/{{ case_study.logo }}" class="img-fluid" width="180">
<p>{{ case_study.excerpt }}</p>
<!-- Temporarily hiding link out to case studies for time being -->
<!-- <a href="{{ site.baseurl }}{{ item.url }}" class="btn btn-lg with-right-arrow">
Read More
</a> -->
<a href="{{ case_study.link }}" class="btn btn-lg with-right-arrow">
Learn More
</a>
</div>
{% endfor %}
</div>
Expand Down