Skip to content

Commit 340890b

Browse files
Help page venueless (#105)
* page is up * different column number * updating slack link * Consolidate the layout into cards and only use 1 column on smaller viewports. * Update src/venueless-help-page.html * Fix conduct link and clean up errant div. --------- Co-authored-by: Tim Schilling <[email protected]>
1 parent e8d9464 commit 340890b

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

src/venueless-help-page.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: default
3+
title: Help Page
4+
description: Find Help
5+
---
6+
7+
<div class="hero">
8+
<div class="wrapper">
9+
<header class="flex flex-wrap items-center gap-8 lg:gap-16">
10+
<img
11+
src="/assets/img/theme/hero-img.webp"
12+
alt="welcome"
13+
class="hidden w-full max-w-80 md:block" />
14+
<div class="flex-1 max-w-screen-lg">
15+
<h1 class="mb-8 pageheading">{{ title }}</h1>
16+
<p class="subheading">
17+
Need Help? This is the place! Or, go to the <a href="https://djangoconus2024.slack.com">Slack</a> Page.
18+
</p>
19+
</div>
20+
</header>
21+
</div>
22+
</div>
23+
<div class="block-container bg-blue">
24+
<div class="wrapper">
25+
<div class="grid gap-4 lg:grid-cols-4">
26+
<div class="p-4 bg-gray-100">
27+
<span class="text-xl font-bold">General Venueless Questions?</span>
28+
<p class="">Come Visit Our Help Desk in <a href="https://djangoconus2024.slack.com">Slack </a></p>
29+
</div>
30+
<div class="p-4 bg-gray-200">
31+
<span class="text-xl font-bold">Technical Issues?</span>
32+
<p>Come Visit Our Help Desk in <a href="https://djangoconus2024.slack.com">Slack </a></p>
33+
</div>
34+
<div class="p-4 bg-gray-200">
35+
<span class="text-xl font-bold">Problems Accessing Slack?</span>
36+
<p>Email Us!! <a href="mailto:{{site.contact_us_email}}">[email protected]</a></p>
37+
</div>
38+
<div class="p-4 bg-gray-200">
39+
<span class="text-xl font-bold">Code of Conduct Issues?</span>
40+
<p>Visit Our <a href="/conduct/">Code of Conduct Page.</a></p>
41+
</div>
42+
</div>
43+
</div>
44+
</div>

0 commit comments

Comments
 (0)