Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
13 changes: 7 additions & 6 deletions app/home/templates/home/components/navbar.html
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
{% load static %}
<nav class="absolute w-full z-10">
<nav class="absolute w-full z-10 px-4">
<div class="relative flex flex-col">
{% comment %}
<!-- Ribbon CTA -->
Expand DownExpand Up@@ -107,9 +107,9 @@
{% endcomment %}
</div>

{% comment %}
<div class="flex justify-end items-center gap-7 w-full">

<div class="flex justify-end items-center gap-7 w-full">
{% comment %}
<!-- Header Links -->
<div class="hidden lg:flex">
<ul class="menu menu-horizontal px-1">
Expand DownExpand Up@@ -185,14 +185,15 @@
</li>
</ul>
</div>
{% endcomment %}
<!-- Ticket Button -->
<div>
<a href="#" class="btn btn-primary btn-square lg:btn-wide">
<span class="lg:inline font-bantayog py-3.5 px-8 text-xl">Get Tickets</span>
<a href="https://ti.to/pythonph/pythonasia-2026/" target="_blank" class="btn btn-primary btn-wide py-2 px-4 sm:py-3.5 sm:px-8">
<span class="lg:inline font-bantayog text-base sm:text-xl">Get Tickets</span>
</a>
</div>
</div>
{% endcomment %}

</div>
</div>
</nav>
12 changes: 4 additions & 8 deletions app/home/templates/home/sections/conference-at-a-glance.html
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{% load static %}
<section id="conference-at-a-glance"
class="py-20 bg-[url('{% static 'img/bg-conference-at-glance.png' %}')] bg-contain bg-center">
class="pt-20 bg-[url('{% static 'img/bg-conference-at-glance.png' %}')] bg-contain bg-center">
<div class="container mx-auto px-6">
<!-- Header -->
<div class="text-center mb-16">
Expand All@@ -9,10 +9,9 @@ <h2 class="text-5xl md:text-6xl font-bold font-td_pinoy" style="color: #D87A3F">
</h2>
</div>
<!-- Schedule Grid -->
<div class="flex flex-col sm:flex-row md:items-stretch md:justify-center gap-8 mb-20 max-w-5xl mx-auto">
<div class="flex flex-col justify-center sm:flex-row md:items-stretch md:justify-center gap-8 mb-20 max-w-5xl mx-auto">
<!-- March 21-22 -->
<div class="p-8 rounded-2xl w-full bg-offwhite-2 border-t-[8px] border-t-[#F26D1D]"
style="max-width: 300px;">
<div class="p-8 rounded-2xl w-full max-w-[100%] sm:max-w-[300px] bg-offwhite-2 border-t-[8px] border-t-[#F26D1D]">
<div class="mb-6 font-bold">
<h3 class="text-2xl font-bantayog text-brown-1">MARCH 21-22,</h3>
<h4 class="text-2xl font-bantayog text-brown-1">SATURDAY-SUNDAY</h4>
Expand DownExpand Up@@ -57,8 +56,7 @@ <h4 class="text-2xl font-bantayog text-brown-1">SATURDAY-SUNDAY</h4>
</div>
</div>
<!-- March 23 -->
<div class="p-8 rounded-2xl w-full bg-offwhite-2 border-t-[8px] border-t-[#FFA218]"
style="max-width: 300px;">
<div class="p-8 rounded-2xl w-full max-w-[100%] sm:max-w-[300px] bg-offwhite-2 border-t-[8px] border-t-[#FFA218]">
<div class="mb-6 font-bold">
<h3 class="text-2xl font-bantayog text-brown-1">MARCH 23,</h3>
<h4 class="text-2xl font-bantayog text-brown-1">MONDAY</h4>
Expand All@@ -78,8 +76,6 @@ <h4 class="text-2xl font-bantayog text-brown-1">MONDAY</h4>
</div>
</div>

{% comment %}
{% include "home/sections/tickets-section.html" %}
{% endcomment %}
</div>
</section>
13 changes: 6 additions & 7 deletions app/home/templates/home/sections/tickets-section.html
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
{% load static %}

<div class="text-center">
<div class="text-center relative max-w-[940px] mx-auto">
<h2 class="text-5xl font-bold mb-6 font-td_pinoy" style="color: #BD4B06;">Tickets Available</h2>
<p class="text-lg mb-8 max-w-3xl mx-auto font-nunito" style="color: #7C5E3B">
Join us as we learn something new, teach something new, find opportunities, build cool things,
<br />
make friends, and geek out!
</p>
<div class="flex justify-center items-center mb-8 relative">
<div class="flex justify-between items-center relative max-w-[550px] gap-8 mx-auto">
<!-- Left Python Logo -->
<div class="hidden md:block absolute left-0" style="transform: translateX(-120%);">
<div>
<img src="{% static 'img/python-blue.png' %}" alt="Python Logo" class="w-32 h-auto" width="128" height="128">
</div>
<!-- Get Tickets Button -->
<div class="inline-block">
<a href="#"
class="inline-block px-16 py-4 text-white font-bold text-xl uppercase rounded-lg transition-all hover:opacity-90"
<a href="https://ti.to/pythonph/pythonasia-2026/" target="_blank"
class="inline-block px-4 py-2 md:px-12 md:py-6 text-white font-bold text-base sm:text-xl uppercase rounded-lg transition-all hover:opacity-90 mb-5"
style="background-color: #D87A3F">Get Tickets</a>
<p class="text-sm mt-4 uppercase tracking-wide" style="color: #7C5E3B;">Apply for Student Discount</p>
</div>
<!-- Right Python Logo -->
<div class="hidden md:block absolute right-0" style="transform: translateX(120%);">
<div>
<img src="{% static 'img/python-yellow.png' %}" alt="Python Logo" class="w-32 h-auto" width="128" height="128">
</div>
</div>
Expand Down
14 changes: 8 additions & 6 deletions app/home/templates/home/sections/when-where-section.html
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,22 +2,24 @@
<section id="when-where"
class="pt-[80px] pb-[80px] bg-[url('/static/img/when-where-bg.jpg')] bg-cover bg-center">
<div class="w-full max-w-[1160px] mx-auto px-6 flex flex-col gap-10">
<div class="flex justify-between items-center">
<div class="flex flex-col gap-4 sm:flex-row sm:justify-between sm:items-center">
<div class="">
<h2 class="font-bantayog text-[28px] text-[#F26D1D] leading-[130%]">WHEN? WHERE?</h2>
<p class="font-td_pinoy text-[35px] text[#84400F] leading-[130%] tracking-[2%]">March 21-23, 2026</p>
<p class="font-td_pinoy text-[35px] text[#84400F] leading-[130%] tracking-[2%]">De La Salle University (DLSU),</p>
<p class="font-td_pinoy text-[35px] text[#84400F] leading-[130%] tracking-[2%]">Malate, Manila</p>
</div>
{% comment %}

<div class="flex flex-col justify-center gap-3.5">
<button class="rounded-lg bg-[#F26D1D] py-[27px] px-[90px] text-white text-[22px] leading-[120%] font-bantayog">
<a href="https://ti.to/pythonph/pythonasia-2026/" target="_blank" class="rounded-lg bg-[#F26D1D] px-6 py-4 md:py-[27px] md:px-[90px] text-white text-base md:text-[22px] leading-[100%] sm:leading-[120%] font-bantayog text-center">
GET TICKETS
</button>
</a>
{% comment %}
<a href="#"
class="underline text-[#84400F] text-center text-base font-bantayog">Apply for Student Discount</a>
class="underline text-[#84400F] text-center text-base font-bantayog">Apply for Student Discount</a>\
{% endcomment %}
</div>
{% endcomment %}

</div>
<div class="relative w-full pb-[56.25%] overflow-hidden rounded-[24px]">
<iframe class="absolute top-0 left-0 w-full h-full border-0"
Expand Down
2 changes: 1 addition & 1 deletion static/css/app.css

Large diffs are not rendered by default.