Skip to content

Commit cda60bc

Browse files
committed
PR feedback: Correct typo, undo checking change
1 parent 93e5b78 commit cda60bc

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

core/views.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,7 @@ def get_v3_context_data(self, **kwargs):
333333
"</ul>"
334334
)
335335
ctx["create_account_card_preview_url"] = (
336-
large_static("img/v3/community-page/"),
337-
"community-create-account-preview.png",
336+
large_static("img/v3/community-page/community-create-account-preview.png"),
338337
)
339338
now = timezone.now()
340339
ctx["recent_threads_url"] = (

templates/v3/learn_page.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ <h1>Start anywhere. Learn everything. Build anything.</h1>
3030
<div class="card-masonry py-large">
3131
<div class="item-a">
3232
{% with data=post_cards_data %}
33-
{% include 'v3/includes/_post_card.html' with heading=data.heading posts=data.posts view_all_url=data.view_all_url view_all_label=data.view_all_label theme='teal' variant="content-card" %}
33+
{% include 'v3/includes/_post_card_v3.html' with heading=data.heading posts=data.posts view_all_url=data.view_all_url view_all_label=data.view_all_label theme='teal' variant="content-card" %}
3434
{% endwith %}
3535
</div>
3636
<div class="item-b">
3737
{% with data=boost_community_data %}
38-
{% include 'v3/includes/_post_card.html' with heading=data.heading posts=data.posts view_all_url=data.view_all_url view_all_label=data.view_all_label %}
38+
{% include 'v3/includes/_post_card_v3.html' with heading=data.heading posts=data.posts view_all_url=data.view_all_url view_all_label=data.view_all_label %}
3939
{% endwith %}
4040
</div>
4141
<div class="item-d">

0 commit comments

Comments
 (0)