diff options
| author | Andrew Lee <[email protected]> | 2024-12-31 22:53:03 -0500 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2024-12-31 23:07:31 -0500 |
| commit | e179d5bdd30ec7d39771c9a54689f32d28b49f42 (patch) | |
| tree | 1d5a25a6f7e89adc62351cbd1d78f544cd8479f5 | |
| parent | 642c484022719a6428ce03d92a48aa0e59b049e5 (diff) | |
| download | shiftos-archive-website-e179d5bdd30ec7d39771c9a54689f32d28b49f42.tar.gz shiftos-archive-website-e179d5bdd30ec7d39771c9a54689f32d28b49f42.tar.bz2 shiftos-archive-website-e179d5bdd30ec7d39771c9a54689f32d28b49f42.zip | |
Now it should link to the proper repo, links clickable, fixed metadata
| -rwxr-xr-x | public/assets/downloads/0.0.x/shiftos-src.tar.gz | 3 | ||||
| -rw-r--r-- | src/layouts/Layout.astro | 3 | ||||
| -rw-r--r-- | src/pages/downloads.md | 11 | ||||
| -rw-r--r-- | src/pages/history.md | 6 | ||||
| -rw-r--r-- | src/pages/index.astro | 2 | ||||
| -rw-r--r-- | src/styles/style.css | 14 |
6 files changed, 20 insertions, 19 deletions
diff --git a/public/assets/downloads/0.0.x/shiftos-src.tar.gz b/public/assets/downloads/0.0.x/shiftos-src.tar.gz deleted file mode 100755 index 86d92b0..0000000 --- a/public/assets/downloads/0.0.x/shiftos-src.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9f805bd6465af36a7aba2a471923ac448febffbb5c0f22ba4443329743756d2e -size 72981515 diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e9a4622..ff32251 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -25,6 +25,9 @@ import '../styles/style.css'; <meta property="og:description" content={description} /> <meta property="og:image" content="https://shiftos.alee14.me/shiftos.png" /> <meta property="og:type" content="website" /> + + <meta name="theme-color" content="#FFFFFF"/> + <meta name="generator" content={Astro.generator} /> <title>{title}</title> </head> diff --git a/src/pages/downloads.md b/src/pages/downloads.md index 2aecd01..bb7f105 100644 --- a/src/pages/downloads.md +++ b/src/pages/downloads.md @@ -1,8 +1,6 @@ --- -title: > - ShiftOS: Downloads -description: > - Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary files. +title: "ShiftOS: Downloads" +description: Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary files. layout: ../layouts/Page.astro --- @@ -15,11 +13,14 @@ Download ShiftOS here! This contains the ShiftOS source code and ShiftOS binary If you have files for ShiftOS, feel free to make a [pull request](https://github.com/Alee14/shiftos-website)! +# ShiftOS Source Code +All ShiftOS source code from 0.0.x, Next, C#, 1.x, and Rewind are located at https://git.alee14.me/shiftos-archive. + # ShiftOS 0.0.x NOTE: From ShiftOS 0.0.4.1 to 0.0.6.2, it used to send user's information to the ShiftOS email. As of 2020, this no longer works. -- [ShiftOS Source Code](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-src.tar.gz) +- [ShiftOS Original Source Code](https://git.alee14.me/shiftos-archive/ShiftOS) - [ShiftOS 0.0.8 Skins](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-skins.tar.gz) - [ShiftOS Mod Development Package](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos-mod.tar.gz) - [ShiftOS 0.0.4.1](https://github.com/Alee14/shiftos-website/raw/master/public/assets/downloads/0.0.x/shiftos%200.0.4.1%20(run%20as%20admin!).exe) diff --git a/src/pages/history.md b/src/pages/history.md index a3e2130..fdd06dd 100644 --- a/src/pages/history.md +++ b/src/pages/history.md @@ -1,8 +1,6 @@ --- -title: > - ShiftOS: History/Origins -description: > - ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on Arch Linux. He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. +title: "ShiftOS: History/Origins" +description: ShiftOS started back in November 2013 when Philip Adams wanted to make a game based on Arch Linux. He originally wanted ShiftOS to be a Linux distro based on Arch Linux but then gave up on that idea due to it not being possible, so he started his own VB.NET program called ShiftOS. layout: ../layouts/Page.astro --- diff --git a/src/pages/index.astro b/src/pages/index.astro index e4ac5ef..c544a55 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -6,7 +6,7 @@ import Layout from '../layouts/Layout.astro'; <div class="center"> <img src="/assets/images/ShiftOS 2017 Logo.png" alt="ShiftOS Logo" class="logo"> <h1>ShiftOS: The Archive</h1> - <b><a href="history">History/Origins</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a> | <a href="https://git.alee14.me/shiftos-archive">Source Code</a> </b> + <b><a href="history">History/Origins</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a></b> </div> <footer> <p><b>© Copyright 2013-2025 ShiftOS. Game originally made by Philip Adams.<br/>Website made by Andrew Lee. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p> diff --git a/src/styles/style.css b/src/styles/style.css index 98acff7..2f5d005 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -15,19 +15,21 @@ body { text-align: center; } -a:link { +a { color: #00e600; - background-color: transparent; text-decoration: none; font-size: 20px; } -a:visited { - color: gray; - background-color: transparent; - text-decoration: none; +a:hover { + color: #00ff00; +} + +a:active { + color: #009400; } + p { font-size: 20px; } |
