diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-12-17 22:31:57 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-12-17 22:31:57 -0500 |
| commit | 44501448a2295166a61c4efcfc5b670879092bbf (patch) | |
| tree | 4abe23fe14a88c0438de69085a63f5a33bfe1d4c | |
| parent | ac9db86cd85387970cf5e3e3518713a6016128bc (diff) | |
| download | personal-website-44501448a2295166a61c4efcfc5b670879092bbf.tar.gz personal-website-44501448a2295166a61c4efcfc5b670879092bbf.tar.bz2 personal-website-44501448a2295166a61c4efcfc5b670879092bbf.zip | |
Added downloads page; Uploaded OSFT Software Archive
| -rw-r--r-- | locales/en.json | 8 | ||||
| -rw-r--r-- | pages/downloads/index.vue | 46 | ||||
| -rwxr-xr-x | static/uploads/OSFT-Software-Archive.tar.gz | bin | 0 -> 75779566 bytes | |||
| -rwxr-xr-x | static/uploads/OSFT-Software-Archive.tar.gz.md5 | 1 |
4 files changed, 55 insertions, 0 deletions
diff --git a/locales/en.json b/locales/en.json index 3681a70..d6da3df 100644 --- a/locales/en.json +++ b/locales/en.json @@ -25,6 +25,12 @@ "AleePCPartsMotherboard": "Motherboard", "AleePCPartsCase": "Case", "AleePCPartsPowerSupply": "Power Supply", + "SoftwareInformationText": "Software Information", + "OperatingSystemText": "Operating System/Linux Distro:", + "DesktopEnvironmentText": "Desktop Environment:", + "WindowManagerText": "Window Manager:", + "DockText": "Dock:", + "IconPackText": "Icon Pack:", "CreditsTitle": "Credits", "CreditsGPLText": "Website is licensed under", "CreditsContent1": "Created using", @@ -47,6 +53,8 @@ "VideosButton": "View more videos here", "AleeLogoText": "Alee Logo", "AleeLogoSubtitle": "Where you see the history of my logos that I made or a friend made.", + "DownloadsText": "Downloads", + "DownloadsSubtitle": "Where you download stuff I uploaded here.", "Footer": "Footer", "FooterCopyright": "© Copyright 2018-2020 Andrew Lee. All rights reserved." }
\ No newline at end of file diff --git a/pages/downloads/index.vue b/pages/downloads/index.vue new file mode 100644 index 0000000..4070668 --- /dev/null +++ b/pages/downloads/index.vue @@ -0,0 +1,46 @@ +<template> + <div> + <header id="showcase"> + <h1 class="display-3 animate__animated animate__fadeIn">{{ $t('DownloadsText') }}</h1> + <h1 class="animate__animated animate__fadeIn">{{ $t('DownloadsSubtitle') }}</h1> + </header> + <v-container> + <v-row> + <v-col cols="12"> + <v-card class="green darken-4"> + <v-card-title>Philip Adams Software Archive</v-card-title> + <v-card-text>This is the ultimate software collection of Philip Adams' software. (OSFirstTimer, 12padams, AstralPhaser, ShiftOS).<br>These software require .NET Framework 3.5, 4.0 and/or 4.5 to function.<br>Warning some of the software in this pack has a jumpscare, and if you have epilepsy please be cautious with this pack.<br>Also be sure to disable the antivirus if you want to try out Mitosis.</v-card-text> + <v-card-actions> + <v-btn text normal href="/uploads/OSFT-Software-Archive.tar.gz">Download</v-btn> + <v-btn text normal href="/uploads/OSFT-Software-Archive.tar.gz.md5">Download MD5</v-btn> + </v-card-actions> + </v-card> + </v-col> + </v-row> + </v-container> + </div> +</template> + +<script> +export default { + name: 'index', + head: { + title: 'Downloads' + } +} +</script> + +<style scoped> +#showcase { + background-image:url("../../assets/img/landing_page.png"); + background-size: cover; + background-position: center; + height: 30vh; + display: flex; + text-shadow: 0px 0px 10px #000000; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 0 20px; +} +</style> diff --git a/static/uploads/OSFT-Software-Archive.tar.gz b/static/uploads/OSFT-Software-Archive.tar.gz Binary files differnew file mode 100755 index 0000000..f2fc5b9 --- /dev/null +++ b/static/uploads/OSFT-Software-Archive.tar.gz diff --git a/static/uploads/OSFT-Software-Archive.tar.gz.md5 b/static/uploads/OSFT-Software-Archive.tar.gz.md5 new file mode 100755 index 0000000..9d19db3 --- /dev/null +++ b/static/uploads/OSFT-Software-Archive.tar.gz.md5 @@ -0,0 +1 @@ +8cda7ef8b1867eaea9ebdb5429af61eb OSFT-Software-Archive.tar.gz |
