Skip to content

Child Care Section #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions src/_includes/navbar.njk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"submenu": [
{"name": "Venue", "link": "venue"},
{"name": "FAQ's", "link": "about/faqs"},
{"name": "Child Care", "link": "attend/child-care"},
{"name": "Scholarships", "link": "attend/scholarships"}
]
},
Expand Down
106 changes: 106 additions & 0 deletions src/attend/child-care.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
---
title: Child Care
description: PyCon India 2025 Child Care
layout: base.njk
---

{% from "components/card.njk" import card %}
{% from "components/button.njk" import button %}

<div class="w-full h-auto bg-pycon-blue -mb-24 px-[6%] flex flex-col md:flex-row">
<div class="pt-32 pb-8 md:pb-32 w-full lg:w-[70%]">
<div class="black-han-sans-regular font-normal text-3xl md:text-5xl md:text-center text-[#FFFFFF] text-center lg:text-left">
Child Care
</div>
<div class="text-md lg:text-xl w-[100%] md:w-[90%] pt-12 text-[#FFFFFF] lg:pr-10 text-justify">
<p>PyCon India 2025 is proud to announce that we will again be offering childcare during the main conference days. We have selected Childhood Childcare as our service provider in Bangalore, India. We would really like to thank Python Software Foundation for sponsoring the Childcare costs for all the children.</p>
<p>Space is limited, so be sure to sign-up for childcare soon and registration is mandatory for availing the chilicare facility.</p>
</div>
</div>
<div class="lg:w-[40%] w-[80%] -mb-10 lg:mt-60 flex items-center justify-center mx-auto z-10">
<img src="{{ env.baseUrl }}img/assets/star-lime-vector.svg" alt="Star" class="w-[20%] lg:w-[10%] transition-transform duration-100" style="animation: floating 4s ease-in-out infinite;">
<img src="{{ env.baseUrl }}img/assets/childCare.svg" alt="Child Care" class="">
</div>
</div>

<div class="w-full h-auto px-[6%]">
<div class="w-[95%] md:w-[50%] mt-40 md:mt-10">
{% call card() %}
<div class="p-8 pb-4">
<ul class="list-none grid grid-cols-1 md:grid-cols-2 gap-y-0 md:gap-y-6 gap-x-12 mt-4 text-center md:text-left">
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">When</p>
<p class="text-gray-600 text-sm md:text-base">13th & 14th of September 2025</p>
</div>
</li>
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">Where</p>
<p class="text-gray-600 text-sm md:text-base">NIMHANS Convention Center, Bangalore</p>
</div>
</li>
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">Includes</p>
<p class="text-gray-600 text-sm md:text-base">Lunch and Snacks</p>
</div>
</li>
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">Time</p>
<p class="text-gray-600 text-sm md:text-base">8:00 AM - 6:00 PM</p>
</div>
</li>
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">Cost</p>
<p class="text-gray-600 text-sm md:text-base">Nil</p>
</div>
</li>
<li class="flex items-start justify-center md:justify-start">
<div>
<p class="font-normal mb-1 text-gray-800 text-lg md:text-2xl">Ages</p>
<p class="text-gray-600 text-sm md:text-base">2 to 12 years old</p>
</div>
</li>
</ul>

<div class="flex justify-center">
{{ button(text="Coming Soon", url="", lime_bg=true, env = env, disabled=true) }}
</div>
</div>
{% endcall %}
</div>
</div>

<div class="main-container pt-16 w-full h-auto px-[6%]">
<div class="flex flex-col lg:flex-row justify-between items-start relative">
<div class="text-md lg:text-xl w-full lg:w-2/3">
<p>Children will have access to a range of games, toys, books, art, music and other activities while in care.</p>
<p>Note:</p>
<div class="text-md lg:text-xl">
<p class="flex items-center">
<span>
<img src="{{ env.baseUrl }}img/assets/circle-lime.svg" alt="Bullet Icon" class="w-4 mr-2">
</span>
Photo identity for check-in and check out
</p>
<p class="flex items-center">
<span>
<img src="{{ env.baseUrl }}img/assets/circle-lime.svg" alt="Bullet Icon" class="w-4 mr-2">
</span>
Each child will be signed in and out
</p>
</div>
</div>

<div class="w-full lg:w-1/3 flex justify-end mt-8 lg:mt-0 relative">
<img src="{{ env.baseUrl }}img/assets/book-stars.svg" alt="Notebook" class="z-10 w-40 md:w-80 transition-transform duration-100" style="animation: floating 5s ease-in-out infinite;">
</div>
</div>

<div class="-mb-2 relative z-50">
<img src="{{ env.baseUrl }}img/assets/pot.svg" alt="Pot" class="w-12 md:w-auto z-10">
</div>
</div>
Loading