Skip to content

Commit

Permalink
Add After Party page
Browse files Browse the repository at this point in the history
  • Loading branch information
carlwgeorge committed Apr 10, 2024
1 parent 7ad2f0f commit 8561a92
Show file tree
Hide file tree
Showing 13 changed files with 257 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/css/schedule.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ html {
.grid-schedule {
display: grid;
grid-template-columns: 1fr repeat(6, 3fr);
grid-template-rows: 50px repeat(120, 10px);
grid-template-rows: 50px repeat(156, 10px);
border: solid grey;
border-radius: 5px;
padding: 5px;
Expand Down
15 changes: 15 additions & 0 deletions content/party.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "After Party"
page_header_bg: "images/background/gibson.jpg"
description: "Texas Linux Fest 2024 - After Party"
layout: "party"
ignore_header: true
---

### Texas Linux Fest _After Party_

Join us on Saturday, April 13th, for the Texas Linux Fest After Party!
It will be hosted at [_Gibson Street Bar_](https://www.gibsonstreetbar.com/),
located at 1109 S Lamar Blvd.
Our group reservation is from 8:00 PM to 10:00 PM,
but attendees can stay longer if they wish. This party is only possible thanks to the generous support of our sponsors.
30 changes: 30 additions & 0 deletions data/homepage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,17 @@ tab:
end_hour: 18
end_minute: 15

## 8:00 PM

- subject: "TXLF After Party"
talk_link: "party/"
venue: "Gibson Street Bar"
time: "8:00 PM - 10:00 PM"
column: -1
start_hour: 20
start_minute: 0
end_hour: 22
end_minute: 0

############ Registration ####################
registration:
Expand Down Expand Up @@ -1090,6 +1101,25 @@ sponsors:
logo: "images/sponsors/civo.svg"
link: "https://www.civo.com"

- name: "After Party Sponsors"
link: "party/"
sponsor_item:
- name: "Coder"
logo: "images/sponsors/coder.png"
link: "https://coder.com/"

- name: "Tailscale"
logo: "images/sponsors/tailscale.svg"
link: "https://tailscale.com/"

- name: "Meta"
logo: "images/sponsors/meta.png"
link: "https://about.meta.com"

- name: "AWS"
logo: "images/sponsors/aws.svg"
link: "https://aws.amazon.com/opensource/"

- name: "Exhibitors"
sponsor_item:
- name: "Free Software Foundation"
Expand Down
8 changes: 7 additions & 1 deletion hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,17 @@ hasChildren = true
url = "code_of_conduct/"
weight = 3

[[menu.main]]
parent = "About TXLF"
name = "After Party"
url = "party/"
weight = 4

[[menu.main]]
parent = "About TXLF"
name = "FAQ"
url = "faq/"
weight = 4
weight = 5

# uncomment when call for papers is closed
#[[menu.main]]
Expand Down
5 changes: 4 additions & 1 deletion layouts/partials/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@
<div class="hour" style="grid-row: 86/98">16:00</div>
<div class="hour" style="grid-row: 98/110">17:00</div>
<div class="hour" style="grid-row: 110/122">18:00</div>
<div class="hour" style="grid-row: 122/134">19:00</div>
<div class="hour" style="grid-row: 134/146">20:00</div>
<div class="hour" style="grid-row: 146/158">21:00</div>

{{ $rows_per_hour := 12 }}
{{ $start_hour := 9 }}
{{ $end_hour := 18 }}
{{ $end_hour := 21 }}

{{ range .tablist_items }}
{{ $times := findRESubmatch `((\d+):(\d+))[^\d]*((\d+):(\d+))` .time }}
Expand Down
Binary file added static/images/background/gibson.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/sponsors/coder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
136 changes: 136 additions & 0 deletions static/images/sponsors/tailscale.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions themes/eventre-hugo/assets/scss/pages/_party.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.party {
.content {
margin-bottom: 40px;
}
}
2 changes: 2 additions & 0 deletions themes/eventre-hugo/assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@
@import 'pages/contact.scss';

@import 'pages/map.scss';

@import 'pages/party.scss';
45 changes: 45 additions & 0 deletions themes/eventre-hugo/layouts/_default/party.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{{ define "main" }}

{{ if not .Params.Ignore_header }}
{{ partial "page-header.html" . }}
{{ end }}

<section class="sponsors section overlay-white party">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="content">
{{.Content | markdownify }}
</div>
</div>
</div>
{{ with site.Data.homepage.sponsors }}
<div class="row">
<div class="col-12">
{{ range where .sponsor_group ".name" "eq" "After Party Sponsors" }}
<!-- Title -->
<div class="sponsor-title text-center">
<h5>Sponsors</h5>
</div>
<div class="block text-center">
<!-- Sponsors image list -->
<ul class="list-inline sponsors-list">
{{ range .sponsor_item }}
<li class="list-inline-item">
<div class="image-block text-center">
<a href="{{ .link | safeURL }}">
<img src="{{ .logo | absURL }}" alt="{{.name}}" class="img-fluid">
</a>
</div>
</li>
{{ end }}
</ul>
</div>
{{ end }}
</div>
</div>
{{ end }}
</div>
</section>

{{ end }}
6 changes: 6 additions & 0 deletions themes/eventre-hugo/layouts/_default/sponsor.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ <h3>{{.title | markdownify}}</h3>
{{range .sponsor_group }}
<!-- Title -->
<div class="sponsor-title text-center">
{{ if .link }}
<a href="{{ .link | absURL }}">
<h5>{{ .name | markdownify }}</h5>
</a>
{{ else }}
<h5>{{ .name | markdownify }}</h5>
{{ end }}
</div>
<div class="block text-center">
<!-- Sponsors image list -->
Expand Down
6 changes: 6 additions & 0 deletions themes/eventre-hugo/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,13 @@ <h3>{{.title | markdownify}}</h3>
{{range .sponsor_group }}
<!-- Title -->
<div class="sponsor-title text-center">
{{ if .link }}
<a href="{{ .link | absURL }}">
<h5>{{ .name | markdownify }}</h5>
</a>
{{ else }}
<h5>{{ .name | markdownify }}</h5>
{{ end }}
</div>
<div class="block text-center">
<!-- Sponsors image list -->
Expand Down

0 comments on commit 8561a92

Please sign in to comment.