commit 8d52455044112ebd4ce0dc85af5d45b6cad1d198 Author: Apache Date: Thu Jul 18 16:50:12 2024 -0500 Init diff --git a/.forgejo/workflows/neocities.yml b/.forgejo/workflows/neocities.yml new file mode 100644 index 0000000..a11a73e --- /dev/null +++ b/.forgejo/workflows/neocities.yml @@ -0,0 +1,28 @@ +# Author: Bret Comnes +# License: MIT + +name: Deploy to neocities + +# only run on changes to main +on: + push: + branches: + - main + +concurrency: # prevent concurrent deploys doing strange things + group: deploy-to-neocities + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + # When the dist_dir is ready, deploy it to neocities + - name: Deploy to neocities + uses: https://github.com/bcomnes/deploy-to-neocities@v1 + with: + api_token: ${{ secrets.NEOCITIES_API_KEY }} + cleanup: true + dist_dir: public \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a18e55c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Apache + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/public/basiic.ttf b/public/basiic.ttf new file mode 100644 index 0000000..b0e6d09 Binary files /dev/null and b/public/basiic.ttf differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..df0ae67 --- /dev/null +++ b/public/index.html @@ -0,0 +1,12 @@ + + + + + + Apache's neocities home! :3 + + + +

Hi! I'm under construction :33

+ + diff --git a/public/not_found.html b/public/not_found.html new file mode 100644 index 0000000..5c94fe2 --- /dev/null +++ b/public/not_found.html @@ -0,0 +1,13 @@ + + + + + + Not Found + + + +

Page Not Found

+

The requested page was not found.

+ + diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..c950d8f --- /dev/null +++ b/public/style.css @@ -0,0 +1,11 @@ +@font-face { + font-family: basiic; + src: url("/basiic.ttf"); +} + + +body { + background-color: rgb(84, 0, 133); + color: white; + font-family: basiic; +}