-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ad2f0f
commit 8561a92
Showing
13 changed files
with
257 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.party { | ||
.content { | ||
margin-bottom: 40px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,5 @@ | |
@import 'pages/contact.scss'; | ||
|
||
@import 'pages/map.scss'; | ||
|
||
@import 'pages/party.scss'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters