Skip to content

Commit 1cfa168

Browse files
committed
new-commit
1 parent 05b2027 commit 1cfa168

File tree

5 files changed

+13
-113
lines changed

5 files changed

+13
-113
lines changed

_layouts/_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h3>Contact Us</h3>
2626
</div>
2727
</div>
2828
<div class="footer-bottom">
29-
<small>&copy; {{ 'now' }} {{ domain }}</small>
29+
<small>&copy; 2025 Black Python Devs</small>
3030
</div>
3131
</div>
3232
</footer>

_layouts/_includes/conferences.html renamed to _layouts/_includes/sponsored_events.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{% if site.data.events.conferences.size > 0 %}
2-
<div class="conference grid">
3-
{% for conference in site.data.events.conferences %}
1+
{% if site.data.events.sponsored_events.size > 0 %}
2+
<div class="sponsored_event grid">
3+
{% for sponsored_event in site.data.events.sponsored_events %}
44
<article>
55
<h2>
66
<a href="{{ conference.url }}">{{ conference.name }}</a>

_layouts/event.html

Lines changed: 0 additions & 105 deletions
This file was deleted.
File renamed without changes.

app.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
{"text": "Home", "url": "/index.html", "fa": "fa fa-home fa-fw"},
99
{"text": "Blog", "url": "/blog", "fa": "fa fa-newspaper fa-fw"},
1010
{"text": "About Us", "url": "/about.html", "fa": "fa fa-info-circle fa-fw"},
11-
{"text": "Events", "url": "/events", "fa": "fa fa-calendar fa-fw"},
11+
{"text": "BPD Events", "url": "/bpd-events", "fa": "fa fa-calendar fa-fw"},
12+
{
13+
"text": "Sponsored Events",
14+
"url": "/sponsored-events.html",
15+
"fa": "fa fa-handshake fa-fw",
16+
},
1217
{"text": "Community", "url": "/community.html", "fa": "fa fa-users fa-fw"},
1318
{
1419
"text": "Support Us",
@@ -46,9 +51,9 @@ class Support(Page):
4651

4752

4853
@app.page
49-
class UpcomingEvents(Page):
50-
template = "events.html"
51-
slug = "events"
54+
class SponsoredEvents(Page):
55+
template = "sponsored-events.html"
56+
slug = "sponsored-events"
5257

5358

5459
@app.collection

0 commit comments

Comments
 (0)