Skip to content

Updated Blog Card Icon #510

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions themes/inpycon2025/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1556,6 +1556,7 @@ path {
}
.bg-date,
.author {
color: #475569 !important;
margin: 20px 0px;
}

Expand Down Expand Up @@ -1729,6 +1730,9 @@ path {
.text-icon-orange {
color: #ff7b3e;
}
.text-icon-slate {
color: #475569;
}
.outline-lime {
outline: 1px solid #c5f700;
}
Expand Down
10 changes: 10 additions & 0 deletions themes/inpycon2025/static/images/calendar1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions themes/inpycon2025/static/images/person1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions themes/inpycon2025/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h2 class="title-2 heading-title">
{# Added flexbox classes #}
<div class="bg-date d-flex align-items-center mb-2 mb-md-0">
{# Added flexbox and margin #}
<i class="fas fa-calendar fs-4 pe-1 text-icon-orange"></i>
<img src="{{ SITEURL }}/theme/images/calendar1.svg" alt="Calendar" class="fs-4 pe-1" style="width: 1em; height: 1em;" />
{# Added img-small and custom style #}
<time datetime="{{article.date}}" itemprop="datePublished">
<p class="blog-date mb-0">
Expand All @@ -69,7 +69,7 @@ <h2 class="title-2 heading-title">
</div>
<div class="author d-flex align-items-center">
{# Added flexbox #}
<i class="fas fa-pen-to-square fs-4 text-icon-orange"></i>
<img src="{{ SITEURL }}/theme/images/person1.svg" alt="Person" class="fs-4 pe-1 text-icon-slate" style="width: 1em; height: 1em;"></i>
{# Added img-small and custom style #}
<p class="mb-0">
{# Removed default margin #} {{ article.author | default("PyCon
Expand Down