Skip to content

WEB: Add Telegram to follow us and footer #47531

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
Jun 28, 2022
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 web/pandas/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
</main>
<footer class="container pt-4 pt-md-5 border-top">
<ul class="list-inline social-buttons float-end">
<li class="list-inline-item">
<a href="https://t.me/s/pandas_dev">
<i class="fab fa-telegram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/pandas_dev/">
<i class="fab fa-twitter"></i>
Expand Down
16 changes: 13 additions & 3 deletions web/pandas/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,19 @@ <h4>Latest version: {{ releases[0].name }}</h4>
{% endif %}
<h4>Follow us</h4>
<div class="text-center">
<p>
<a href="https://twitter.com/pandas_dev?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @pandas_dev</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://t.me/s/pandas_dev">
<i class="follow-us-button fab fa-telegram"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/pandas_dev/">
<i class="follow-us-button fab fa-twitter"></i>
</a>
</li>
</ul>

</div>
<h4>Get the book</h4>
<p class="book">
Expand Down
7 changes: 7 additions & 0 deletions web/pandas/static/css/pandas.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ ol ol, ol ul, ul ol, ul ul {
.pink {
color: #e70488;
}
.follow-us-button {
font-size: 2.4rem !important;
color: #0d6efd !important;
}
.follow-us-button:hover {
color: #0b5ed7 !important;
}
.fab {
font-size: 1.2rem;
color: #666;
Expand Down