Skip to content

Commit adce91f

Browse files
authored
Merge pull request #7 from djangocon/news-feed
activating the news page
2 parents e47c90b + ae907d2 commit adce91f

File tree

4 files changed

+52
-1
lines changed

4 files changed

+52
-1
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
author: Communications Team
3+
category: General
4+
published_datetime: 2025-03-04 06:00:00
5+
cover:
6+
url: /assets/img/2025/54089577525_de6f9bcb72_w.jpg
7+
alt: "Sheena O'Connell speaking at DjangoCon US 2024"
8+
title: "The Call for Proposals for DjangoCon US 2025 Is Now Open!"
9+
---
10+
11+
We are excited that DjangoCon US 2025 is now open for talk submissions: [call for proposals](https://pretalx.com/djangocon-us-2025/cfp)! The deadline for submissions is April 27th, 2025 at [Noon CDT](https://time.is/1200PM_27_April_2025_in_Chicago?DjangoCon_US_CFP_Closes).
12+
13+
<!-- excerpt -->
14+
15+
We invite you to submit your proposal no matter your background or experience level with Django. Proposals can be from a wide range of topics; non-Django and community topics are welcome. You can look at our [talk lineup](https://2024.djangocon.us/news/announcing-lineup/) from last year for reference.
16+
17+
We fancy first-timers! If you haven’t spoken at a conference or given a tutorial before, this is your invitation to do so. Don’t let the idea that you’re not famous or an expert stop you from submitting. It certainly won’t stop us from selecting your talk or tutorial and it won’t stop the audience from enjoying it! If you still need help decding on a topic take a look at our own Drew Winstel's [blog post](https://winstel.dev/2025/02/12/talk-ideas-for-dcus-25/) for some ideas.
18+
19+
Plus there are perks! Presenters get free admission to DjangoCon US! Grants to assist with your travel and lodging expenses are available as well. The form for Opportunity Grants will be released in the very near future.
20+
21+
For more information on talk and tutorial formats, please check out our [speaker information page](https://2025.djangocon.us/speaking/).
22+
23+
We want everyone attending DjangoCon US to feel safe, welcome, and included. To that end, we have a [Code of Conduct](https://2025.djangocon.us/conduct/) for all speakers and attendees.
24+
25+
If you have questions, feel free to [contact us](mailto:[email protected]).
26+
27+
We are excited to see your proposals and can’t wait to see you in Chicago!

src/_includes/home/landing-conf-home.html

+24
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,30 @@ <h1 class=" font-extrabold text-blue-950 text-5xl/[1.5]">
1212
<strong>September 8-12th, 2025</strong>
1313
</p>
1414

15+
<div class="space-y-8">
16+
<section>
17+
<h2 class="mb-4 text-2xl font-bold font-heading lg:text-4xl">Latest News</h2>
18+
19+
<ol class="divide-y" reversed>
20+
{%- for post in collections.posts reversed -%}
21+
{% unless post.hidden or post.category == 'talk' or post.category == 'tutorial' %}
22+
{% if forloop.index0 < 3 %}
23+
<li>
24+
<article class="py-4">
25+
<time
26+
class="mb-2 text-sm tracking-wide text-gray-600 uppercase"
27+
datetime="{{ post.date }}">{{ post.data.published_datetime | formatDateTime: "MMMM d, yyyy" }}</time>
28+
<h3 class="text-xl font-semibold font-heading lg:text-2xl"><a href="{{ post.url }}" class="reverse-link">{{ post.data.title | escape }}</a></h3>
29+
</article>
30+
</li>
31+
{% endif %}
32+
{% endunless %}
33+
{%- endfor -%}
34+
</ol>
35+
36+
<a class="button" href="/news/">Read more news</a>
37+
</section>
38+
1539
<p class="flex flex-wrap justify-center my-6 gap-4">
1640
<a href="{{ site.mailing_list }}" class="button ">Mailing list for updates</a>
1741
<a href="{{ site.social.mastodon }}" class="button">Follow us on Mastodon</a>
32.4 KB
Loading

src/news.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Latest News
33
layout: default
4-
permalink: false
4+
permalink: /news/
55
---
66

77
<div class="hero">

0 commit comments

Comments
 (0)