Skip to content

Commit

Permalink
fix: the wrong year
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritabear committed Jan 12, 2025
1 parent 4a8e863 commit 1998f6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pycontw2016/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def node_bin(name):
(datetime.date(2024, 9, 22), _('Day 2')),
])

COC_VERSION = '2025.0'
COC_VERSION = '2024.0'

# Since 2021, pycon.tw has indivisual server hosting the attendee-facing pages
# (see the repo at https://github.com/pycontw/pycontw-2021) and this config
Expand Down
6 changes: 3 additions & 3 deletions src/templates/default/_includes/nav/nav_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

<a class="navbar-brand" href="{% url 'user_dashboard' %}">
<div style="display: inline;">
<img height="20" src="{% static 'pycontw-2024/assets/2024-py-logo.svg' %}"
<img height="20" src="{% static 'pycontw-2025/assets/2025-py-logo.svg' %}"
class="logo hidden-xs navbar-brand-img" alt="logo">
<img height="20" src="{% static 'pycontw-2024/assets/2024-py-logo.svg' %}"
<img height="20" src="{% static 'pycontw-2025/assets/2025-py-logo.svg' %}"
class="logo visible-xs-inline navbar-brand-img" alt="logo">
<span>PyCon TW 2024</span>
<span>PyCon TW 2025</span>
</div>
</a>
</div>
Expand Down

0 comments on commit 1998f6d

Please sign in to comment.