Skip to content

Add podcast links to footer #777

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 7 commits into from
Jul 14, 2021
Merged
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
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ external_urls:
previous_pytorch_versions: https://pytorch.org/previous-versions/
udacity_courses: https://pytorch.org
youtube: https://www.youtube.com/pytorch
spotify: https://open.spotify.com/show/6UzHKeiy368jKfQMKKvJY5
apple: https://podcasts.apple.com/us/podcast/pytorch-developer-podcast/id1566080008
google: https://www.google.com/podcasts?feed=aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS9PQjVGa0lsOA%3D%3D
amazon: https://music.amazon.com/podcasts/7a4e6f0e-26c2-49e9-a478-41bd244197d0/PyTorch-Developer-Podcast?
linkedIn: https://www.linkedin.com/company/pytorch
livereload: true
markdown: kramdown
highlighter: rouge
Expand Down
25 changes: 18 additions & 7 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,27 @@ <h2>Resources</h2>
</ul>
</div>

<div class="footer-links-col follow-us-col">

<div class="footer-links-col">
<ul>
<li class="list-title"><p>Stay up to date</p></li>
<li><a href="{{ site.external_urls.facebook }}" target="_blank">Facebook</a></li>
<li><a href="{{ site.external_urls.twitter }}" target="_blank">Twitter</a></li>
<li><a href="{{ site.external_urls.youtube }}" target="_blank">YouTube</a></li>
<li><a href="{{ site.external_urls.linkedIn }}" target="_blank">LinkedIn</a></li>
</ul>
</div>

<div class="footer-social-icons">
<a href="{{ site.external_urls.facebook }}" target="_blank" class="facebook"></a>
<a href="{{ site.external_urls.twitter }}" target="_blank" class="twitter"></a>
<a href="{{ site.external_urls.youtube }}" target="_blank" class="youtube"></a>
</div>
<div class="footer-links-col">
<ul>
<li class="list-title"><p>PyTorch Podcasts</p></li>
<li><a href="{{ site.external_urls.spotify }}" target="_blank">Spotify</a></li>
<li><a href="{{ site.external_urls.apple }}" target="_blank">Apple</a></li>
<li><a href="{{ site.external_urls.google }}" target="_blank">Google</a></li>
<li><a href="{{ site.external_urls.amazon }}" target="_blank">Amazon</a></li>
</ul>
</div>
</div>

<div class="privacy-policy">
<ul>
<li class="privacy-policy-links"><a href="{{ site.baseurl }}/assets/tos-oss-privacy-policy/fb-tos-privacy-policy.pdf" target="_blank">Terms</a></li>
Expand Down
3 changes: 3 additions & 0 deletions _sass/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
&.list-title {
padding-bottom: rem(12px);
color: $white;
p {
margin-bottom: 0;
}
}
}

Expand Down