-
Notifications
You must be signed in to change notification settings - Fork 0
Initial jukebox and intro blurb #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
94527e5
4c8cb00
3721641
3b586f0
f4cdf1a
2827a40
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
short_name: yardasol | ||
name: Yardas Ol | ||
position: Writer | ||
--- | ||
placeholder |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
- name: Home | ||
link: / | ||
- name: About | ||
link: /about.html | ||
- name: Blog | ||
link: /blog.html | ||
- name: Staff | ||
link: /staff.html | ||
- name: News | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. much cleaner. Very likely to change in the future. |
||
link: /news.html | ||
- name: Archives | ||
link: /archives.html |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- name: yardasol | ||
description: '[yardasol] is the creator of this website' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- <div class="embed-spotify"> --> | ||
<iframe src="https://open.spotify.com/embed/user/{{ include.id }}" | ||
width="380" | ||
height="280" | ||
frameborder="0" | ||
allowtransparency="true" | ||
allow="encrypted-media" | ||
webkitallowfullscreen | ||
mozallowfullscreen | ||
allowfullscreen> | ||
</iframe> | ||
<!-- </div> --> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
author: yardasol | ||
--- | ||
Welcome to GXCTFAA! | ||
|
||
This is a test of the News page. I anticipate this will be a blog-style page with different posts. If you care to look, there's a Locker Room Jukebox page up and running now. Go take a look at it! Hope you enjoy! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.embed-spotify { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. from andriannp/spotify-embed-on-Jekyll |
||
position: relative; | ||
padding-bottom: 100%; | ||
height: 0; | ||
overflow: hidden; | ||
max-width: 100%; | ||
} | ||
|
||
.embed-spotify iframe, .embed-spotify object, .embed-spotify embed { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
[Locker Room Jukebox](/archives/jukebox.html) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Jukebox | ||
orangedisc: spotify/playlist/3e7vLLiv8elW1wecFThu0d | ||
spring2013: spotify/playlist/4YLtiX8FxP5L2BFrZNaBme | ||
--- | ||
# Jukebox page | ||
|
||
{% include spotifyplaylist.html id=page.orangedisc %} | ||
{% include spotifyplaylist.html id=page.spring2013 %} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: People | ||
--- | ||
|
||
{% for person in site.data.people %}* ### [{{ person.name }}] | ||
|
||
{{ person.description | markdownity }} | ||
|
||
|
||
{% endfor %} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
--- | ||
@import "main"; | ||
@import "spotify-embed"; |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: GXCTFAA | Grinnell Cross Country, Track & Field Alumni Association | ||
--- | ||
# Grinnell Cross Country, Track & Field Alumni Association | ||
Welcome to the webpage of the Grinnell Cross Country, Track, & Field Alumni Association. I hope that one day this website will serve as a semi-historical resource for current and alumni athletes of the XC and T&F programs to learn about the history of the program. For example, there should a page to look at scans of previous yearbooks, lists of quotes, routes, workouts, photos, videos, playlists, and so on and so forth. | ||
|
||
As you can see, it is quite barebones right now. I haven't even formatted anything yet. I plan to get most of the development underway within the next year before I'm so far removed from the institution as to not have any contacts there anymore. | ||
|
||
Feel free to browse around what's here right now, and pop an issue in the tracker on the github page if you have an idea or want to help out. | ||
|
||
Many thanks,, | ||
|
||
[yardasol] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: News | ||
--- | ||
|
||
{% for post in site.posts %}* ## [{{ post.date | date_to_string }} - {{ post.title }}]({{ post.url }}) | ||
|
||
{{ post.excerpt }} | ||
{% endfor %} |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine for now, but we'll need to change this later