Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
6 changes: 5 additions & 1 deletion themes/inpycon2025/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ path {
text-overflow: ellipsis;
}
.bg-tit a {
color: #25627e !important;
color: #000000 !important;
font-weight: 500;
display: inline-block;
}
Expand Down 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
3 changes: 3 additions & 0 deletions themes/inpycon2025/static/images/calendar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions themes/inpycon2025/static/images/person.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/calendar.svg" alt="Calendar" class="fs-4 pe-1 text-icon-slate" 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/person.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