Initial stuffing
@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
||||
<title>Desu, Ltd.</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
||||
<div class="content">
|
||||
<div class="section">
|
||||
<h1>Changeme</h1>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,10 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# post-deploy.sh
|
||||
# Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
|
||||
#
|
||||
# Distributed under terms of the MIT license.
|
||||
#
|
||||
|
||||
ssh -t salt@www.9iron.club sudo git -C /var/www/www pull
|
||||
|
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 676 KiB |
After Width: | Height: | Size: 916 KiB |
After Width: | Height: | Size: 425 KiB |
After Width: | Height: | Size: 932 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 685 KiB |
After Width: | Height: | Size: 911 KiB |
After Width: | Height: | Size: 260 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 374 KiB |
After Width: | Height: | Size: 431 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 448 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 379 KiB |
After Width: | Height: | Size: 470 KiB |
After Width: | Height: | Size: 743 KiB |
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
||||
<link href="/styles/buttons.css" type="text/css" rel="stylesheet" />
|
||||
<!-- These are just to make the big buttons look nice. Feel free to block -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
|
||||
<title>Desu, Ltd.</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
||||
<div class="content">
|
||||
<div class="iconbuttoncontainer">
|
||||
<a href="https://desu.ltd" class="iconbutton">
|
||||
<h1>desu</h1>
|
||||
<p>You are here</p>
|
||||
</a>
|
||||
<a href="https://9iron.club" class="iconbutton">
|
||||
<h1>9iron</h1>
|
||||
<p>The vidya vault and the main domain</p>
|
||||
</a>
|
||||
<a href="https://cowfee.moe" class="iconbutton">
|
||||
<h1>cowfee</h1>
|
||||
<p>Decentralized shitposting</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,5 @@
|
||||
<!--
|
||||
<div class="footer">
|
||||
<p>desu</p>
|
||||
</div>
|
||||
-->
|
@ -0,0 +1,7 @@
|
||||
<div class="header logocontainer">
|
||||
<img class="logo" src="<?php
|
||||
$files = glob($_SERVER['DOCUMENT_ROOT'].'/images/logo/*');
|
||||
$message = $files[array_rand($files, 1)];
|
||||
echo "$message";
|
||||
?>" alt="logo" width=768 height=768 />
|
||||
</div>
|
@ -0,0 +1,21 @@
|
||||
<!-- Meta -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
|
||||
<link href="/styles/styles.css" type="text/css" rel="stylesheet" />
|
||||
<link href="/favicon.ico" rel="shortcut icon" />
|
||||
<link rel="alternate" href="/feed" title="9iron RSS Feed" type="application/rss+xml" />
|
||||
<!-- No FOUC -->
|
||||
<style type="text/css">
|
||||
.no-fouc {display: none;}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
document.documentElement.classname = 'no-fouc';
|
||||
window.addEventListener("load", function(event) {
|
||||
// No flash of unstyled content
|
||||
nf = document.getElementsByClassName('no-fouc');
|
||||
for (i = 0, len = nf.length; i < len; i++) {
|
||||
nf[i].removeClass('no-fouc');
|
||||
}
|
||||
});
|
||||
</script>
|
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* buttons.css
|
||||
* Copyright (C) 2020 Vintage Salt
|
||||
*
|
||||
* Distributed under terms of the MIT license.
|
||||
*/
|
||||
|
||||
/* BIG ICON BUTTONS
|
||||
* Used on the index for services */
|
||||
div.iconbuttoncontainer {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
grid-template-rows: auto auto auto auto;
|
||||
}
|
||||
a.iconbutton {
|
||||
background: var(--background-dark);
|
||||
border: 4px solid var(--background-dark);
|
||||
display: block;
|
||||
margin: 0.5em;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
a.iconbutton:hover {
|
||||
background: var(--link-hover);
|
||||
color: var(--background);
|
||||
}
|
||||
a.iconbutton i {
|
||||
font-size: 400%
|
||||
}
|
||||
|
||||
/* MOBILE */
|
||||
@media only screen and (max-width: 600px) {
|
||||
div.iconbuttoncontainer {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,167 @@
|
||||
/*
|
||||
* styles.css
|
||||
* Copyright (C) 2020 Vintage Salt
|
||||
*
|
||||
* Distributed under terms of the MIT license.
|
||||
*/
|
||||
|
||||
/* GLOBALS */
|
||||
|
||||
:root {
|
||||
--background: #3c3341;
|
||||
--background-dark: #28232c;
|
||||
--link: #ba844d;
|
||||
--link-hover: #ffb940;
|
||||
--text: #f7f4db;
|
||||
}
|
||||
html {
|
||||
background: var(--background-dark);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--text);
|
||||
font-family: "Roboto", sans-serif;
|
||||
margin: 4em auto;
|
||||
max-width: 40em;
|
||||
padding: 4em;
|
||||
}
|
||||
|
||||
/* TYPES */
|
||||
/* a */
|
||||
a {
|
||||
color: var(--link);
|
||||
text-decoration: none;
|
||||
transition: .08s ease-in;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--link-hover);
|
||||
}
|
||||
/* code */
|
||||
code {
|
||||
background: var(--text);
|
||||
border-radius: 3px;
|
||||
color: var(--background-dark);
|
||||
display: inline-block;
|
||||
font-size: 11pt;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
dl {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
}
|
||||
dl dt {
|
||||
font-weight: bold;
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
dl dd {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* CUSTOM DIVS AND SPANS */
|
||||
a.quickbutton {
|
||||
background: var(--background);
|
||||
border-radius: 8px;
|
||||
display: block;
|
||||
font-size: 150%;
|
||||
margin: 0.5em 0;
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
a.quickbutton:hover {
|
||||
background: var(--link-hover);
|
||||
color: var(--background-dark);
|
||||
}
|
||||
div.break {
|
||||
width: 4em;
|
||||
margin: 2em auto;
|
||||
border-bottom: 3px double var(--text);
|
||||
}
|
||||
img.bigimg {
|
||||
border-radius: 8px;
|
||||
display: block;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
/* HIERARCHICAL CLASSES */
|
||||
/* HEADER */
|
||||
.header {
|
||||
background: var(--background);
|
||||
}
|
||||
.logocontainer {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 1em 0;
|
||||
}
|
||||
.logo {
|
||||
border-radius: 50%;
|
||||
height: 128px;
|
||||
vertical-align: middle;
|
||||
margin: 0 1em;
|
||||
max-width: 128px;
|
||||
}
|
||||
.header h1 {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
}
|
||||
.header p {
|
||||
margin: 0;
|
||||
}
|
||||
.header nav ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
.header nav ul li {
|
||||
display: inline-block;
|
||||
padding: 0.8em;
|
||||
}
|
||||
.header nav ul li:hover {
|
||||
background: var(--link-hover);
|
||||
color: var(--background-dark);
|
||||
transition: .08s ease-in;
|
||||
}
|
||||
|
||||
/* CONTENT */
|
||||
.content {
|
||||
background: var(--background);
|
||||
padding: 2em 0;
|
||||
}
|
||||
.subcontainer {
|
||||
background: var(--background);
|
||||
border-radius: 8px;
|
||||
margin: 1em 0;
|
||||
padding: 1em;
|
||||
}
|
||||
.toc {
|
||||
background: var(--background);
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
margin: 0 1em 1em 1em;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* FOOTER */
|
||||
.footer {
|
||||
background: var(--background);
|
||||
font-size: 11px;
|
||||
line-height: 1.3;
|
||||
padding: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
.footer p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* MOBILE */
|
||||
@media only screen and (max-width: 600px) {
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
}
|
||||
.nomobile {
|
||||
display: none;
|
||||
}
|
||||
}
|