|
| 1 | +--- |
| 2 | +title: Job Board - Pycon India 2025 |
| 3 | +description: PyCon India 2025 Job Board |
| 4 | +layout: base.njk |
| 5 | +--- |
| 6 | + |
| 7 | +{% from "components/flat-card.njk" import flatCard %} |
| 8 | +{% from "components/button.njk" import button %} |
| 9 | + |
| 10 | +{% set job_postings = jobData %} |
| 11 | + |
| 12 | +<div class="w-full h-auto bg-pycon-blue px-[6%] pb-32 flex flex-col md:flex-row"> |
| 13 | + <div class="pt-32 pb-8 md:pb-32 w-full lg:w-[70%]"> |
| 14 | + <div class="black-han-sans-regular font-normal text-4xl md:text-5xl md:text-center text-[#FFFFFF] text-center lg:text-left"> |
| 15 | + Job Board |
| 16 | + </div> |
| 17 | + <div class="pt-10 font-light text-lg md:text-2xl md:text-center text-white text-center lg:text-left"> |
| 18 | + <p class="mb-0">Submit your job posting <a href="https://docs.google.com/forms/d/e/1FAIpQLSeFiiwkmM1qesa3Ex33K2Tz9qofvZKuG-ZR6PeDHgCK7RzMrg/viewform" target="_blank" rel="noopener noreferrer" class="underline">here</a></p> |
| 19 | + <p>Check out the <a href="{{ env.baseUrl }}attend/job-board-guidelines/" class="underline">rules and guidelines</a> </p> |
| 20 | + </div> |
| 21 | + </div> |
| 22 | + <div class="lg:w-[30%] w-[80%] lg:mt-40 flex items-center justify-center mx-auto"> |
| 23 | + <img src="/img/assets/abstract-obj.svg" alt="Guide" class="w-[40%] lg:w-[60%] transition-transform duration-100" style="animation: floating 2s ease-in-out infinite;"> |
| 24 | + <img src="/img/assets/star-lime-vector.svg" alt="Guide" class="w-[10%] lg:w-[10%] transition-transform duration-100" style="animation: floating 2s ease-in-out infinite;"> |
| 25 | + </div> |
| 26 | +</div> |
| 27 | + |
| 28 | + |
| 29 | +<div class="job-container bg-lavender w-full h-auto -pt-20 px-[6%] pb-72 md:pb-40 relative"> |
| 30 | + <div class="flex flex-wrap -mt-24 -mx-4"> |
| 31 | + <!-- Column 1 --> |
| 32 | + <div class="w-full lg:w-1/3 px-4 flex flex-col gap-8"> |
| 33 | + {% for job_post in job_postings %} |
| 34 | + {% if loop.index0 % 3 == 0 %} |
| 35 | + {% set bg_color = 'purple' if loop.index0 // 3 % 2 == 0 else 'lime' %} |
| 36 | + {% call flatCard(bg=bg_color) -%} |
| 37 | + <div class="p-4"> |
| 38 | + <div class="text-3xl font-semibold">{{ job_post.title }}</div> |
| 39 | + <div class="pt-4"> |
| 40 | + <span class="text-2xl"> |
| 41 | + <a href="{{ job_post.company_website }}" class="underline"> |
| 42 | + {{ job_post.company }} |
| 43 | + </a> |
| 44 | + </span> |
| 45 | + <p class="pt-8 flex items-center gap-x-2 mb-0"> |
| 46 | + <i class="fa-solid fa-briefcase text-xl text-[#475569]"></i> |
| 47 | + <span>{{ job_post.job_type }}</span> |
| 48 | + <i class="fa-solid fa-location-dot text-xl text-[#475569]"></i> |
| 49 | + <span>{{ job_post.location }}</span> |
| 50 | + </p> |
| 51 | + </div> |
| 52 | + <div class="pt-2 text-gray-700"> |
| 53 | + <p class="text-justify"> |
| 54 | + {{ job_post.description }} |
| 55 | + </p> |
| 56 | + </div> |
| 57 | + <div class="pt-4"> |
| 58 | + {{ button(text="Apply", url=job_post.link_to_apply, lime_bg=(bg_color == "purple"), env=env) }} |
| 59 | + </div> |
| 60 | + </div> |
| 61 | + {%- endcall %} |
| 62 | + {% endif %} |
| 63 | + {% endfor %} |
| 64 | + </div> |
| 65 | + |
| 66 | + <!-- Column 2 --> |
| 67 | + <div class="w-full pt-8 lg:pt-16 lg:w-1/3 px-4 flex flex-col gap-8"> |
| 68 | + {% for job_post in job_postings %} |
| 69 | + {% if loop.index0 % 3 == 1 %} |
| 70 | + {% set bg_color = 'purple' if loop.index0 // 3 % 2 == 1 else 'lime' %} |
| 71 | + {% call flatCard(bg=bg_color) -%} |
| 72 | + <div class="p-4"> |
| 73 | + <div class="text-3xl font-semibold">{{ job_post.title }}</div> |
| 74 | + <div class="pt-4"> |
| 75 | + <span class="text-2xl"> |
| 76 | + <a href="{{ job_post.company_website }}" class="underline"> |
| 77 | + {{ job_post.company }} |
| 78 | + </a> |
| 79 | + </span> |
| 80 | + <p class="pt-8 flex items-center gap-x-2 mb-0"> |
| 81 | + <i class="fa-solid fa-briefcase text-xl text-[#475569]"></i> |
| 82 | + <span>{{ job_post.job_type }}</span> |
| 83 | + <i class="fa-solid fa-location-dot text-xl text-[#475569]"></i> |
| 84 | + <span>{{ job_post.location }}</span> |
| 85 | + </p> |
| 86 | + </div> |
| 87 | + <div class="pt-2 text-gray-700"> |
| 88 | + <p class="text-justify"> |
| 89 | + {{ job_post.description }} |
| 90 | + </p> |
| 91 | + </div> |
| 92 | + <div class="pt-4"> |
| 93 | + {{ button(text="Apply", url=job_post.link_to_apply, lime_bg=(bg_color == "purple"), env=env) }} |
| 94 | + </div> |
| 95 | + </div> |
| 96 | + {%- endcall %} |
| 97 | + {% endif %} |
| 98 | + {% endfor %} |
| 99 | + </div> |
| 100 | + |
| 101 | + <!-- Column 3 --> |
| 102 | + <div class="w-full pt-8 lg:pt-0 lg:w-1/3 px-4 flex flex-col gap-8"> |
| 103 | + {% for job_post in job_postings %} |
| 104 | + {% if loop.index0 % 3 == 2 %} |
| 105 | + {% set bg_color = 'purple' if loop.index0 // 3 % 2 == 0 else 'lime' %} |
| 106 | + {% call flatCard(bg=bg_color) -%} |
| 107 | + <div class="p-4"> |
| 108 | + <div class="text-3xl font-semibold">{{ job_post.title }}</div> |
| 109 | + <div class="pt-4"> |
| 110 | + <span class="text-2xl"> |
| 111 | + <a href="{{ job_post.company_website }}" class="underline"> |
| 112 | + {{ job_post.company }} |
| 113 | + </a> |
| 114 | + </span> |
| 115 | + <p class="pt-8 flex items-center gap-x-2 mb-0"> |
| 116 | + <i class="fa-solid fa-briefcase text-xl text-[#475569]"></i> |
| 117 | + <span>{{ job_post.job_type }}</span> |
| 118 | + <i class="fa-solid fa-location-dot text-xl text-[#475569]"></i> |
| 119 | + <span>{{ job_post.location }}</span> |
| 120 | + </p> |
| 121 | + </div> |
| 122 | + <div class="pt-2 text-gray-700"> |
| 123 | + <p class="text-justify"> |
| 124 | + {{ job_post.description }} |
| 125 | + </p> |
| 126 | + </div> |
| 127 | + <div class="pt-4"> |
| 128 | + {{ button(text="Apply", url=job_post.link_to_apply, lime_bg=(bg_color == "purple"), env=env) }} |
| 129 | + </div> |
| 130 | + </div> |
| 131 | + {%- endcall %} |
| 132 | + {% endif %} |
| 133 | + {% endfor %} |
| 134 | + </div> |
| 135 | + </div> |
| 136 | +</div> |
0 commit comments