Compare commits
12 Commits
13b145a737
...
k8s/static
| Author | SHA1 | Date | |
|---|---|---|---|
| 40c454474a | |||
| ce31f2330e | |||
| 4f068ab9dd | |||
| a79e9f6b8b | |||
| 178477613a | |||
| ee65895c32 | |||
| b47a9e2d7e | |||
| 0695b32198 | |||
| 1449a55cd5 | |||
| decdaf714d | |||
| 24630ae0c3 | |||
| a72b6a5cee |
17
.gitea/workflows/create-image-volume.yml
Normal file
17
.gitea/workflows/create-image-volume.yml
Normal 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/
|
||||
@@ -98,7 +98,7 @@ Below you can see in the first pic that my avi's hand is on the hip but it's
|
||||
also perfectly lined up like that in real life.
|
||||
|
||||
{{< pic "/img/avi-progression-3yr/10.png" >}}
|
||||
{{< clip "/img/avi-progression-3yr/11.png" >}}
|
||||
{{< pic "/img/avi-progression-3yr/11.png" >}}
|
||||
|
||||
Couple of updates to the outfit and I can get super tight poses in VRChat
|
||||
that are completely 1 to 1 IRL to VR because of the fitment work.
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
baseURL: 'https://temper.tv'
|
||||
languageCode: 'en-us'
|
||||
title: Hiya, I'm temper
|
||||
title: Hi I'm temper
|
||||
|
||||
theme: 'temper'
|
||||
|
||||
enableEmoji: true
|
||||
|
||||
Params:
|
||||
description: Silly maker of things
|
||||
description: Wandering space and making stuff
|
||||
name: temper.tv
|
||||
twitch: https://twitch.tv/tempersama_
|
||||
gitlab: https://git.shockrah.xyz/shockrah
|
||||
github: https://github.com/tempersama
|
||||
mastodon: https://mastodon.social/@tempertv
|
||||
socials:
|
||||
- git: https://git.shockrah.xyz/shockrah
|
||||
# - github: https://github.com/tempersama
|
||||
- twitch: https://twitch.tv/tempersama_
|
||||
- mastodon: https://mastodon.social/@tempertv
|
||||
- bluesky: https://bsky.app/profile/tempersama.bsky.social
|
||||
- instagram: https://www.instagram.com/temper.sama/
|
||||
- twitter-x: https://x.com/temper_xyz
|
||||
|
||||
# Here we link the fun stuff ;)
|
||||
launchpad:
|
||||
|
||||
BIN
main-site/static/ded.png
LFS
Normal file
BIN
main-site/static/ded.png
LFS
Normal file
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
||||
<link rel="shortcut icon" type="image/png" href="{{ .Site.BaseURL }}/img/favicon.png">
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,12 +1,7 @@
|
||||
<a class="socials" href="{{.Site.Params.Gitlab}}">
|
||||
<i class="fab fa-gitlab"></i>
|
||||
</a>
|
||||
<a class="socials" href="{{.Site.Params.Twitch}}">
|
||||
<i class="fab fa-twitch"></i>
|
||||
</a>
|
||||
<a class="socials" href="{{.Site.Params.Mastodon}}">
|
||||
<i class="fab fa-mastodon"></i>
|
||||
</a>
|
||||
<a class="socials" href="{{.Site.Params.Github}}">
|
||||
<i class="fab fa-github"></i>
|
||||
{{ range .Site.Params.Socials }}
|
||||
{{ range $social, $link := . }}
|
||||
<a class="socials" href="{{ $link }}">
|
||||
<i class="bi bi-{{ $social }}"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
@@ -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;}
|
||||
|
||||
Reference in New Issue
Block a user