Compare commits

..

5 Commits

Author SHA1 Message Date
40c454474a More stuff for creating image volume
All checks were successful
Build Static Site Content for Image Volume / build-site-content (push) Successful in 14s
2026-01-30 19:13:30 -08:00
ce31f2330e Testing workflow
Some checks failed
Build Static Site Content for Image Volume / build-site-content (push) Failing after 2m44s
2026-01-30 14:59:06 -08:00
4f068ab9dd Merge branch 'master' of ssh://git.shockrah.xyz:2222/shockrah/temper-tv
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 22s
2026-01-27 15:08:09 -08:00
a79e9f6b8b home button class attachment 2026-01-27 14:47:25 -08:00
178477613a Adding a simple border to the home button 2026-01-27 14:47:11 -08:00
4 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
name: Build Static Site Content for Image Volume
on:
push:
branches:
- k8s/static-deployment
jobs:
build-site-content:
runs-on: ubuntu-latest
container:
image: shockrah/hugo
steps:
- run: git init
- run: git remote add origin https://git.shockrah.xyz/shockrah/temper-tv.git
- run: git pull origin master
- name: Figure wtf is in here
run: ls -laRh main-site/

View File

@@ -1,5 +1,5 @@
<nav class="navbar sticky-top">
<a class="navbar-brand" href="/">
<a class="navbar-brand home-button" href="/">
<img src="/img/favicon.png" width="30" height="30" alt="main logo">
Temper.tv
</a>

View File

@@ -49,6 +49,15 @@ blockquote {
-o-animation: fadeIn 3s;
-ms-animation: fadeIn 3s;
}
.home-button {
padding-left: 1em;
background-color: #212121;
border-style: solid;
border-width: 3px;
border-radius: 0.5em;
border-color: darkorange;
padding-right: 1em;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}