Compare commits

...

10 Commits

27 changed files with 158 additions and 67 deletions

View File

@ -1,46 +1,44 @@
image: shockrah/website:latest
stages:
- build
- deploy
############## ################## ##############
############## Build Site Content ##############
############## ################## ##############
build-content:
stage: build
image: shockrah/website:latest
only:
refs:
- master
script:
- cd main-site/ && hugo
artifacts:
expire_in: 1 week
paths:
- main-site/public/
############## ################## ##############
############## Deploy Site ##############
############## ################## ##############
deploy-to-s3:
stage: deploy
# Override entrypoint to avoid weird auto start shenanigans
image:
name: amazon/aws-cli:2.2.25
entrypoint: [""]
needs:
- build-content
before_script:
- bash ci/verify-aws-fields.sh
script:
# Upload the content to the bucket itself
- cd main-site/ && aws s3 cp public s3://temper.tv/ --recursive
# image: shockrah/website:latest
#
# stages:
# - build
# - deploy
#
#
# ############## ################## ##############
# ############## Build Site Content ##############
# ############## ################## ##############
#
#
# build-content:
# stage: build
# image: shockrah/website:latest
# only:
# refs:
# - master
# script:
# - cd main-site/ && hugo
# artifacts:
# expire_in: 1 week
# paths:
# - main-site/public/
#
#
#
# ############## ################ ##############
# ############## Build Site Image ##############
# ############## ################ ##############
#
# build-image:
# stage: deploy
# image: docker:stable
# services:
# - docker:dind
# only:
# refs:
# - master
# # Login to registery
# before_script:
# - docker login -u $DOCKER_USERNAME --password-stdin << $TOKEN
# script:
# - cd ./main-site/ && docker build . -t $

View File

@ -1,3 +1,10 @@
static/img/13-nov-2023/*.jpg
static/img/13-nov-2023/*.png
static/img/13-nov-2023/*.mp4
static/img/04-feb-2024/*jpg
static/img/04-feb-2024/*png
static/img/float/*png
static/img/float/*jpg
static/img/float/*mp4

View File

@ -0,0 +1,40 @@
---
title: 'Trinket Making'
description: from doom scrolling to doom sewing
date: 2024-07-26T17:24:35-07:00
thumbnail: /img/26-07-2024/qtpi.jpg
ContentThumbnail: true
article: true
---
> Quick one here :racing_car: i haven't been documenting anything recently
I've somehow found a new hobby of sewing and making random clothing items
As a result I've updated my rave hat with some glitter on the Snoiler Room
patch since it kept getting lost in the dark and now I'm making an IRL version
of my 3.7 model's jacket. More simple from a details perspective but still
something that will be pretty "busy" once it's completely done.
> *****Should mention the weird looking smudges on there are from the glue that i
more/less**
{{< pic "/img/26-07-2024/jacket-s1.jpg" >}}
> Here is the Snoiler Rooom patch that I _yassified_
Got glitter everywhere for this one
{{< pic "/img/26-07-2024/snoiler.jpg" >}}
> Finally a fun mini patch that I just really like :))))
{{< pic "/img/26-07-2024/qtpi.jpg" >}}

View File

@ -1 +1,26 @@
---
folders:
uk-sound-series-2024-02-17:
- 'Replay_2024-02-17_19-55-36.mkv'
- 'Replay_2024-02-17_19-57-46.mkv'
- 'Replay_2024-02-17_20-03-08.mkv'
- 'Replay_2024-02-17_20-11-46.mkv'
- 'Replay_2024-02-17_20-14-23.mkv'
- 'Replay_2024-02-17_20-19-32.mkv'
- 'Replay_2024-02-17_20-22-52.mkv'
- 'Replay_2024-02-17_20-29-42.mkv'
- 'Replay_2024-02-17_20-35-39.mkv'
- 'Replay_2024-02-17_20-40-47.mkv'
- 'Replay_2024-02-17_20-43-57.mkv'
- 'Replay_2024-02-17_20-50-06.mkv'
- 'Replay_2024-02-17_20-54-09.mkv'
- 'Replay_2024-02-17_20-58-13.mkv'
- 'Replay_2024-02-17_21-21-15.mkv'
- 'Replay_2024-02-17_21-35-05.mkv'
- 'Replay_2024-02-17_21-47-39.mkv'
- 'Replay_2024-02-17_21-53-41.mkv'
- 'Replay_2024-02-17_21-55-56.mkv'
- 'Replay_2024-02-17_21-59-18.mkv'
---
Just some files that I haphazardly link on this one page :))))

View File

@ -25,3 +25,6 @@ Params:
- name: Dev Blog
description: Dev stuff
uri: /dev
- name: Files
description: Links to files
uri: /files

View File

@ -0,0 +1 @@
dh=50e1589447a1aa9d7e94c6d582ab7d8ebc222aa0

View File

@ -7,32 +7,49 @@
<h5>/feed</h5>
{{ else if eq .Dir "dev/" }}
<h5>/dev</h5>
{{ else if eq .Dir "files/" }}
<h5>/files</h5>
{{ end }}
{{ end }}
<p>{{ .Content }}</p>
{{ $colors := slice "cyan" "yellow" "pink"}}
{{ $opts := len $colors }}
{{ if hasPrefix $path "files" }}
{{ range $folder, $files := .Params.folders }}
{{ $opt := mod (len $folder) (len $colors) }}
<div class="card" style="border-color: {{ index $colors $opt }}">
<h5 class="card-header postcard card-title">{{ $folder }}</h5>
{{ range $file := $files }}
<ul>
<a href={{ print "/files/" $folder "/" $file }}>{{ $file}}</a>
</ul>
{{ end }}
</div>
{{ end }}
{{ end }}
{{ range $i, $page := .Pages.ByDate.Reverse }}
{{ $opt := mod $i $opts }}
<div class="card" style="border-color: {{ index $colors $opt }}">
<a href="{{ anchorize .Page.Name }}">
<h5 class="card-header postcard card-title">{{ .Title }}</h5>
</a>
<div class="card-body postcard">
{{ if .Page.Params.Article }}
<p class="card-text">{{ .Description }}</p>
{{ else }}
<p class="card-text">{{ .Content }}</p>
{{ end }}
{{ if .Page.Params.Thumbnail }}
<a href="{{ .Params.Thumbnail }}">
<img class="card-img" src="{{ .Params.Thumbnail }}">
</a>
{{ end }}
{{ $opt := mod $i (len $colors) }}
<div class="card" style="border-color: {{ index $colors $opt }}">
<a href="{{ anchorize .Page.Name }}">
<h5 class="card-header postcard card-title">
{{ .Title }}
{{ emojify ":link:" }}
</h5>
</a>
<div class="card-body postcard">
{{ if .Page.Params.Article }}
<p class="card-text">{{ .Description }}</p>
{{ else }}
<p class="card-text">{{ .Content }}</p>
{{ end }}
{{ if .Page.Params.Thumbnail }}
<a href="{{ .Params.Thumbnail }}">
<img class="card-img" src="{{ .Params.Thumbnail }}">
</a>
{{ end }}
</div>
<div class="card-footer text-muted postcard">
{{ .Date | time.Format ":date_short" }} {{ .Date | time.Format ":time_long"}}
</div>
</div>
<div class="card-footer text-muted postcard">
{{ .Date | time.Format ":date_short" }} {{ .Date | time.Format ":time_long"}}
</div>
</div>
{{ end }}
{{ end }}