need a repo
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
FROM node:alpine
|
||||
WORKDIR /
|
||||
COPY . .
|
||||
RUN npm install --global serve
|
||||
CMD ["serve", "/app"]
|
BIN
app/.DS_Store
vendored
Normal file
5
app/.htaccess
Normal file
|
@ -0,0 +1,5 @@
|
|||
#remove html file extension-e.g. https://example.com/file.html will become https://example.com/file
|
||||
RewriteEngine on
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME}\.html -f
|
||||
RewriteRule ^(.*)$ $1.html [NC,L]
|
0
app/README.md
Normal file
BIN
app/android-icon-144x144.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
app/android-icon-192x192.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
app/android-icon-36x36.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
app/android-icon-48x48.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
app/android-icon-72x72.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
app/android-icon-96x96.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/apple-icon-114x114.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/apple-icon-120x120.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/apple-icon-144x144.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
app/apple-icon-152x152.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
app/apple-icon-180x180.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
app/apple-icon-57x57.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
app/apple-icon-60x60.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
app/apple-icon-72x72.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
app/apple-icon-76x76.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
app/apple-icon-precomposed.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
app/apple-icon.png
Normal file
After Width: | Height: | Size: 34 KiB |
2
app/browserconfig.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
|
93
app/contact.html
Normal file
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Arte Et Labore</title>
|
||||
|
||||
<style>
|
||||
@font-face { font-family: Sinclair; src: url('sinclair-logo.ttf'); }
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background-color: #f3f3f3;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.text {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
.title, .subtitle {
|
||||
font-family: "Sinclair", serif;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.5em;
|
||||
margin-top: 20px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.note {
|
||||
font-family: Arial;
|
||||
font-size: 0.5em;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #b8bafc;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="text">
|
||||
<div class="title">Contact Us</div>
|
||||
<div class="note">Arte Et Labore is available for commissions. <br /> <br /> Please contact us at <a href="mailto:ael@artelabore.online">ael@artelabore.online</a> and we will get back to you as soon as possible. <br /> <br /> <a href="http://artelabore.online">Back to main page</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
20
app/countdown/css/main.css
Normal file
|
@ -0,0 +1,20 @@
|
|||
*, :root, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color:#8487eb;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
object {
|
||||
outline: none;
|
||||
width: 100%;
|
||||
}
|
||||
object:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.clock-container{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
}
|
BIN
app/countdown/fsh/f-count.swf
Normal file
22
app/countdown/index.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Flash Player Death Countdown</title>
|
||||
<link rel="stylesheet" href="css/main.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="clock-container">
|
||||
<OBJECT classid="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="f-count">
|
||||
<PARAM NAME=movie VALUE="fsh/f-count.swf">
|
||||
<PARAM NAME=quality VALUE=high>
|
||||
<PARAM NAME=bgcolor VALUE=#8487eb>
|
||||
<EMBED src="fsh/f-count.swf" quality=high bgcolor=#8487eb WIDTH="100%" HEIGHT="100%" NAME="f-count" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
|
||||
</EMBED>
|
||||
</OBJECT>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
8
app/ecosystem.config.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
module.exports = {
|
||||
script: "serve",
|
||||
env: {
|
||||
PM2_SERVE_PATH: '.',
|
||||
PM2_SERVE_PORT: 8080
|
||||
}
|
||||
}
|
||||
|
BIN
app/favicon-16x16.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
app/favicon-32x32.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
app/favicon-96x96.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
90
app/index.html
Normal file
|
@ -0,0 +1,90 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Arte Et Labore</title>
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<style>
|
||||
@font-face { font-family: Sinclair; src: url('sinclair-logo.ttf'); }
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background-color: #f3f3f3;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.text {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
.title, .subtitle {
|
||||
font-family: "Sinclair", serif;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.construction {
|
||||
font-family: Arial;
|
||||
font-size: 0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #b8bafc;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="text">
|
||||
<div class="title">Arte et Labore</div>
|
||||
<div class="subtitle">Design Group Est. 2019</div> <br /> <br />
|
||||
<div class="construction">blurple@artelabore.online • <a href="roster/">AEL Roster</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
41
app/manifest.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "App",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/android-icon-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image\/png",
|
||||
"density": "0.75"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image\/png",
|
||||
"density": "1.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image\/png",
|
||||
"density": "1.5"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image\/png",
|
||||
"density": "2.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image\/png",
|
||||
"density": "3.0"
|
||||
},
|
||||
{
|
||||
"src": "\/android-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png",
|
||||
"density": "4.0"
|
||||
}
|
||||
]
|
||||
}
|
BIN
app/ms-icon-144x144.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
app/ms-icon-150x150.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
app/ms-icon-310x310.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
app/ms-icon-70x70.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
94
app/roster/index.html
Normal file
|
@ -0,0 +1,94 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Arte Et Labore</title>
|
||||
|
||||
<style>
|
||||
@font-face { font-family: Sinclair; src: url('sinclair-logo.ttf'); }
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background-color: #f3f3f3;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.text {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
.title, .subtitle {
|
||||
font-family: "Sinclair", serif;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.5em;
|
||||
margin-top: 20px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.note {
|
||||
font-family: Arial;
|
||||
font-size: 0.5em;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8487eb;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #b8bafc;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="text">
|
||||
<div class="title">Arte Et Labore Roster</div> <br />
|
||||
<div class="subtitle"><a href="http://twitter.com/markrobinsonrlm" target="_BLANK">Mark Robinson</a> <br /> <a href="http://twitter.com/arixant" target="_BLANK">arixant</a> <br /> <a href="http://twitter.com/4nt1r34l" target="_BLANK">antireal</a> <br /> <a href="http://twitter.com/om_neb" target="_BLANK">om_neb</a> <br /> <a href="http://twitter.com/lucidarian" target="_BLANK">Lucidarian</a> <br /> <a href="http://twitter.com/cercueii" target="_BLANK">cercueii</a> <br /> <a href="http://twitter.com/xshagia" target="_BLANK">shagia</a> <br /> <a href="http://twitter.com/rickie" target="_BLANK">Rickie Sherman</a> <br /> <a href="http://twitter.com/physicallydv" target="_BLANK">DV-I</a> <br /> <a href="http://twitter.com/rob_nsn" target="_BLANK">Robert Robinson</a> <br /> <a href="http://twitter.com/froyotam" target="_BLANK">Froyo Tam</a> <br /> <a href="http://twitter.com/cute_hospital" target="_BLANK">cute_hospital</a> <br /> <a href="http://twitter.com/articution" target="_BLANK">articution</a> <br /> <a href="http://twitter.com/poiniespoin" target="_BLANK">Emily Rose</a></div> <br />
|
||||
<div class="note">Arte Et Labore is a design group established in 2019 to promote discussion, collaboration, and passion in design. <br /> <br /> Please note that not all members listed are contributing at all times. <br /> <br /> <a href="http://artelabore.online">Back to main page</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|