11 Commits
1.3.0 ... 1.4.1

Author SHA1 Message Date
73366663ab Add background color to html
This should hopefully fix white flashes
2022-01-26 00:54:09 -06:00
42480f0c09 Add test script
Some checks failed
Git Desu/9iron/pipeline/head There was a failure building this commit
2022-01-26 00:49:11 -06:00
501b5715b0 Dark mode? Dark mode
All checks were successful
Git Desu/9iron/pipeline/head This commit looks good
2022-01-26 00:41:55 -06:00
4d3ac51569 Fix typo 2022-01-26 00:35:39 -06:00
a4cde53a63 Switch to a Docker agent (hopefully)
Some checks failed
Git Desu/9iron/pipeline/head There was a failure building this commit
2022-01-23 08:46:34 -06:00
cdd06e78d0 Fix syntax error in Jenkinsfile
All checks were successful
Git Desu/9iron/pipeline/head This commit looks good
2022-01-22 15:28:24 -06:00
5229ecd6b6 Merge gitlab.com:rehashedsalt/9iron
Some checks failed
Git Desu/9iron/pipeline/head There was a failure building this commit
2022-01-22 15:25:31 -06:00
7e45b51a8a Add test Jenkinsfile 2022-01-22 15:25:03 -06:00
5a3efb8d99 Add a quote 2022-01-16 21:07:39 -06:00
6041244174 Goddammit I missed a comma 2022-01-01 22:30:16 -06:00
ff4412cf19 Add a bunch of new quotes 2022-01-01 13:01:00 -06:00
6 changed files with 57 additions and 11 deletions

View File

@@ -4,3 +4,4 @@
deploy.sh
README.md
test.sh
Jenkinsfile

19
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,19 @@
pipeline {
agent {
docker {
image 'morlay/buildx:607a2ce'
}
}
stages {
stage('Build') {
steps {
echo 'BUILD'
}
}
stage('Build Tag') {
steps {
echo 'BUILD TAG'
}
}
}
}

View File

@@ -32,7 +32,7 @@
<a href="/movienight" class="iconbutton">
<i class="fa fa-film"></i>
<h1>Movie Night</h1>
<p>Take a set, pop some popcorn, and watch a movie with da bois. Anybody can host if they want</p>
<p>Take a seat, pop some popcorn, and watch a movie with da bois. Anybody can host if they want</p>
</a>
</div>
</div>

View File

@@ -52,6 +52,7 @@
"Better change tactics",
"honk.wmv",
"bomk",
"Degenerate",
"guys literally only want one thing",
"Dame da ne~!",
"You can't look up with your tongue out",
@@ -116,6 +117,12 @@
// - Me
"\"I fuck dirt\"",
// - Me
"\"Glorious Soviet manmeat\"",
// - Me
"\"Ah shit, soap! I'm getting hard!\"",
// - Me
"\"Tom Nook has whores in stock\"",
// - Me
"\"I suck a lot of dick, get over here\"",
// - Brett
"\"This was worth sucking dick\"",
@@ -130,6 +137,8 @@
// - Brett
"\"Let's get this cock onto a tray!\"",
// - Brett
"\"All she needs to do is step on me\"",
// - Brett
"\"This is Hell, they are all prostitutes.\"",
// - Jordyn
"\"Isn't an asshole like a brass instrument?\"",
@@ -140,8 +149,12 @@
// - Jacob
"\"Much edge\"",
// - Jacob
"\"Ranked sudoku\"",
// - Jacob
"\"Oh it's a bear\"",
// - Lea, moments before being mauled by a grizzly bear
"\"Double-bitched out of love~\"",
// - Lea
"\"I'm in danger!\"",
// - At least four of us, constantly shittalking
"\"He got cancer and became a Nazi\"",
@@ -164,12 +177,12 @@
// - Syd
"\"I'm gonna fart. I'm gonna-\"",
// - Tex of BPL, just before he farts medical into the next universe
"\"Double-bitched out of love~\"",
// - vampqu33n
"\"Fixing PHP is like coming home\"",
// - JE
"\"Now the Nazi party thinks I'm their little pogchamp\"",
// - Jacob, after I said he's my little pogchamp
"\"Fuck you, I had three ass surgeries!\"",
// - Jacob
"\"They're children you thirsty whores\"",
// - Sam
"\"Pichu is illegal\"",
@@ -182,6 +195,8 @@
// - Rachael
"\"Beans fuck\"",
// - Preston
"\"So that's 9/11\"",
// - Lena
"God dammit, Sam",
"God dammit, Jacob",
"God dammit",

View File

@@ -8,21 +8,22 @@
/* GLOBALS */
:root {
--background-bright: #fdfcfa;
--background: #ecebe9;
--background-bright: #323232;
--background: #2a2a2a;
--line: rgba(0,0,0,0.1);
--greenlink: #327117;
--greenlink-hover: #47b625;
--greenlink: #47b625;
--greenlink-hover: #82e24f;
--warning: #f7cf04;
--error: #d95757;
--link: #286a9d;
--link-hover: #3ea5f3;
--link: #5da9fb;
--link-hover: #81ccfb;
--shadow: 8px -5px rgba(0,0,0,0.1);
--text: #414040;
--text-code: #a7674e;
--text: #d9d9d9;
--text-code: #d48163;
}
html {
overflow-y: scroll;
background: var(--background);
}
body {
background: var(--background);

10
test.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /bin/sh
#
# test.sh
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
#
# Distributed under terms of the MIT license.
#
sudo docker run -p 8080:80 -it "$(sudo docker build -q .)"