Watermelon

This commit is contained in:
Melon 2023-07-16 18:18:55 +01:00
commit 468b529a41
Signed by: melon
GPG Key ID: 6C9D970C50D26A25
6 changed files with 96 additions and 0 deletions

17
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Build/release
on: push
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Archive
run: tar -czvf upload.tar.gz -C . *
- name: Release
run: 'curl -X POST -H "Authorization: Bearer ${{ secrets.DEPLOY }}" -F "upload=@upload.tar.gz" "https://sites.1f349.net/u?site=1f349.net&branch=${{ github.ref_name }}"'

Binary file not shown.

Binary file not shown.

38
assets/style.css Normal file
View File

@ -0,0 +1,38 @@
:root {
color-scheme: light dark;
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/assets/fonts/Roboto-Regular.woff2') format('woff2');
}
@font-face {
font-family: 'Fira Code';
font-style: normal;
font-weight: 400;
src: url('/assets/fonts/FiraCode-Regular.woff2') format('woff2');
}
body {
margin-top: 5em;
margin-left: 10%;
margin-right: 10%;
font-family: 'Roboto';
}
main {
width: 90%;
}
code pre {
font-family: 'Fira Code', monospace;
font-size: 90%;
}
a {
color: tomato;
}

23
hosting.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/assets/style.css" />
<title>Hosting | 🍉 - 1f349.net</title>
</head>
<body>
<main>
<h1>🍉 - 1f349.net Hosting</h1>
<p>We are currently hosting the following domains</p>
<ul>
<li><a href="https://mrmelon54.com">MrMelon54</a></li>
<li><a href="https://captainalm.com">Captain ALM</a></li>
<li><a href="https://remove.directory">removeDirectory</a></li>
<li><a href="https://kikicat123.ca">Kikicat</a></li>
<li><a href="https://discord-plays.xyz">Discord Plays</a></li>
<li><a href="https://redstonecompendium.com">Redstone Compendium</a></li>
</ul>
</main>
</body>
</html>

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/assets/style.css" />
<title>🍉 - 1f349.net</title>
</head>
<body>
<main>
<h1>🍉 - 1f349.net</h1>
<code><pre>U+1F349: WATERMELON
Miscellaneous Symbols and Pictographs, U+1F300 - U+1F5FF
Supplementary Multilingual Plane, U+10000 - U+1FFFF</pre></code>
<p>The internal domain for all Melon-hosted services.</p>
</main>
</body>
</html>