9 Commits
1.3.2 ... 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
6 changed files with 42 additions and 9 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

@@ -137,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?\"",

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 .)"