Remove old data, update drone.yml

pull/3/head
Benjamin Bädorf 2022-10-02 22:03:44 +02:00
parent 7cc662a83e
commit 754be6edaa
No known key found for this signature in database
GPG Key ID: 4406E80E13CD656C
14 changed files with 44 additions and 88 deletions

View File

@ -1,13 +1,22 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
when:
branch:
- main
image: denoland/deno:alpine
commands:
- deno run -A https://deno.land/x/lume@v1.6.4/install.ts
- deno task build
- name: publish
when:
branch:
- main
image: appleboy/drone-scp
repo: pub-solar/pub.solar
settings:
host: pub.solar
port: 2020
@ -16,12 +25,6 @@ steps:
key:
from_secret: ps_ssh_key
source:
- "!.envrc"
- "!.git"
- "!.gitignore"
- "!.drone.yml"
- "!LICENSE.md"
- "!shell.nix"
- ./*
- ./_site/*
target: /srv/pub.solar/
overwrite: true

View File

@ -1,13 +0,0 @@
name: Alexander von Dombois
pronouns: he/him
role: Product Design
contactOptions:
- name: mail
value: avd@miom.space
link: 'mailto:avd@miom.space'
- name: insta
value: '@alexandervondombois'
- name: web
value: alexandervondombois.de
link: 'https://alexandervondombois.de'

View File

@ -1,17 +0,0 @@
name: Benjamin Bädorf
pronouns: he/him
role: Software Engineer
contactOptions:
- name: mail
value: byb@miom.space
link: 'mailto:byb@miom.space'
- name: git
value: '@b12f'
link: 'git.b12f.io/b12f'
- name: gpg
value: 4332 E0D0 2B21 4D31 376C 366E 4406 E80E 13CD 656C
- name: matrix
value: '@b12f:pub.solar'
- name: web
value: benjaminbaedorf.eu
link: 'https://benjaminbaedorf.eu'

View File

@ -1,7 +0,0 @@
name: Constantin Pannwitz
pronouns: he/him
role: Product Designer
contactOptions:
- name: mail
value: cmp@miom.space
link: 'mailto:cmp@miom.space'

View File

@ -1,7 +0,0 @@
name: Hanna Deuss
pronouns: she/her
role: Visual Artist
contactOptions:
- name: mail
value: hmd@miom.space
link: 'mailto:hmd@miom.space'

View File

@ -1,7 +0,0 @@
name: Helena Geisler
pronouns: she/her
role: Artist, Writer, Scientist
contactOptions:
- name: mail
value: hsg@miom.space
link: 'mailto:hsg@miom.space'

View File

@ -1,12 +0,0 @@
name: Jhonas Wernery
pronouns: he/him
role: System Engineer
contactOptions:
- name: mail
value: jfw@miom.space
link: 'mailto:jfw@miom.space'
- name: git
value: '@teutat3s'
link: 'https://git.b12f.io/teutat3s'
- name: matrix
value: '@teutat3s:pub.solar'

View File

@ -1,7 +0,0 @@
name: Julian Gerullis
pronouns: he/him
role: Product Designer
contactOptions:
- name: mail
value: jjg@miom.space
link: 'mailto:jjg@miom.space'

View File

@ -1,5 +0,0 @@
- 'an off'
- 'a studio'
- 'an art'
- 'a tech'
- 'a people'

1
_includes/Homelink.tsx Normal file
View File

@ -0,0 +1 @@
export default () => <a className="ps-homelink" href="/">pub.solar/</a>;

View File

@ -1,6 +1,7 @@
import { md } from '../../filters.ts';
import Head from '../Head.tsx';
import Background from '../Background.tsx';
import Homelink from '../Homelink.tsx';
import HakkenDates from '../HakkenDates.tsx';
export default ({
@ -26,6 +27,8 @@ export default ({
<Background />
<Homelink />
<main className="ps-main--page ps-page">
<section
lang="en"

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
lume
cp -r ./fonts ./_site/
rm -rf ./_site/README

View File

@ -8,10 +8,13 @@ links:
title: PubSolarOS
- href: https://chat.pub.solar/
title: Matrix
openInNewTab: true
- href: https://mastodon.pub.solar/
title: Mastodon
openInNewTab: true
- href: https://cloud.pub.solar/
title: Nextcloud
openInNewTab: true
- href: ./hakken
title: hakken.irl
- href: ./about

View File

@ -297,3 +297,29 @@ html {
transform: rotate(360deg);
}
}
.ps-homelink {
position: fixed;
top: 0;
left: 0;
z-index: 100;
pointer-events: all;
color: var(--foreground);
background: white;
text-decoration: none;
text-align: center;
font-weight: 900;
font-size: 2rem;
line-height: 1em;
padding: 0.4vw;
text-shadow: 0.15vw 0px 0px white;
transition: text-shadow 0.1s ease;
border: 12px solid black;
border-top: 0;
border-left: 0;
}
.ps-homelink:hover {
text-shadow: 0.3vw 0px 0px var(--accent);
}