@@ -26,8 +26,9 @@ layout: base.njk
2626</div >
2727
2828
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" >
29+ <div class =" job-container bg-lavender w-full h-auto {% if job_postings %} px-[6%] -pt-20 pb-72 md:pb-40 relative {% else %} p-0 {% endif %}" >
30+ {% if job_postings %}
31+ <div class =" flex flex-wrap -mt-24" >
3132 <!-- Column 1 -->
3233 <div class =" w-full lg:w-1/3 px-4 flex flex-col gap-8" >
3334 {% for job_post in job_postings %}
@@ -42,14 +43,12 @@ layout: base.njk
4243 {{ job_post .company }}
4344 </a >
4445 </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 >
46+ <p class =" pt-8 flex items-center gap-x-6 mb-0" >
47+ <span ><i class =" fa-solid pr-2 fa-briefcase text-xl text-[#475569]" ></i >{{ job_post .job_type }} </span >
48+ <span ><i class =" fa-solid pr-2 fa-location-dot text-xl text-[#475569]" ></i >{{ job_post .location }} </span >
5049 </p >
5150 </div >
52- <div class =" pt-2 text-gray-700" >
51+ <div class =" pt-4 text-gray-700" >
5352 <p class =" text-justify" >
5453 {{ job_post .description }}
5554 </p >
@@ -77,14 +76,12 @@ layout: base.njk
7776 {{ job_post .company }}
7877 </a >
7978 </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 >
79+ <p class =" pt-8 flex items-center gap-x-6 mb-0" >
80+ <span ><i class =" fa-solid pr-2 fa-briefcase text-xl text-[#475569]" ></i >{{ job_post .job_type }} </span >
81+ <span ><i class =" fa-solid pr-2 fa-location-dot text-xl text-[#475569]" ></i >{{ job_post .location }} </span >
8582 </p >
8683 </div >
87- <div class =" pt-2 text-gray-700" >
84+ <div class =" pt-4 text-gray-700" >
8885 <p class =" text-justify" >
8986 {{ job_post .description }}
9087 </p >
@@ -112,14 +109,12 @@ layout: base.njk
112109 {{ job_post .company }}
113110 </a >
114111 </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 >
112+ <p class =" pt-8 flex items-center gap-x-6 mb-0" >
113+ <span ><i class =" fa-solid pr-2 fa-briefcase text-xl text-[#475569]" ></i >{{ job_post .job_type }} </span >
114+ <span ><i class =" fa-solid pr-2 fa-location-dot text-xl text-[#475569]" ></i >{{ job_post .location }} </span >
120115 </p >
121116 </div >
122- <div class =" pt-2 text-gray-700" >
117+ <div class =" pt-4 text-gray-700" >
123118 <p class =" text-justify" >
124119 {{ job_post .description }}
125120 </p >
@@ -133,4 +128,9 @@ layout: base.njk
133128 {% endfor %}
134129 </div >
135130 </div >
131+ {% else %}
132+ <div class =" flex items-center -mt-24 bg-pycon-blue justify-center md:justify-start" >
133+ <p class =" px-[6%] text-xl md:text-3xl text-[#FFFFFF] text-center pt-20 pb-48 w-full font-light" >Job postings coming soon...</p >
134+ </div >
135+ {% endif %}
136136</div >
0 commit comments