1

RetryLife webpage

This commit is contained in:
Evan Pratten 2024-11-14 11:55:19 -05:00
parent 65c20be631
commit 2266bd928b
21 changed files with 152 additions and 0 deletions

33
.github/workflows/retrylife-ca.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Deploy retrylife.ca
on:
push:
branches:
- master
paths:
- '.github/workflows/retrylife-ca.yml'
- 'sites/retrylife.ca/**'
jobs:
deploy:
name: Deploy to Production
runs-on: ubuntu-latest
environment: production
permissions:
contents: read
deployments: write
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: retrylife-ca
directory: sites/retrylife.ca
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '2'

View File

@ -0,0 +1,2 @@
# Evan's blog once lived here
/blog/* https://ewpratten.com/blog/:splat

Binary file not shown.

After

Width:  |  Height:  |  Size: 888 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 952 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 893 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 958 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 968 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -0,0 +1,115 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/jpg" href="./assets/logo.jpg" />
<title>RetryLife</title>
<style>
body {
font-family: 'Open Sans', sans-serif;
}
#release-list>div {
margin: 1em;
max-width: 200px;
width: 100%;
}
#release-list div>img {
width: 100%;
}
</style>
</head>
<body>
<main style="max-width: 800px; margin: auto;">
<span style="display: flex; flex-direction: row; justify-content: center; align-items: center;">
<img src="./assets/logo.jpg" style="height: 5rem; text-align:center; margin: 0 1em;">
<h1 style="font-size: 4rem;">RetryLife</h1>
</span>
<p style="text-align: center;">
RetryLife was an electronic music collective based in London, Ontario Canada.
</p>
<hr>
<section>
<h2>Releases</h2>
<div style="display: flex; flex-direction: row; justify-content: space-evenly; flex-wrap: wrap;" id="release-list">
<div>
<img src="./assets/albums/xmas-02/cover.jpg">
<span>XMAS-02</span>
</div>
<div>
<img src="./assets/albums/sir-dankley/cover.jpg">
<span>Sir Dankley's MLG Restaurant</span>
</div>
<div>
<img src="./assets/albums/imagined/cover.jpg">
<span>Imagined</span>
</div>
<div>
<img src="./assets/albums/lemons/cover.jpg">
<span>Lemons</span>
</div>
<div>
<img src="./assets/albums/explosive-xmas/cover.jpg">
<span>Explosive Christmas</span>
</div>
<div>
<img src="./assets/albums/reborn/cover.jpg">
<span>Reborn</span>
</div>
<div>
<img src="./assets/albums/intergalactic-swirlz/cover.jpg">
<span>Intergalactic Swirlz</span>
</div>
<div>
<img src="./assets/albums/flare/cover.jpg">
<span>Flare</span>
</div>
<div>
<img src="./assets/albums/project-39/cover.jpg">
<span>Project 39</span>
</div>
<div>
<img src="./assets/albums/silent/cover.jpg">
<span>Silent</span>
</div>
<div>
<img src="./assets/albums/enlarging-elephants/cover.jpg">
<span>Enlarging Elephants</span>
</div>
<div>
<img src="./assets/albums/bring-the-onslaught/cover.jpg">
<span>Bring the Onslaught</span>
</div>
<div>
<img src="./assets/albums/insanitorium/cover.jpg">
<span>Insanitorium</span>
</div>
<div>
<img src="./assets/albums/hypernova/cover.jpg">
<span>Hypernova</span>
</div>
<div>
<img src="./assets/albums/hidden-forest/cover.jpg">
<span>Hidden Forest</span>
</div>
<div>
<img src="./assets/albums/death-among-us/cover.jpg">
<span>Death Among Us</span>
</div>
</div>
</section>
<hr>
<p style="text-align: center;">
Website maintained by <a href="https://ewpratten.com">Evan Pratten</a>,
album artwork by <a href="https://www.artstation.com/salomedesjardins">Nathan Desjardins</a>
</p>
</main>
</body>
</html>

View File

@ -0,0 +1,2 @@
name = "retrylife-ca"
pages_build_output_dir = "."