Skip to content

Commit

Permalink
Website!@
Browse files Browse the repository at this point in the history
  • Loading branch information
khcrysalis committed Nov 26, 2023
0 parents commit c52b123
Show file tree
Hide file tree
Showing 14 changed files with 156 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Deploy Hugo site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

# Default to bash
defaults:
run:
shell: bash

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.120.2
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.DS_Store
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/risotto"]
path = themes/risotto
url = https://github.com/joeroe/risotto.git
Empty file added .hugo_build.lock
Empty file.
5 changes: 5 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
Binary file added content/._index.md.swp
Binary file not shown.
17 changes: 17 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ssalggnikool

I'm me, and thyself.

**BWAH**

![BWAH](images/bwah-small.png)

Brief overview of ME!
```
name samara
pronouns she/they
speaks in english
dev? probabbyl
wishes to be better
```
Check out full @ [about](/about)
6 changes: 6 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
menu = 'main'
title = 'about'
+++

nyaaaaaaaaa
27 changes: 27 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'ssalggnikool'
theme = 'risotto'
sectionPagesMenu = 'main'

[params.about]
title = 'samara or (Me)'
logo = 'images/bwah.png'

[[params.socialLinks]]
icon = 'fa-brands fa-github'
title = 'GitHub'
url = 'https://github.com/ssalggnikool'

[[params.socialLinks]]
icon = 'fa-brands fa-twitter'
title = 'Twitter'
url = 'https://twitter.com/ssaIggnikool'

[[params.socialLinks]]
icon = 'fa-solid fa-envelope'
title = 'Mail'
url = 'mailto:[email protected]'

[params.theme]
palette = 'samie'
18 changes: 18 additions & 0 deletions static/css/palettes/samie.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
:root {
--base00: #101010;
--base01: #252525;
--base02: #464646;
--base03: #525252;
--base04: #ababab;
--base05: #b9b9b9;
--base06: #e3e3e3;
--base07: #f7f7f7;
--base08: #7c7c7c;
--base09: #999999;
--base0A: #a0a0a0;
--base0B: #8e8e8e;
--base0C: #868686;
--base0D: #686868;
--base0E: #747474;
--base0F: #5e5e5e;
}
Binary file added static/images/bwah-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/bwah.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/shiggy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/risotto
Submodule risotto added at 434355

0 comments on commit c52b123

Please sign in to comment.