pre release

This commit is contained in:
q 2024-11-12 16:45:42 -05:00
parent 31022358ed
commit 79de710800
40 changed files with 848 additions and 20 deletions

Binary file not shown.

View file

@ -4,6 +4,7 @@ services:
network: host network: host
dockerfile: Dockerfile dockerfile: Dockerfile
context: . context: .
container_name: werc
ports: ports:
- 80:80 - 80:80
environment: environment:
@ -12,13 +13,37 @@ services:
- werc:/var/www/werc - werc:/var/www/werc
- lighttpd:/etc/lighttpd - lighttpd:/etc/lighttpd
tty: true tty: true
networks:
- default-werc
gossa: gossa:
image: pldubouilh/gossa image: pldubouilh/gossa
container_name: gossa
ports: ports:
- 8001:8001 - 8001:8001
volumes: volumes:
- ./werc/sites/thirdculture.top/_files:/shared - ./werc/sites/thirdculture.top/_files:/shared
- ./werc/sites/ppl.thirdculture.top:/shared/people - ./werc/sites/ppl.thirdculture.top:/shared/people
networks:
- default-werc
transfer:
image: dutchcoders/transfer.sh:latest
container_name: transfer
ports:
- "8080:8080"
command: ["--provider", "local", "--basedir", "/uploads/", "--web-path", "/web/"]
volumes:
- ./transfer/uploads:/uploads
- ./transfer/tshweb:/web
restart: always
networks:
- default-werc
networks:
default-werc:
driver: bridge
volumes: volumes:
werc: werc:
driver: local driver: local

View file

@ -14,7 +14,11 @@ $HTTP["host"] =~ "^files\.thirdculture\.top$" {
"" => ( "" => (
( (
"host" => "gossa", "host" => "gossa",
"port" => 8001 "port" => 8001,
"headers" => (
"Host" => "$HTTP_HOST",
"X-Forwarded-For" => "$REMOTE_ADDR"
)
) )
) )
) )

View file

@ -0,0 +1,19 @@
$HTTP["host"] =~ "up\.thirdculture\.top" {
server.document-root = "/var/www/localhost/htdocs"
proxy.server = (
"" => (
"localhost" => (
"host" => "transfer",
"port" => 8080,
"path" => "/web",
"headers" => (
"Host" => "$HTTP_HOST",
"X-Forwarded-For" => "$REMOTE_ADDR"
)
)
)
)
proxy.balance = "round-robin"
}

View file

@ -20,6 +20,7 @@ server.modules = (
"mod_access", "mod_access",
# "mod_cml", # "mod_cml",
# "mod_trigger_b4_dl", # "mod_trigger_b4_dl",
"mod_authn_file",
"mod_auth", "mod_auth",
# "mod_status", # "mod_status",
# "mod_setenv", # "mod_setenv",
@ -37,7 +38,10 @@ server.modules = (
"mod_accesslog" "mod_accesslog"
) )
# }}} # }}}
# DEBUG
#setenv.add-response-header = ( "X-Debug" => "true" )
#debug.log-request-header = "enable"
#debug.log-response-header = "enable"
# {{{ includes # {{{ includes
include "mime-types.conf" include "mime-types.conf"
# uncomment for cgi support # uncomment for cgi support

14
transfer/tshweb/404.html Normal file
View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<br/>
<p style="color: red; text-align: center;">Content not found!</p>
<p style="color: red; text-align: center;">404</p>
</body>
</html>

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<audio id="audio-player" class="preview-audio" controls preload="auto" data-setup='{}'>
<source src="{{.URL}}" type="{{.ContentType}}">
</source>
</audio>
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<div class="preview-image"><img src="{{.URL}}" alt=""></div>
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</body>
</html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<div class="md-preview">{{.Content}}</div>
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<video id="video-player" class="prev-video" controls preload="auto" data-setup='{}'>
<source src="{{.URL}}" type="{{.ContentType}}">
</source>
</video>
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</div>
</body>
</html>

BIN
transfer/tshweb/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,4 @@
<a href="{{.URLGet}}" class="btn-cta btn"> download</i> </a> <br/><br/>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}"/>
</div>

View file

@ -0,0 +1,4 @@
<br/>
<h2 class="page-title">{{.Filename}}</h2>
<h4>type: <b>{{.ContentType}}</b></h4>
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<h1><span class="accent">Third Culture</span> Upload</h1>
<form action="http://localhost:8080" method="POST" enctype="multipart/form-data">
<label for="fileInput">Choose file:</label>
<input type="file" name="file" id="fileInput" required />
<br><br>
<button type="submit">Upload</button>
</form>
<p><br></p>
<p>Make sure to copy the link in the next page!</p>
<p>More info on third culture upload <a href="scripts/info.html">here</a>.</p>
<p><br></p>
<svg version="1.1" style="fill:none;width:75px;height:75px;" width="50" height="50" viewBox="0 0 50 50" id="svg3" sodipodi:docname="logo.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs3" />
<path style="fill:#000000;stroke:#000000;stroke-width:1.51515px;stroke-linecap:round;stroke-linejoin:round"
d="m 0.75757498,49.242423 v 0 V 0.75757498 H 49.242425 V 49.242423 Z" id="path1" />
<path style="fill:none;stroke:#a4d1ad;stroke-width:1.51515px;stroke-linecap:round;stroke-linejoin:round"
d="m 20.454546,38.636362 v 0 l 9.090908,-9.090909 m -9.090908,0 v 0 l 9.090908,9.090909" id="path2" />
<path style="fill:none;stroke:#aea3f0;stroke-width:4.24243px;stroke-linecap:round;stroke-linejoin:round"
d="m 6.8181812,40.151514 v 0 L 25,9.8484837 43.181819,40.151514" id="path3" />
</svg>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<h1>up.thirdculture.top info</h1>
<p>Third culture upload supports uploading through the browser but also using the terminal as well you can find more details on the <a href="https://github.com/dutchcoders/transfer.sh">transfer.sh github</a>. I will include some simple examples here for quick reference.</p>
</body>
</html>

View file

@ -0,0 +1,99 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
color: #9b4d96;
margin-bottom: 20px;
}
.preview-image {
text-align: center;
}
.preview-image img {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.page-title {
text-align: center;
color: #9b4d96;
}
.accent {
color: #7bbc7f;
}
form {
background-color: #1e1e1e;
padding: 20px;
border-radius: 8px;
width: 300px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
label {
font-size: 16px;
color: #ddd;
margin-bottom: 10px;
display: block;
}
input[type="file"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 2px solid #9b4d96;
background-color: #333;
color: #fff;
border-radius: 4px;
}
input[type="file"]:hover {
border-color: #be2b90;
}
button {
background-color: #9b4d96;
color: #fff;
padding: 12px;
border: none;
border-radius: 4px;
width: 100%;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.dwn {
text-align: center;
margin-top: 5px;
margin-bottom: 15px;
}
button:hover {
background-color: #be2b90;
}
button:active {
background-color: #9b4d96;
}
.qrcode {
text-align: center;
}

View file

@ -279,7 +279,7 @@ article h8 {
} }
article p, article li { article p, article li {
color: var(--white); color: var(--text-primary);
font-size: large; font-size: large;
} }
@ -430,6 +430,11 @@ blockquote {
text-align: left; text-align: left;
} }
#test-search {
padding: 5px;
margin: 5px;
}
/* animations */ /* animations */
.fire { .fire {

View file

@ -1,3 +1,18 @@
body {
background: var(--bg-primary);
background-color: var(--bg-primary);
font-family: var(--font-body);
}
article p, article li {
font-size: large;
font-family: var(--font-body);
}
img {
max-width: 600px;
}
.main { .main {
display: flex; display: flex;
justify-content: center; justify-content: center;

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 KiB

View file

@ -1 +1,47 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #0bda51;
--color-secondary: #6c3082;
--color-accent: #6c3082;
/* Background colors */
--bg-primary: #0C1713;
--bg-secondary: #230903;
/* Text colors */
--text-primary: #D9D0DE;
--text-secondary: #65655E;
--text-accent: #CC8899;
/* Header colours */
--header-primary:#0bda51;
--header-secondary: #0bda51;
--header-tertiary: #CC8899;
--header-other: #6c3082;
/* Link colors */
--link-color: #1d75d4ff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #0bda51;
--border-secondary: #0bda51;
--border-image: #230903;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #0C1713;
--header-text: #D9D0DE;
/* Font families */
--font-headers: monospace;
--font-body: monospace;
}
article p, article li {
font-size: x-large;
}
header nav {
font-size: large;
}

View file

@ -1,3 +1,7 @@
# Q # Q
Guitarist and vocalist for moridori Guitarist and vocalist for moridori.
![picture of me](_images/q.jpg)
You can find my personal releases under the name morisuki sometimes as well.

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -1 +1,39 @@
/* Put custom styles here */ :root {
/* Main color scheme */
--color-primary: #E4F0FEff;
--color-secondary: #AEA3F0ff;
--color-accent: #A4D1ADff;
/* Background colors */
--bg-primary: #000300ff;
--bg-secondary: #1C202Fff;
/* Text colors */
--text-primary: #E4F0FEff;
--text-secondary: #989898ff;
--text-accent: #AEA3F0ff;
/* Header colours */
--header-primary:#AEA3F0ff;
--header-secondary: #AEA3F0ff;
--header-tertiary: #A4D1ADff;
--header-other: #E4F0FEff;
/* Link colors */
--link-color: #2667deff;
--link-hover: #5B3D8Aff;
/* Border colors */
--border-primary: #C0CEE8ff;
--border-secondary: #0C072Cff;
--border-image: #000300ff;
/* Special purpose colors */
--code-color: #18A02Cff;
--header-bg: #AEA3F0ff;
--header-text: #0C072Cff;
/* Font families */
--font-headers: 'rumeur', sans-serif;
--font-body: verdana, helvetica, arial, sans-serif;
}

View file

@ -8,17 +8,19 @@ With an account you have access to edit the wiki, create guides, control over yo
Third culture is currently under construction check the [TODO](todo) page to see more details on whats getting done. Third culture is currently under construction check the [TODO](todo) page to see more details on whats getting done.
A high priority todo is providing easy file uploads but right now that is not completely possible. You can use your login to access the [files.thirdculture.top](https://files.thirdculture.top) page there you can upload files/media directly to the *uploaded* directory where your content can be accessed using the link `http://thirdculture.top/_files/uploaded/FILENAME` on other pages (for example the wiki). Or you can access the *people* pages directly (where I'm trusting you to only edit and upload to the location that belongs to you) there you can upload files directly to the person directory where things can be more easily accessed for your personal pages. A high priority todo is providing easy file uploads but right now that is not completely possible. For right now you can use the [up.thirdculture.top](https://up.thridculture.top) file uploading service and then make sure to copy the link given to you once it is uploaded and use that link in your image tags.
Note: to include an image in markdown you can use: Alternatively, if a file management system is better for you, use your login to access the [files.thirdculture.top](https://files.thirdculture.top) page there you can upload files/media directly to the *uploaded* directory where your content can be accessed using the link `http://thirdculture.top/_files/uploaded/FILENAME` on other pages (for example the wiki). Or you can access the *people* pages directly (where I'm trusting you to only edit and upload to the location that belongs to you) there you can upload files directly to the person directory where things can be more easily accessed/managed for your personal pages.
Note: to include an image in markdown (if used file upload service) you can use:
Not centered Not centered
``` ```
![image description](http://thirdculture.top/_files/uploaded/FILENAME.png) ![image description](https://up.thridculture.top/9Rz0GsM4Mt/gaming.png)
``` ```
Centered Centered
``` ```
![image description](http://thirdculture.top/_files/uploaded/FILENAME.png "main") ![image description](https://up.thridculture.top/9Rz0GsM4Mt/gaming.png "main")
``` ```
This is a temporary solution for the time being as I develop a way to upload pictures better. This is a temporary solution for the time being as I develop a way to upload pictures better.

View file

@ -1,2 +1,3 @@
extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">' extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">'
conf_enable_wiki conf_enable_wiki
wiki_editors_groups=mori

View file

@ -1,2 +1,3 @@
extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">' extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">'
conf_enable_wiki conf_enable_wiki
wiki_editors_groups=mori

View file

@ -12,6 +12,8 @@ Our sounds, drawings, writing all support a grander purpose towards community. O
* [498,516,889 Dead Virgins](4mdv) * [498,516,889 Dead Virgins](4mdv)
* [Public Sector](public_sector) * [Public Sector](public_sector)
A larger members list can be found on the <a href="https://ppl.thirdculture.top">members</a> page along with their works.
## Connect ## Connect
You can subscribe to our [news](//news) feed with RSS and I'll make a mailing list one of these days too! You can subscribe to our [news](//news) feed with RSS and I'll make a mailing list one of these days too!

View file

@ -2,3 +2,4 @@ extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">'
conf_enable_wiki conf_enable_wiki
conf_enable_cssedit loser conf_enable_cssedit loser
css_file='_werc/style.css' css_file='_werc/style.css'
wiki_editors_groups=loser

View file

@ -1,2 +1,3 @@
extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">' extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">'
conf_enable_wiki conf_enable_wiki
wiki_editors_groups=mori

View file

@ -1,2 +1,3 @@
extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">' extraHeaders='<link rel="stylesheet" type="text/css" href="_werc/style.css">'
conf_enable_wiki conf_enable_wiki
wiki_editors_groups=ps

View file

@ -1,3 +1,2 @@
conf_enable_wiki conf_enable_wiki
conf_enable_comments conf_enable_comments
allow_new_user_comments=yes