diff --git a/.gitignore b/.gitignore index 7ca844a..dfa3815 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ .DS_Store .htpasswd werc/etc/* -transfer/uploads/* diff --git a/docker-compose.yml b/docker-compose.yml index d943f7f..5a97159 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,51 +1,23 @@ services: werc: build: - network: host dockerfile: Dockerfile context: . - container_name: werc ports: - - 3080:80 + - 80:80 environment: - HOSTNAME=thirdculture.top volumes: - werc:/var/www/werc - lighttpd:/etc/lighttpd - - /etc/timezone:/etc/timezone:ro - - /etc/localtime:/etc/localtime:ro tty: true - networks: - - default-werc - gossa: image: pldubouilh/gossa - container_name: gossa ports: - - 3001:8001 + - 8001:8001 volumes: - - ./werc/sites/thirdculture.top/_files:/shared + - ./werc/sites/thirdculture.top/_files:/shared - ./werc/sites/ppl.thirdculture.top:/shared/people - networks: - - default-werc - - transfer: - image: dutchcoders/transfer.sh:latest - container_name: transfer - ports: - - "3880: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: werc: driver: local diff --git a/etc/lighttpd/conf.d/events.thridculture.top.conf b/etc/lighttpd/conf.d/events.thridculture.top.conf deleted file mode 100644 index 7eb060c..0000000 --- a/etc/lighttpd/conf.d/events.thridculture.top.conf +++ /dev/null @@ -1,6 +0,0 @@ -$HTTP["host"] =~ "^events\.thirdculture\.top$" { - index-file.names = ( ) - server.error-handler-404 = "/werc.rc" - alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" ) - cgi.assign += ( ".rc" => "") -} \ No newline at end of file diff --git a/etc/lighttpd/conf.d/files.thirdculture.top.conf b/etc/lighttpd/conf.d/files.thirdculture.top.conf index ee85e6d..e06cd69 100644 --- a/etc/lighttpd/conf.d/files.thirdculture.top.conf +++ b/etc/lighttpd/conf.d/files.thirdculture.top.conf @@ -14,11 +14,7 @@ $HTTP["host"] =~ "^files\.thirdculture\.top$" { "" => ( ( "host" => "gossa", - "port" => 8001, - "headers" => ( - "Host" => "$HTTP_HOST", - "X-Forwarded-For" => "$REMOTE_ADDR" - ) + "port" => 8001 ) ) ) diff --git a/etc/lighttpd/conf.d/music.thridculture.top.conf b/etc/lighttpd/conf.d/music.thridculture.top.conf deleted file mode 100644 index 93a8ec0..0000000 --- a/etc/lighttpd/conf.d/music.thridculture.top.conf +++ /dev/null @@ -1,6 +0,0 @@ -$HTTP["host"] =~ "^music\.thirdculture\.top$" { - index-file.names = ( ) - server.error-handler-404 = "/werc.rc" - alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" ) - cgi.assign += ( ".rc" => "") -} \ No newline at end of file diff --git a/etc/lighttpd/conf.d/social.thridculture.top.conf b/etc/lighttpd/conf.d/social.thridculture.top.conf deleted file mode 100644 index ba35479..0000000 --- a/etc/lighttpd/conf.d/social.thridculture.top.conf +++ /dev/null @@ -1,6 +0,0 @@ -$HTTP["host"] =~ "^social\.thirdculture\.top$" { - index-file.names = ( ) - server.error-handler-404 = "/werc.rc" - alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" ) - cgi.assign += ( ".rc" => "") -} \ No newline at end of file diff --git a/etc/lighttpd/conf.d/up.thirdculture.top.conf b/etc/lighttpd/conf.d/up.thirdculture.top.conf deleted file mode 100644 index 23f491b..0000000 --- a/etc/lighttpd/conf.d/up.thirdculture.top.conf +++ /dev/null @@ -1,19 +0,0 @@ -$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" -} diff --git a/etc/lighttpd/conf.d/visual.thridculture.top.conf b/etc/lighttpd/conf.d/visual.thridculture.top.conf deleted file mode 100644 index d7d547c..0000000 --- a/etc/lighttpd/conf.d/visual.thridculture.top.conf +++ /dev/null @@ -1,6 +0,0 @@ -$HTTP["host"] =~ "^visual\.thirdculture\.top$" { - index-file.names = ( ) - server.error-handler-404 = "/werc.rc" - alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" ) - cgi.assign += ( ".rc" => "") -} \ No newline at end of file diff --git a/etc/lighttpd/lighttpd.conf b/etc/lighttpd/lighttpd.conf index 5db072c..f132f28 100644 --- a/etc/lighttpd/lighttpd.conf +++ b/etc/lighttpd/lighttpd.conf @@ -20,7 +20,6 @@ server.modules = ( "mod_access", # "mod_cml", # "mod_trigger_b4_dl", - "mod_authn_file", "mod_auth", # "mod_status", # "mod_setenv", @@ -38,10 +37,7 @@ server.modules = ( "mod_accesslog" ) # }}} -# DEBUG -#setenv.add-response-header = ( "X-Debug" => "true" ) -#debug.log-request-header = "enable" -#debug.log-response-header = "enable" + # {{{ includes include "mime-types.conf" # uncomment for cgi support diff --git a/scripts/add_person.sh b/scripts/add_person.sh deleted file mode 100755 index 504490f..0000000 --- a/scripts/add_person.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# Ensure the script is run with exactly two arguments -if [ $# -ne 2 ]; then - echo "Usage: $0 " - exit 1 -fi - -# Define variables -path="$1" -name="$2" - -# Create the folder structure -mkdir -p "$path/$name/_werc" "$path/$name/blog/_werc" - -# Create the first config file (not under blog) -cat > "$path/$name/_werc/config" < "$path/$name/blog/_werc/config" < "$path/$name/_werc/style.css" - -# Output a success message -echo "Folder structure created successfully at $path/$name" diff --git a/scripts/add_web_person.rc b/scripts/add_web_person.rc deleted file mode 100644 index 086237d..0000000 --- a/scripts/add_web_person.rc +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/rc - -# Check if the correct number of arguments are provided -if (~ $#argv 2) { - echo "Usage: $0 " - exit 1 -} - -# Assign arguments to variables -path = $argv[1] -name = $argv[2] - -# Create the folder structure -mkdir -p $path/$name/_werc -mkdir -p $path/$name/blog/_werc - -# Create the first config file (not under blog) -echo "extraHeaders=''" > $path/$name/_werc/config -echo "conf_enable_wiki" >> $path/$name/_werc/config -echo "conf_enable_cssedit $name" >> $path/$name/_werc/config -echo "css_file='_werc/style.css'" >> $path/$name/_werc/config -echo "" >> $path/$name/_werc/config - -# Create the second config file (under blog) -echo "conf_enable_wiki" > $path/$name/blog/_werc/config -echo "conf_enable_blog" >> $path/$name/blog/_werc/config -echo "conf_blog_only_pull=0" >> $path/$name/blog/_werc/config -echo "conf_blog_editors=$name" >> $path/$name/blog/_werc/config -echo "" >> $path/$name/blog/_werc/config - -# Create the style.css file -touch $path/$name/_werc/style.css - -# Output a success message -echo "Folder structure created successfully at $path/$name" diff --git a/transfer/tshweb/404.html b/transfer/tshweb/404.html deleted file mode 100644 index c073c41..0000000 --- a/transfer/tshweb/404.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - Third Culture Upload - - - -
-

Content not found!

-

404

- - diff --git a/transfer/tshweb/download.audio.html b/transfer/tshweb/download.audio.html deleted file mode 100644 index 89d4b3d..0000000 --- a/transfer/tshweb/download.audio.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - Third Culture Upload - - - - -
-
-

{{.Filename}}

- - type: {{.ContentType}} - size: {{.ContentLength | format "#,###."}} bytes - -
- -

download

-
- -
-
- - - \ No newline at end of file diff --git a/transfer/tshweb/download.html b/transfer/tshweb/download.html deleted file mode 100644 index f5bb4ff..0000000 --- a/transfer/tshweb/download.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - Third Culture Upload - - - - -
-
-

{{.Filename}}

- - type: {{.ContentType}} - size: {{.ContentLength | format "#,###."}} bytes - -
-

download

-
- -
-
- - - \ No newline at end of file diff --git a/transfer/tshweb/download.image.html b/transfer/tshweb/download.image.html deleted file mode 100644 index 7d71385..0000000 --- a/transfer/tshweb/download.image.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - Third Culture Upload - - - - -
-
-

{{.Filename}}

- - type: {{.ContentType}} - size: {{.ContentLength | format "#,###."}} bytes - -
-
-

download

-
- -
- - - \ No newline at end of file diff --git a/transfer/tshweb/download.markdown.html b/transfer/tshweb/download.markdown.html deleted file mode 100644 index a43e38c..0000000 --- a/transfer/tshweb/download.markdown.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - Third Culture Upload - - - - -
-
-

{{.Filename}}

- - type: {{.ContentType}} - size: {{.ContentLength | format "#,###."}} bytes - -
-
{{.Content}}
-

download

-
- -
-
- - - \ No newline at end of file diff --git a/transfer/tshweb/download.video.html b/transfer/tshweb/download.video.html deleted file mode 100644 index 4a11e8e..0000000 --- a/transfer/tshweb/download.video.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - Third Culture Upload - - - - -
-
-

{{.Filename}}

- - type: {{.ContentType}} - size: {{.ContentLength | format "#,###."}} bytes - -
- -

download

-
- -
-
- - - \ No newline at end of file diff --git a/transfer/tshweb/favicon.ico b/transfer/tshweb/favicon.ico deleted file mode 100644 index cb6f257..0000000 Binary files a/transfer/tshweb/favicon.ico and /dev/null differ diff --git a/transfer/tshweb/includes/download-bottom.html b/transfer/tshweb/includes/download-bottom.html deleted file mode 100644 index a22c387..0000000 --- a/transfer/tshweb/includes/download-bottom.html +++ /dev/null @@ -1,4 +0,0 @@ - download

-
- -
\ No newline at end of file diff --git a/transfer/tshweb/includes/download-top.html b/transfer/tshweb/includes/download-top.html deleted file mode 100644 index 82c39d5..0000000 --- a/transfer/tshweb/includes/download-top.html +++ /dev/null @@ -1,4 +0,0 @@ -
-

{{.Filename}}

-

type: {{.ContentType}}

-

size: {{.ContentLength | format "#,###."}} bytes

diff --git a/transfer/tshweb/index.html b/transfer/tshweb/index.html deleted file mode 100644 index 4a882a2..0000000 --- a/transfer/tshweb/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Third Culture Upload - - - - -

Third Culture Upload

-
- - -

- -
-


-

Make sure to copy the link in the next page!

-

More info on third culture upload here.

-


- - - - - - - - - \ No newline at end of file diff --git a/transfer/tshweb/scripts/info.html b/transfer/tshweb/scripts/info.html deleted file mode 100644 index 23553ed..0000000 --- a/transfer/tshweb/scripts/info.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Third Culture Upload - - - - -

up.thirdculture.top info

-

Third culture upload supports uploading through the browser but also using the terminal as well you can find more details on the transfer.sh github. I will include some simple examples here for quick reference.

- - - \ No newline at end of file diff --git a/transfer/tshweb/styles/main.css b/transfer/tshweb/styles/main.css deleted file mode 100644 index 036e249..0000000 --- a/transfer/tshweb/styles/main.css +++ /dev/null @@ -1,99 +0,0 @@ -* { - 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; -} diff --git a/werc/apps/blagh/app.rc b/werc/apps/blagh/app.rc index 39c013b..6cd82b1 100644 --- a/werc/apps/blagh/app.rc +++ b/werc/apps/blagh/app.rc @@ -49,7 +49,7 @@ fn blagh_init { if not if(~ $req_path $blagh_uri^index.rss) blagh_setup_feed_handlers rss20.tpl 'text/xml; charset=utf-8' - if not if(~ $req_path $blagh_uri^feed.json) + if not if(~ $req_path $blagh_uri^feed.json) blagh_setup_feed_handlers jsonfeed.tpl 'application/json; charset=utf-8' if not if(~ $req_path $blagh_uri^new_post && ! ~ $#editor_mode 0) { @@ -101,16 +101,16 @@ fn get_post_list { } fn mkbpost { - bptext=$1; - bpdate=$2; - bptitle=$3; - bpid=$4; + bptext=$1 + bpdate=$2 + bptitle=$3 + bpid=$4 _status=() if(~ $"bptext '') _status=($_status 'You need to provide a post body.') if(! ~ $"bpdate [0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9]) _status=($_status 'Invalid date: '''^$"bpdate^'''') # XXX Should make semantic check. - + if(~ $#_status 0) { umask 002 # Let group write if(! ~ $"bpid '') diff --git a/werc/apps/blagh/rss20.tpl b/werc/apps/blagh/rss20.tpl index 9470656..0cba818 100644 --- a/werc/apps/blagh/rss20.tpl +++ b/werc/apps/blagh/rss20.tpl @@ -19,7 +19,7 @@ fn statpost { %($base_url^$req_path%) en-us - + %{ # uriel99+rss@gmail.com (Uriel) # rfc2822 last time channel content changed. @@ -32,7 +32,7 @@ fn statpost { %} <![CDATA[%($title%)]]> - + %($post_uri%) %($post_uri%) %($pubdate%) diff --git a/werc/apps/bridge/foot.tpl b/werc/apps/bridge/foot.tpl index 67beb06..0dad21d 100755 --- a/werc/apps/bridge/foot.tpl +++ b/werc/apps/bridge/foot.tpl @@ -2,7 +2,7 @@ % notices_handler
- +
diff --git a/werc/apps/cssedit/app.rc b/werc/apps/cssedit/app.rc deleted file mode 100644 index 9dc7094..0000000 --- a/werc/apps/cssedit/app.rc +++ /dev/null @@ -1,33 +0,0 @@ -fn conf_enable_cssedit { - enable_cssedit=yes - cssedit_editors_groups=$* - conf_enable_app cssedit - css_file='_werc/style.css' # Default location, can be changed -} - -fn cssedit_init { - if(! ~ $#enable_cssedit 0 && check_user $cssedit_editors_groups) { - lp=$local_path - lp=`{echo $lp | sed 's/index$//'} - cssedit_file=$"lp$"css_file - - if(~ 1 $#post_arg_cssedit_edit $#post_arg_cssedit_preview) { - handler_body_main=(tpl_handler `{get_lib_file cssedit/edit.tpl apps/cssedit/edit.tpl}) - } - - if not if(! ~ '' $"post_arg_cssedit_save $"post_arg_css_text) { - save_css - } - - if not if(~ $"handler_body_main '' || {~ $REQUEST_METHOD GET && test -f $cssedit_file}) { - ll_add handlers_bar_left tpl_handler apps/cssedit/sidebar_controls.tpl - } - } -} - -fn save_css { - umask 002 - echo $post_arg_css_text > $cssedit_file - post_redirect $base_url^$req_path -} - diff --git a/werc/apps/cssedit/edit.tpl b/werc/apps/cssedit/edit.tpl deleted file mode 100644 index 3107648..0000000 --- a/werc/apps/cssedit/edit.tpl +++ /dev/null @@ -1,27 +0,0 @@ -
-

Editing CSS: %($css_file%)

-
- -
- -
- Download Stylesheet -
- - Note: Saved changes are final, historical versions of stylesheet are not kept. -
- -

Tips

-
-
    -
  • Pressing F12 in your browser and editing the style.css that way is a good way to test/preview your changes out before committing to them using this tool.
  • -
  • Using a computer is suggested for these kind of changes
  • -
  • Learn css: w3schools
  • -
-
-
\ No newline at end of file diff --git a/werc/apps/cssedit/sidebar_controls.tpl b/werc/apps/cssedit/sidebar_controls.tpl deleted file mode 100644 index b297ff7..0000000 --- a/werc/apps/cssedit/sidebar_controls.tpl +++ /dev/null @@ -1,3 +0,0 @@ -
- -
\ No newline at end of file diff --git a/werc/apps/dirdir/README.md b/werc/apps/dirdir/README.md deleted file mode 100644 index 1daa50c..0000000 --- a/werc/apps/dirdir/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# RisingThumb's build of dirdir - -dirdir is werc's directory management tool. - -## Features - -This adds a few features to dirdir. - -- Ability to edit larger text files -- Ability to edit template files -- Ability to upload files(optionally under a different name) -- Ability to delete a page -- Ability to delete a folder - -## Roadmap - -- Ideally take some filetype info for making new pages. Would be nice to make tpl files this way. -- User permissioning around editing template files (default config off?) -- Possibly allowing different markdown/formatters to be used. diff --git a/werc/apps/dirdir/app.rc b/werc/apps/dirdir/app.rc index 3d11265..1aa9cbd 100755 --- a/werc/apps/dirdir/app.rc +++ b/werc/apps/dirdir/app.rc @@ -2,9 +2,6 @@ fn conf_enable_wiki { enable_wiki=yes wiki_editors_groups=$* conf_enable_app dirdir - - if(~ $"conf_dirdir_index_type '') - conf_dirdir_index_type='md' } fn dirdir_init { @@ -14,34 +11,16 @@ fn dirdir_init { # maybe it should, but for now we can fix it up here. if(~ $lp */) lp=$lp^'index' - dirdir_file=$lp.^$"conf_dirdir_index_type - if (test -f $lp.tpl) { - dirdir_file=$lp.tpl - } + dirdir_file=$lp.md dirdir_dir=$dirdir_file^'_werc/dirdir/' if(~ 1 $#post_arg_dirdir_edit $#post_arg_dirdir_preview) handler_body_main=(tpl_handler `{get_lib_file dirdir/edit.tpl apps/dirdir/edit.tpl}) - if not if(~ 1 $#post_arg_dirdir_delete && ! ~ $#post_arg_dirdir_delete_yes 1) - handler_body_main=(tpl_handler `{get_lib_file dirdir/delete_sure.tpl apps/dirdir/delete_sure.tpl}) - if not if(~ 1 $#post_arg_dirdir_delete_folder && ! ~ $#post_arg_dirdir_delete_yes 1) - handler_body_main=(tpl_handler `{get_lib_file dirdir/delete_sure.tpl apps/dirdir/delete_sure.tpl}) - if not if(~ 1 $#post_arg_dirdir_delete && ! ~ $#post_arg_dirdir_delete_yes 0) - rm $dirdir_file - if not if(~ 1 $#post_arg_dirdir_delete_folder && ! ~ $#post_arg_dirdir_delete_yes 0) - rm -rf `{dirname $dirdir_file} - if not if(~ 1 $#post_arg_dirdir_add_child_file && ! ~ $#post_arg_dirdir_search 0) - touch `{dirname $dirdir_file}^'/'^$post_arg_dirdir_search^'.md' - if not if(~ 1 $#post_arg_dirdir_add_child_folder! ~ $#post_arg_dirdir_search 0) - mkdir `{dirname $dirdir_file}^'/'^$post_arg_dirdir_search - if not if(~ 1 $#post_arg_dirdir_upload_file_pressed && ! ~ $#post_arg_dirdir_file_name 0 && ! ~ $post_arg_dirdir_file_name "" && ! ~ $#post_arg_dirdir_upload_file 0) - mv /tmp/werc_file.*.data `{dirname $dirdir_file}^'/'^$post_arg_dirdir_file_name - if not if(~ 1 $#post_arg_dirdir_upload_file_pressed && ! ~ $#post_arg_dirdir_upload_file 0) - mv /tmp/werc_file.*.data `{dirname $dirdir_file}^'/'^$post_arg_dirdir_upload_file + if not if(! ~ '' $"post_arg_dirdir_save $"post_arg_edit_text) save_page - if not if(~ $"handler_body_main '' || {~ $REQUEST_METHOD GET && test -f $local_path.md} || {~ $REQUEST_METHOD GET && test -f $local_path.tpl} ) + if not if(~ $"handler_body_main '' || {~ $REQUEST_METHOD GET && test -f $local_path.md}) ll_add handlers_bar_left tpl_handler apps/dirdir/sidebar_controls.tpl } } @@ -53,7 +32,9 @@ fn save_page { # XXX Use a tmp file and mv(1) to ensure updates are atomic? echo $logged_user > $dirdir_verdir/author - echo $post_arg_edit_text | dos2unix > $dirdir_verdir/data - echo $post_arg_edit_text | dos2unix > $dirdir_file + echo $post_arg_edit_text > $dirdir_verdir/data + echo $post_arg_edit_text > $dirdir_file + post_redirect $base_url^$req_path + #notify_notes='Saved '$"req_path'!' } diff --git a/werc/apps/dirdir/delete_sure.tpl b/werc/apps/dirdir/delete_sure.tpl deleted file mode 100755 index fee5e32..0000000 --- a/werc/apps/dirdir/delete_sure.tpl +++ /dev/null @@ -1,9 +0,0 @@ -
- -% if(~ 1 $#post_arg_dirdir_delete ) { -% echo '' } -% if(~ 1 $#post_arg_dirdir_delete_folder ) { -% echo '' } - - -
diff --git a/werc/apps/dirdir/edit.tpl b/werc/apps/dirdir/edit.tpl index 0e830a2..1a5b206 100755 --- a/werc/apps/dirdir/edit.tpl +++ b/werc/apps/dirdir/edit.tpl @@ -1,10 +1,9 @@

Editing: %($req_path%)


-
+ - -
- -
-
\ No newline at end of file diff --git a/werc/apps/ico/post.tpl b/werc/apps/ico/post.tpl deleted file mode 100644 index 8591ed4..0000000 --- a/werc/apps/ico/post.tpl +++ /dev/null @@ -1,20 +0,0 @@ - -
- -

%($icotitle%)

-
-
%($icodate%)
- - -
%($category_links%)
-
%($icoshortdesc%)
-
-% if(! ~ $"icoposterpath '') { -
- Event Poster -
-% } -
- %($icotext%) -
-
\ No newline at end of file diff --git a/werc/apps/ico/rss20.tpl b/werc/apps/ico/rss20.tpl deleted file mode 100644 index dc7e5e1..0000000 --- a/werc/apps/ico/rss20.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - - - - <![CDATA[%($siteTitle%)]]> - %($base_url^$req_path%) - - en-us - werc ico app - %($lastBuildDate%) -%{ - for(f in `{get_post_list $ico_root$ico_dirs}){ - statpost $f -%} - - <![CDATA[%($title%)]]> - %($post_uri%) - %($post_uri%) - %($pubdate%) - - %($categories%) - -% } - - diff --git a/werc/bin/contrib/rc-httpd/rc-httpd b/werc/bin/contrib/rc-httpd/rc-httpd index ff064f2..8e4fad9 100755 --- a/werc/bin/contrib/rc-httpd/rc-httpd +++ b/werc/bin/contrib/rc-httpd/rc-httpd @@ -5,7 +5,7 @@ path=($PLAN9/bin $rc_httpd_dir/handlers $PATH) cgi_path=$PLAN9/bin SERVER_PORT=80 # default for CGI scripts, may be overridden by the Host header extra_headers='Server: rc-httpd' -cr= +cr= fn do_log{ echo `{date} :: $SERVER_NAME :: $request :: \ diff --git a/werc/bin/werc.rc b/werc/bin/werc.rc index 2eafdcc..0d006a3 100755 --- a/werc/bin/werc.rc +++ b/werc/bin/werc.rc @@ -34,7 +34,7 @@ for(a in $werc_apps) fn werc_exec_request { site=$SERVER_NAME - base_url=https://$site + base_url=http://$site:$SERVER_PORT sitedir=$sitesdir/$site headers=`{get_lib_file headers.tpl} master_template=`{get_lib_file default_master.tpl} diff --git a/werc/lib/default_master.tpl b/werc/lib/default_master.tpl index d712566..abf89c5 100644 --- a/werc/lib/default_master.tpl +++ b/werc/lib/default_master.tpl @@ -7,15 +7,11 @@ % if(! ~ $#handlers_bar_left 0) { % } diff --git a/werc/pub/favicon.ico b/werc/pub/favicon.ico deleted file mode 100644 index cb6f257..0000000 Binary files a/werc/pub/favicon.ico and /dev/null differ diff --git a/werc/pub/style/fonts/3270-Regular.woff b/werc/pub/style/fonts/3270-Regular.woff deleted file mode 100644 index d74887d..0000000 Binary files a/werc/pub/style/fonts/3270-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/3270Condensed-Regular.woff b/werc/pub/style/fonts/3270Condensed-Regular.woff deleted file mode 100644 index d17eb5e..0000000 Binary files a/werc/pub/style/fonts/3270Condensed-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/3270SemiCondensed-Regular.woff b/werc/pub/style/fonts/3270SemiCondensed-Regular.woff deleted file mode 100644 index 66db7b8..0000000 Binary files a/werc/pub/style/fonts/3270SemiCondensed-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Creduci.ttf b/werc/pub/style/fonts/Creduci.ttf deleted file mode 100644 index 503dfe4..0000000 Binary files a/werc/pub/style/fonts/Creduci.ttf and /dev/null differ diff --git a/werc/pub/style/fonts/Director-Regular.woff b/werc/pub/style/fonts/Director-Regular.woff deleted file mode 100644 index 08cf4d3..0000000 Binary files a/werc/pub/style/fonts/Director-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Director-Regular.woff2 b/werc/pub/style/fonts/Director-Regular.woff2 deleted file mode 100644 index b9fa97c..0000000 Binary files a/werc/pub/style/fonts/Director-Regular.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/FT88-Gothique.woff b/werc/pub/style/fonts/FT88-Gothique.woff deleted file mode 100644 index e9ce7b6..0000000 Binary files a/werc/pub/style/fonts/FT88-Gothique.woff and /dev/null differ diff --git a/werc/pub/style/fonts/FT88-Gothique.woff2 b/werc/pub/style/fonts/FT88-Gothique.woff2 deleted file mode 100644 index 3e2d34e..0000000 Binary files a/werc/pub/style/fonts/FT88-Gothique.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/Fontlab.otf b/werc/pub/style/fonts/Fontlab.otf deleted file mode 100644 index 6a34cfc..0000000 Binary files a/werc/pub/style/fonts/Fontlab.otf and /dev/null differ diff --git a/werc/pub/style/fonts/Garamondt-Italic.woff b/werc/pub/style/fonts/Garamondt-Italic.woff deleted file mode 100755 index d20850f..0000000 Binary files a/werc/pub/style/fonts/Garamondt-Italic.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Garamondt-Regular.woff b/werc/pub/style/fonts/Garamondt-Regular.woff deleted file mode 100755 index c795aaa..0000000 Binary files a/werc/pub/style/fonts/Garamondt-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Manusquared-Bold.woff b/werc/pub/style/fonts/Manusquared-Bold.woff deleted file mode 100644 index 464b383..0000000 Binary files a/werc/pub/style/fonts/Manusquared-Bold.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Manusquared-Bold.woff2 b/werc/pub/style/fonts/Manusquared-Bold.woff2 deleted file mode 100644 index 54544e9..0000000 Binary files a/werc/pub/style/fonts/Manusquared-Bold.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/Manusquared-Regular.woff b/werc/pub/style/fonts/Manusquared-Regular.woff deleted file mode 100644 index 895a8b8..0000000 Binary files a/werc/pub/style/fonts/Manusquared-Regular.woff and /dev/null differ diff --git a/werc/pub/style/fonts/Manusquared-Regular.woff2 b/werc/pub/style/fonts/Manusquared-Regular.woff2 deleted file mode 100644 index e1d7ccb..0000000 Binary files a/werc/pub/style/fonts/Manusquared-Regular.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/Redaction_50-Bold.woff2 b/werc/pub/style/fonts/Redaction_50-Bold.woff2 deleted file mode 100644 index af22835..0000000 Binary files a/werc/pub/style/fonts/Redaction_50-Bold.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/Redaction_50-Italic.woff2 b/werc/pub/style/fonts/Redaction_50-Italic.woff2 deleted file mode 100644 index 13e52f0..0000000 Binary files a/werc/pub/style/fonts/Redaction_50-Italic.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/Redaction_50-Regular.woff2 b/werc/pub/style/fonts/Redaction_50-Regular.woff2 deleted file mode 100644 index 26ea348..0000000 Binary files a/werc/pub/style/fonts/Redaction_50-Regular.woff2 and /dev/null differ diff --git a/werc/pub/style/fonts/WonderType-Regular.otf b/werc/pub/style/fonts/WonderType-Regular.otf deleted file mode 100644 index de1e7af..0000000 Binary files a/werc/pub/style/fonts/WonderType-Regular.otf and /dev/null differ diff --git a/werc/pub/style/fonts/rumeur.otf b/werc/pub/style/fonts/rumeur.otf deleted file mode 100644 index 01e1b83..0000000 Binary files a/werc/pub/style/fonts/rumeur.otf and /dev/null differ diff --git a/werc/pub/style/fonts/terminal-grotesque-webfont.woff b/werc/pub/style/fonts/terminal-grotesque-webfont.woff deleted file mode 100644 index d721311..0000000 Binary files a/werc/pub/style/fonts/terminal-grotesque-webfont.woff and /dev/null differ diff --git a/werc/pub/style/fonts/terminal-grotesque-webfont.woff2 b/werc/pub/style/fonts/terminal-grotesque-webfont.woff2 deleted file mode 100644 index 1240fa3..0000000 Binary files a/werc/pub/style/fonts/terminal-grotesque-webfont.woff2 and /dev/null differ diff --git a/werc/pub/style/style.css b/werc/pub/style/style.css index 5f15c60..4d60b5f 100644 --- a/werc/pub/style/style.css +++ b/werc/pub/style/style.css @@ -10,90 +10,39 @@ nav ul { display: flex; flex-direction: column; list-style-type: none; list-styl nav li ul { padding-left: 0.6em } footer { display: flex; justify-content: space-between; } -@font-face { - font-family: 'ft88'; - src: url('fonts/FT88-Gothique.woff2') format('woff2'), - url('fonts/FT88-Gothique.woff') format('woff'); -} - -@font-face { - font-family: 'gt'; - src: url('fonts/terminal-grotesque-webfont.woff2') format('woff2'), - url('fonts/terminal-grotesque-webfont.woff') format('woff'); -} - -@font-face { - font-family: 'wonder'; - src: url('fonts/WonderType-Regular.otf') format('opentype'); -} - -@font-face { - font-family: 'c'; - src: url('fonts/Creduci.ttf') format('truetype'); -} - -@font-face { - font-family: 'rumeur'; - src: url('fonts/rumeur.otf') format('opentype'); -} :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; + --alt-accent2: #C0CEE8ff; + --primary-accent: #AEA3F0ff; + --rebecca-purple: #5B3D8Aff; + --primary-dark: #0C072Cff; + --alt-accent: #989898ff; + --back-secondary: #1C202Fff; + --back-primary: #000300ff; + --primary: #E4F0FEff; + --white: white; + --secondary-accent: #A4D1ADff; + --link: #2667deff; + --code: #18A02Cff; } body { background: linear-gradient(to right, rgba(0, 5, 10, 0.9), rgba(0, 5, 5, 0.9)), url('imgs/back.jpeg'), - var(--bg-primary); - background-color: var(--bg-primary); + var(--back-primary); + background-color: var(--back-primary); background-position: center center; background-size: 110vh 75vh; background-repeat: repeat-y; margin: 0; padding: 0; - font-size: 90%; - font-family: var(--font-body); + font-size: 84%; + font-family: verdana, helvetica, arial, sans-serif; } a { text-decoration: none; - color: var(--link-color); + color: var(--link); } a:hover { @@ -102,19 +51,19 @@ a:hover { /* header and top bar */ header nav { - background-color: var(--header-bg); - color: var(--header-text); - border-bottom: 3px solid var(--border-secondary); + background-color: var(--primary-accent); + color: var(--primary-dark); + border-bottom: 3px solid var(--primary-dark); padding: 0.3em; - font-size: 110%; + font-size: 91%; } header h1 { display: flex; background-color: var(--back-secondary); - color: var(--text-primary); + color: var(--primary); margin: 0; - border-bottom: 3px solid var(--border-secondary); + border-bottom: 3px solid var(--primary-dark); font-size: 200%; font-weight: bold; padding: 0.5ex 0 0.5ex 0.6ex; @@ -124,15 +73,13 @@ header h1 #headerSubTitle { display: block; margin-left: 2em; font-size: 40%; - color: var(--color-accent); + color: var(--secondary-accent) } header h1 .headerLink { display: inline-block; margin-top: 0.2ex; margin-left: 0.6ex; - font-family: var(--font-headers); - font-size: xx-large; } header h1 a img { @@ -160,13 +107,12 @@ header nav .right { /* sidebar */ body>nav { padding: 0; - border-right: 3px solid var(--border-primary); + border-right: 3px solid var(--alt-accent2); } body>nav>div a, -input[type="submit"], -.bu { - color: var(--color-accent); +input[type="submit"] { + color: var(--secondary-accent); display: block; font-weight: bold; padding: 0.25em 1ex 0.25em 2mm; @@ -174,35 +120,30 @@ input[type="submit"], } body>nav>div a:hover, -input[type="submit"]:hover, -.bu:hover { - color: var(--text-accent) !important; - background-color: var(--bg-primary); - border-left: var(--color-accent) solid 0.3em; +input[type="submit"]:hover { + color: var(--primary-accent) !important; + background-color: var(--back-primary); + border-left: var(--secondary-accent) solid 0.3em; text-decoration: none; } -input[type="submit"], .bu { +input[type="submit"] { background-color: transparent; font-family: inherit; border: none; margin-top: 0; } -fieldset input[type="submit"]:hover, .bu:hover { - border: 2px ridge var(--color-accent); - border-left: var(--color-accent) solid 0.3em; +fieldset input[type="submit"]:hover { + border: 2px ridge var(--secondary-accent); + border-left: var(--secondary-accent) solid 0.3em; } -fieldset input[type="submit"], .bu { - border: 2px solid var(--color-accent); +fieldset input[type="submit"] { + border: 2px solid var(--secondary-accent); margin-top: 0.6em; } -.bu { - width: fit-content; -} - fieldset { padding: 1em; max-width: 1000px; @@ -223,11 +164,11 @@ input[type="text"], textarea { } body>nav>div .dt { - color: var(--text-primary); + color: var(--primary); } body>nav>div a:hover .dt { - color: var(--text-accent); + color: var(--primary-accent); } body>nav>div p { @@ -239,52 +180,40 @@ body>nav>div p { /* main copy */ article { padding: 0.5ex 1vw 5vh 1vw; - color: var(--text-primary); + color: var(--primary); backdrop-filter: blur(3px); flex: 1 1 60%; max-width: 1100px; } -article h1 { - color: var(--header-primary); - font-weight: bold; - margin: 1em 0 0.5em 0; - font-size: xx-large; - font-family: rumeur, sans-serif; -} +article h1, article h2 { - color: var(--header-secondary); + color: var(--primary-accent); font-weight: bold; - margin: 1em 0 0.5em 0; - font-family: var(--font-headers); + margin: 1em 0 1em 0; } article h3 { - color: var(--header-tertiary); + color: var(--secondary-accent); font-weight: bold; - margin: 2em 0 0.2em 0; + margin: 2em 0 0 0; } article h4 article h5 { - color: var(--header-other); + color: var(--primary); margin: 2em 0 0 0; } article h6, article h7, article h8 { - color: var(--header-other); + color: var(--primary); font-weight: bold; margin: 2em 0 0 0; } -article p, article li { - color: var(--text-primary); - font-size: large; -} - article a { - color: var(--link-color); + color: var(--link); } article a:hover { @@ -292,12 +221,11 @@ article a:hover { } article img { - border: 0.4em solid var(--bg-primary); -} - -textarea#comment_text { - max-width: 50em; - max-height: 5em; + width: 90%; + max-width: 600px; + border: 0.4em solid var(--back-primary); + background-color: black !important; + padding: 0.2em; } .center { @@ -305,11 +233,6 @@ textarea#comment_text { } img[title="main"] { - width: 90%; - max-width: 600px; - border: 0.4em solid var(--bg-primary); - background-color: var(--border-image) !important; - padding: 0.2em; display: block; margin-left: auto; margin-right: auto; @@ -317,22 +240,17 @@ img[title="main"] { } hr { - color: var(--border-primary); -} - -.notify_errors { - padding: 0.2em; - color: red; + color: var(--alt-accent2) } /* footer */ footer { - color: var(--text-primary); - background-color: color-mix(in srgb, var(--bg-primary), transparent 86%); + color: white; + background-color: color-mix(in srgb, var(--primary-back), transparent 86%); } footer a { - color: var(--link-color); + color: inherit; } footer div { @@ -341,26 +259,26 @@ footer div { /* tables */ table { - border: 1px solid rgba(var(--bg-secondary), 0.5); + border: 1px solid rgba(128, 128, 128, 0.5); padding: 0; } th { - color: var(--text-primary); - background-color: var(--bg-primary); + color: white; + background-color: rgb(100, 135, 220); } tr:nth-child(odd) { - background-color: rgba(var(--bg-secondary), 0.1); + background-color: rgba(128, 128, 128, 0.1) } /* accents */ .accent { - color: var(--text-accent) + color: var(--primary-accent) } .accent2 { - color: var(--color-accent) + color: var(--secondary-accent) } /* dates */ @@ -371,14 +289,14 @@ tr:nth-child(odd) { font-weight: normal; max-width: fit-content; font-size: x-small; - color: var(--text-primary); + color: var(--primary); } .date::before, .date::after { content: '⋆★⋆'; flex: 1; - color: var(--text-secondary); + color: var(--alt-accent) } .date:not(:empty)::before { @@ -399,7 +317,7 @@ tr:nth-child(odd) { .bfeed h2 a { font-size: 90%; - color: var(--text-accent); + color: var(--primary-accent); text-decoration: none; } @@ -409,32 +327,11 @@ tr:nth-child(odd) { blockquote { font-style: italic; - color: var(--color-accent); - border-left: 3px solid var(--text-secondary); + color: var(--secondary-accent); + border-left: 3px solid var(--alt-accent); padding-left: 1em; } -.copybox { - background-color: var(--bg-primary); - border: 1px solid var(--text-primary); - border-radius: 4px; - padding: 16px; - font-family: 'Courier New', Courier, monospace; - font-size: 14px; - color: var(--code-color); - overflow-x: auto; - position: relative; -} - -.info { - text-align: left; -} - -#test-search { - padding: 5px; - margin: 5px; -} - /* animations */ .fire { @@ -464,69 +361,6 @@ blockquote { } } -.menu-toggle { - display: none; -} - -.menu-toggle + label { - display: none; -} - -.menu-toggle + label div { - display: none; - height: 20px; - width: 60px; - margin-top: 15px; - margin-left: 5px; - padding: 5px 5px 5px 5px; - text-align: center; - border: 2px solid var(--border-primary); - border-radius: 3px; - font-weight: bold; - font-family: 'Courier New', Courier, monospace; - font-size: xx-large; -} - -.menu-toggle + label p { - display: inline-block; - font-size: x-large; - color: var(--text-primary); - margin-left: 10px; - margin-bottom: 0px; -} - -@media (max-width: 600px) { - .menu-toggle + label { - display: block; - } - - .menu-toggle + label div { - display: inline-flex; - justify-content: center; - align-items: center; - } - .nav-content { - padding: 0; - display: none; - } - - .menu-toggle:checked ~ .nav-content { - display: block; - } - - .menu-toggle + label div::after { - content: '▶'; - color: var(--text-primary); - } - .menu-toggle:checked + label div::after { - content: '▽'; - } - - .nav-list li:hover { - background-color: #555; - } -} - /* media */ @media screen and (max-width: 600px) { article { @@ -536,8 +370,8 @@ blockquote { body > nav { flex-basis: 100%; border-right: none; - border-bottom: 3px solid var(--border-primary); - border-top: 3px solid var(--border-primary); + border-bottom: 3px solid var(--alt-accent2); + border-top: 3px solid var(--alt-accent2); padding-bottom: 1em; } } \ No newline at end of file diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html deleted file mode 100644 index 3966800..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html +++ /dev/null @@ -1,21 +0,0 @@ - -
- -

BETTER LOVERS ($48.5)

-
-
Friday, November 15th
- - - -
expensive ass metal core show (but good)
-
-
- Event Poster -
-
- loud harsh noise played in a manner that will cause physical harm to nearby people upon listening its fifty bucks im fucking killing myself but these are good well established hardcore bands so if you have money to throw around go see them FUCK SPECTRASONIC -
-
- - - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/author b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/data b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/data deleted file mode 100644 index b928fb2..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470821/data +++ /dev/null @@ -1,23 +0,0 @@ - -
- -

BETTER LOVERS $48.5

-
-
Friday, November 15th
- - - -
All-ages metalcore show
-
-
- Event Poster -
-
- loud harsh noise played in a manner that will cause physical harm to nearby people upon listening - -its fifty bucks im fucking killing myself - -but these are good well established hardcore bands so if you have money to throw around go see them -
-
- diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/author b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/data b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/data deleted file mode 100644 index 6e76df9..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731470885/data +++ /dev/null @@ -1,20 +0,0 @@ - -
- -

BETTER LOVERS ($48.5)

-
-
Friday, November 15th
- - - -
All-ages metalcore show
-
-
- Event Poster -
-
- loud harsh noise played in a manner that will cause physical harm to nearby people upon listening its fifty bucks im fucking killing myself but these are good well established hardcore bands so if you have money to throw around go see them FUCK SPECTRASONIC -
-
- - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/author b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/data b/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/data deleted file mode 100644 index 3966800..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/0/index.html_werc/dirdir/1731471520/data +++ /dev/null @@ -1,21 +0,0 @@ - -
- -

BETTER LOVERS ($48.5)

-
-
Friday, November 15th
- - - -
expensive ass metal core show (but good)
-
-
- Event Poster -
-
- loud harsh noise played in a manner that will cause physical harm to nearby people upon listening its fifty bucks im fucking killing myself but these are good well established hardcore bands so if you have money to throw around go see them FUCK SPECTRASONIC -
-
- - - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html b/werc/sites/events.thirdculture.top/2024/11/13/1/index.html deleted file mode 100644 index 4003ea2..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html +++ /dev/null @@ -1,19 +0,0 @@ - -
- -

Altar Of The Fuzz ($20)

-
-
Thursday, November 14th
- - - -
Fuzzy waves of raw sound to drown the cries of your bitch wife
-
-
- Event Poster -
-
- altar of the fuzz are a really fucking good stoner rock band with loud fuzzy droning riffs reminiscent of electric wizard. music that makes you drool like a retard. i highly recommend it rainbow bistro is based woot woot -
-
- diff --git a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/author b/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/data b/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/data deleted file mode 100644 index 4003ea2..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/1/index.html_werc/dirdir/1731471462/data +++ /dev/null @@ -1,19 +0,0 @@ - -
- -

Altar Of The Fuzz ($20)

-
-
Thursday, November 14th
- - - -
Fuzzy waves of raw sound to drown the cries of your bitch wife
-
-
- Event Poster -
-
- altar of the fuzz are a really fucking good stoner rock band with loud fuzzy droning riffs reminiscent of electric wizard. music that makes you drool like a retard. i highly recommend it rainbow bistro is based woot woot -
-
- diff --git a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html b/werc/sites/events.thirdculture.top/2024/11/13/2/index.html deleted file mode 100644 index 6c1b82c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html +++ /dev/null @@ -1,20 +0,0 @@ - -
- -

hard rock birthday party ($20)

-
-
Saturday, November 16th
- - - -
butt rock made by divorced boomers with nothing better to do on their birthday
-
-
- Event Poster -
-
- i dont know any of these bands but they're probably going to play some van halen/jimi hendrix/led zeppelin style hard rock because they're stuck in their childhood celebrating a birthday party with electric guitars and bad hair (kind of based) -
-
- - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/author b/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/data b/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/data deleted file mode 100644 index ca93cad..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472007/data +++ /dev/null @@ -1,19 +0,0 @@ - -
- -

hard rock birthday party $20

-
-
Saturday, November 16th
- - - -
butt rock made by divorced boomers with nothing better to do on their birthday
-
-
- Event Poster -
-
- i dont know any of these bands but they're probably going to play some van halen/jimi hendrix/led zeppelin style hard rock because they're stuck in their childhood celebrating a birthday party with electric guitars and bad hair (kind of based) -
-
- diff --git a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/author b/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/data b/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/data deleted file mode 100644 index 6c1b82c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/2/index.html_werc/dirdir/1731472091/data +++ /dev/null @@ -1,20 +0,0 @@ - -
- -

hard rock birthday party ($20)

-
-
Saturday, November 16th
- - - -
butt rock made by divorced boomers with nothing better to do on their birthday
-
-
- Event Poster -
-
- i dont know any of these bands but they're probably going to play some van halen/jimi hendrix/led zeppelin style hard rock because they're stuck in their childhood celebrating a birthday party with electric guitars and bad hair (kind of based) -
-
- - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/3/index.html b/werc/sites/events.thirdculture.top/2024/11/13/3/index.html deleted file mode 100644 index 912e554..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/3/index.html +++ /dev/null @@ -1,18 +0,0 @@ - -
- -

Unchained ($15)

-
-
Friday, November 22nd
- - - -
mystery lineup of weird bands
-
-
- Event Poster -
-
- this looks cool, interesting influences on their bandcamps drawing from all over alternative rock, punk, post-punk, doom, amongst other things. expect driving guitars and sweaty drummers with a non negligible degree of headbangitude -
-
diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html deleted file mode 100644 index dbae83b..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html +++ /dev/null @@ -1,23 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
- Event Poster -
-
-bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- - - - - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/author b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/data b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/data deleted file mode 100644 index 593ce88..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475065/data +++ /dev/null @@ -1,18 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
- Event Poster -
- bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/author b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/data b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/data deleted file mode 100644 index 357a6a2..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475072/data +++ /dev/null @@ -1,19 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
- Event Poster -
- 2024-11-13T00:15:54,137815319-05:00.png bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/author b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/data b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/data deleted file mode 100644 index 4f05cc3..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475116/data +++ /dev/null @@ -1,18 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
-bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- - - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/author b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/data b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/data deleted file mode 100644 index bea1b2b..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475220/data +++ /dev/null @@ -1,22 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
- -
-
-bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- - - - diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/author b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/data b/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/data deleted file mode 100644 index dbae83b..0000000 --- a/werc/sites/events.thirdculture.top/2024/11/13/4/index.html_werc/dirdir/1731475546/data +++ /dev/null @@ -1,23 +0,0 @@ - -
- -

Apostlebird

-
-
Friday, November 29
- - - -
our friends in apostlebird live on elgin
-
-
- Event Poster -
-
-bwoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -
-
- - - - - diff --git a/werc/sites/events.thirdculture.top/_werc/config b/werc/sites/events.thirdculture.top/_werc/config deleted file mode 100644 index 4afa58f..0000000 --- a/werc/sites/events.thirdculture.top/_werc/config +++ /dev/null @@ -1,8 +0,0 @@ -masterSite=thirdculture.top -siteTitle='Third Culture Events' -siteSubTitle='happening right now' -conf_enable_ico -icoTitle='Events' -icoDesc='Hand picked, interesting events happening in the Ottawa area!
(maintained by iancobain)' -conf_enable_wiki -conf_dirdir_index_type='html' diff --git a/werc/sites/events.thirdculture.top/_werc/lib/default_master.tpl b/werc/sites/events.thirdculture.top/_werc/lib/default_master.tpl deleted file mode 100644 index 17ef8b0..0000000 --- a/werc/sites/events.thirdculture.top/_werc/lib/default_master.tpl +++ /dev/null @@ -1,28 +0,0 @@ -
-

%($"siteTitle%)
[ %($"siteSubTitle%) ]

- -
- -% if(! ~ $#handlers_bar_left 0) { - -% } - -
-
-% run_handlers $handlers_body_head -% run_handler $handler_body_main -% run_handlers $handlers_body_foot -
- -
-% run_handlers $handlers_foot_body -% cat `{ get_lib_file footer.inc } -
diff --git a/werc/sites/events.thirdculture.top/_werc/lib/ico/foot.tpl b/werc/sites/events.thirdculture.top/_werc/lib/ico/foot.tpl deleted file mode 100644 index 788a39a..0000000 --- a/werc/sites/events.thirdculture.top/_werc/lib/ico/foot.tpl +++ /dev/null @@ -1,4 +0,0 @@ -

[ Make a new post ]

-
-

[ ]

-
\ No newline at end of file diff --git a/werc/sites/events.thirdculture.top/_werc/pub/imgs/starback.gif b/werc/sites/events.thirdculture.top/_werc/pub/imgs/starback.gif deleted file mode 100644 index f0da48c..0000000 Binary files a/werc/sites/events.thirdculture.top/_werc/pub/imgs/starback.gif and /dev/null differ diff --git a/werc/sites/events.thirdculture.top/_werc/pub/style.css b/werc/sites/events.thirdculture.top/_werc/pub/style.css deleted file mode 100644 index 4848e83..0000000 --- a/werc/sites/events.thirdculture.top/_werc/pub/style.css +++ /dev/null @@ -1,359 +0,0 @@ -body { - background: - url("imgs/starback.gif"), - black; - background-repeat: repeat; -} - -.background { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: -1; - backdrop-filter: blur(1px); -} - -nav#side-bar { - display: none; -} - -article { - width: 100%; - max-width: 100%; - backdrop-filter: none; -} - -input[name="dirdir_edit"] { - color: #2667de; - display: inline-block; - font-weight: normal; - padding: 0; - font-size: 100% -} -input[name="dirdir_edit"]:hover { - color: #2667de !important; - background-color: none; - border-left: none; - text-decoration: underline; -} - -.icofeed { - display: grid; - grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); - gap: 10px; - padding: 20px; -} - -.categories_box { - max-width: 100%; -} - -.categories_box legend { - font-size: large; - font-weight: bold; -} - -.categories { - display: flex; - flex-wrap: wrap; - font-size: large; -} - -.categories a { - position: relative; - text-decoration: none; - transition: color 0.1s ease; -} - -.categories a:hover { - color: white; - animation: flicker 0.8s infinite; - transition: opacity 0.1s ease; -} - -.categories a::after { - content: "|"; - color: white; - padding-right: 0.5em; - padding-left: 0.5em; -} - -.categories a:last-child::after { - content: "|"; -} - -.categories a:first-child::before { - color: white; - content: "|"; - padding-right: 0.5em; -} - -@keyframes flicker { - 0% { color: #fff; opacity: 1; } - 25% { color: #def8ff; opacity: 1; } - 50% { color: #fff; opacity: 1; } - 75% { color: #def8ff; opacity: 1; } - 100% { color: #fff; opacity: 1; } -} - -.event_box { - text-align: center; - border-left: 4px solid white; - border-right: 4px solid white; - border-radius: 4px; - max-width: fit-content; - margin: auto; -} - -.event_box h2 { - font-size: xxx-large; -} - -.date { - display: flex; - background-color: rgba(30,30,30,0.5); - color: #f0f0f0; - padding: 8px 0px 8px 0px; - font-weight: bold; - text-align: center; - border-bottom: 1px solid #4a4a4a; - align-items: center; - font-size: large; - margin: auto; - max-width: none; -} - -.date::before, -.date::after { - content: '⋆★⋆'; - flex: 1; - color: grey; -} - -.date:not(:empty)::before { - margin-right: .25em; -} - -.date:not(:empty)::after { - margin-left: .25em; -} - - -.post { - background-color: rgba(0,0,0,0); - border: 1px solid #3a3a3a; - border-radius: 8px; - overflow: hidden; - display: flex; - flex-direction: column; - aspect-ratio: 1; - position: relative; - transition: box-shadow 0.3s ease; -} - -.post .event_info .date { - font-size: 0.9em; -} - -.post .event_info .date::before, -.post .event_info .date::after { - content: '⋆★⋆'; - flex: 1; - color: var(--alt-accent) -} - -.post .event_info .date:not(:empty)::before { - margin-right: .25em; -} - -.post .event_info .date:not(:empty)::after { - margin-left: .25em; -} - -.post .event_box h2 { - margin: 0; - padding: 12px; - font-size: 200%; - text-align: center; -} - -.post .cat_list { - padding: 0 12px; - font-size: 0.9em; - color: #b0b0b0; -} - -.post .cat_list a { - color: #66b3ff; - text-decoration: none; -} - -.location a[href=""] { - color: white; -} - -.location a[href=""]:hover { - color: white; - text-decoration: none; - filter: none; -} - -.post .cat_list a:hover { - text-decoration: underline; -} - -.cat_list div { - display: inline-block; -} - -.cat_list::before { - content: 'Catagories: '; -} - -.post .cat_list::before { - content: ''; -} - -.post .cat_list div:nth-child(n+4) { - display: none; -} - -.event_body { - padding: 12px; - color: #c0c0c0; - flex-grow: 1; - overflow: hidden; - font-size: medium; - max-width: 650px; -} - -.post .event_body { - text-overflow: ellipsis; - display: -webkit-box; - line-clamp: 3; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - font-size: 0.9em; -} - -.event_info { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - background-color: rgba(30,30,30,0.5); - padding: 1px 1px 5px 1px; - margin: 0px 0px 0px 0px; -} - -.event_info > div { - text-align: center; - border-bottom: 1px solid #4a4a4a; - width: 100%; -} - -.event_info .cat_list { - padding-bottom: 5px; -} - -.post .event_info .cat_list { - width: initial; -} - -.event_info .location::before { - content: 'Location: '; - font-weight: bold; -} - -.event_info .event_link::before { - content: '> '; -} -.event_info .event_link::after { - content: ' <'; -} - -.post .event_poster { - position: absolute; - z-index: -1; - top: 0; - left: 0; - width: 100%; - height: 100%; - text-align: center; - background-color: black; -} - -.event_poster img { - width: 100%; - max-width: 600px; - box-sizing: border-box; -} - -.post .event_poster img { - height: 100%; - padding: 0; - margin: 0; - box-sizing: border-box; -} - -.post .event_box { - width: 100%; - height: 100%; - text-align: left; - border: none; -} - -.post .event_box > * { - display: none; -} - -.post:hover .event_info a, .post:hover .event_body { - z-index: 2; -} - -.event_box_link { - display: none; -} - -.post .event_box_link { - display: block; -} - -.event_img_link { - width: 100%; - max-width: 600px; - box-sizing: border-box; -} - -.post:hover .event_box { - background-color: rgba(0,0,0,0.7); -} - -.post:hover .event_box > * { - display: block; -} - -.post .event_box .event_poster { - display: block; -} - -.link_span { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} - -.post:hover .link_span { - z-index: 0; -} - -@media (max-width: 768px) { - .icofeed { - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); - } -} \ No newline at end of file diff --git a/werc/sites/events.thirdculture.top/archive.md b/werc/sites/events.thirdculture.top/archive.md deleted file mode 100644 index b9c4d8d..0000000 --- a/werc/sites/events.thirdculture.top/archive.md +++ /dev/null @@ -1 +0,0 @@ -Under construction \ No newline at end of file diff --git a/werc/sites/events.thirdculture.top/categories/all-ages.txt b/werc/sites/events.thirdculture.top/categories/all-ages.txt deleted file mode 100644 index 6bb908d..0000000 --- a/werc/sites/events.thirdculture.top/categories/all-ages.txt +++ /dev/null @@ -1,4 +0,0 @@ -/2024/11/13/0 -/2024/11/13/1 -/2024/11/13/3 -/2024/11/13/4 diff --git a/werc/sites/events.thirdculture.top/categories/classic-rock.txt b/werc/sites/events.thirdculture.top/categories/classic-rock.txt deleted file mode 100644 index 3cac9e6..0000000 --- a/werc/sites/events.thirdculture.top/categories/classic-rock.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/2 diff --git a/werc/sites/events.thirdculture.top/categories/doom-metal.txt b/werc/sites/events.thirdculture.top/categories/doom-metal.txt deleted file mode 100644 index 9e50ee0..0000000 --- a/werc/sites/events.thirdculture.top/categories/doom-metal.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/1 diff --git a/werc/sites/events.thirdculture.top/categories/indie.txt b/werc/sites/events.thirdculture.top/categories/indie.txt deleted file mode 100644 index d28df70..0000000 --- a/werc/sites/events.thirdculture.top/categories/indie.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/4 diff --git a/werc/sites/events.thirdculture.top/categories/metal.txt b/werc/sites/events.thirdculture.top/categories/metal.txt deleted file mode 100644 index 9e50ee0..0000000 --- a/werc/sites/events.thirdculture.top/categories/metal.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/1 diff --git a/werc/sites/events.thirdculture.top/categories/metalcore.txt b/werc/sites/events.thirdculture.top/categories/metalcore.txt deleted file mode 100644 index 12ec3b9..0000000 --- a/werc/sites/events.thirdculture.top/categories/metalcore.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/0 diff --git a/werc/sites/events.thirdculture.top/categories/punk.txt b/werc/sites/events.thirdculture.top/categories/punk.txt deleted file mode 100644 index 3cf334e..0000000 --- a/werc/sites/events.thirdculture.top/categories/punk.txt +++ /dev/null @@ -1,2 +0,0 @@ -/2024/11/13/0 -/2024/11/13/3 diff --git a/werc/sites/events.thirdculture.top/categories/rock.txt b/werc/sites/events.thirdculture.top/categories/rock.txt deleted file mode 100644 index 15ceba3..0000000 --- a/werc/sites/events.thirdculture.top/categories/rock.txt +++ /dev/null @@ -1,2 +0,0 @@ -/2024/11/13/2 -/2024/11/13/3 diff --git a/werc/sites/events.thirdculture.top/categories/shoegaze.txt b/werc/sites/events.thirdculture.top/categories/shoegaze.txt deleted file mode 100644 index d28df70..0000000 --- a/werc/sites/events.thirdculture.top/categories/shoegaze.txt +++ /dev/null @@ -1 +0,0 @@ -/2024/11/13/4 diff --git a/werc/sites/music.thirdculture.top/_werc/config b/werc/sites/music.thirdculture.top/_werc/config deleted file mode 100644 index 1e6eb6b..0000000 --- a/werc/sites/music.thirdculture.top/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -masterSite=thirdculture.top -siteTitle='Third Culture Music' -siteSubTitle='before the eyes have opened' diff --git a/werc/sites/music.thirdculture.top/index.md b/werc/sites/music.thirdculture.top/index.md deleted file mode 100644 index 82fad5e..0000000 --- a/werc/sites/music.thirdculture.top/index.md +++ /dev/null @@ -1,3 +0,0 @@ -Music -================================= -This page is under construction diff --git a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/config b/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/config deleted file mode 100755 index a252d5d..0000000 --- a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit nevada -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/style.css b/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/style.css deleted file mode 100755 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/blog/_werc/config b/werc/sites/ppl.thirdculture.top/MrsHughHammersley/blog/_werc/config deleted file mode 100755 index eb2b445..0000000 --- a/werc/sites/ppl.thirdculture.top/MrsHughHammersley/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=nevada -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/_header.md b/werc/sites/ppl.thirdculture.top/_header.md deleted file mode 100644 index 6fe5d54..0000000 --- a/werc/sites/ppl.thirdculture.top/_header.md +++ /dev/null @@ -1,7 +0,0 @@ -# Third Culture Members - -The following are the pages of third culture friends/members. - -![Ottawa Image](/_werc/pub/imgs/ottawa.png "main") - -Check out various blogs, galleries and other art done by third culture members by clicking the sites below (or on the sidebar). \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/_werc/config b/werc/sites/ppl.thirdculture.top/_werc/config index ed52285..9964f73 100644 --- a/werc/sites/ppl.thirdculture.top/_werc/config +++ b/werc/sites/ppl.thirdculture.top/_werc/config @@ -1,3 +1,3 @@ masterSite=thirdculture.top -siteTitle='Third Culture Collective' +siteTitle='third culture' siteSubTitle='the members of third culture' diff --git a/werc/sites/ppl.thirdculture.top/_werc/pub/imgs/ottawa.png b/werc/sites/ppl.thirdculture.top/_werc/pub/imgs/ottawa.png deleted file mode 100644 index c8a57f5..0000000 Binary files a/werc/sites/ppl.thirdculture.top/_werc/pub/imgs/ottawa.png and /dev/null differ diff --git a/werc/sites/ppl.thirdculture.top/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/_werc/pub/style.css deleted file mode 100644 index ea184f8..0000000 --- a/werc/sites/ppl.thirdculture.top/_werc/pub/style.css +++ /dev/null @@ -1,51 +0,0 @@ -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 { - display: flex; - justify-content: center; - align-items: center; - margin: 0; -} - -.grid-container { - display: flex; - flex-wrap: wrap; - gap: 5px; - width: 100%; - max-width: 100%; -} - -.grid-item { - display: flex; - justify-content: center; - align-items: center; - background-color: var(--bg-primary); - border: 2px solid var(--color-secondary); - width: fit-content; - min-width: 88px; - height: 31px; -} - -.grid-item:hover img { - color: white; - text-decoration: underline; -} - -.grid-item img { - max-width: 100%; - max-height: 100%; - color: var(--color-accent) -} diff --git a/werc/sites/ppl.thirdculture.top/adil/_werc/config b/werc/sites/ppl.thirdculture.top/adil/_werc/config deleted file mode 100644 index 8e9d786..0000000 --- a/werc/sites/ppl.thirdculture.top/adil/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit adil -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/adil/_werc/style.css b/werc/sites/ppl.thirdculture.top/adil/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/adil/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/0/index.md b/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/0/index.md deleted file mode 100644 index 663e0a1..0000000 --- a/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/0/index.md +++ /dev/null @@ -1,4 +0,0 @@ -Hello world -------------------------------------- - -Hi :3 diff --git a/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/1/index.md b/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/1/index.md deleted file mode 100644 index 68b5b7e..0000000 --- a/werc/sites/ppl.thirdculture.top/adil/blog/2024/11/13/1/index.md +++ /dev/null @@ -1,5 +0,0 @@ -The Beginnings -------------------------------------- - -I'm currently in the Q's room with Q, IanCobain and Vanne (my gf <3). Shooter is here too. Q just launched the site and is working very hard creating accounts and fixing bugs. I believe I made the first post and IanCobain made the first comment. Very exciting :D -Can't wait to see what everyone shares! diff --git a/werc/sites/ppl.thirdculture.top/adil/blog/_werc/config b/werc/sites/ppl.thirdculture.top/adil/blog/_werc/config deleted file mode 100644 index 170ae45..0000000 --- a/werc/sites/ppl.thirdculture.top/adil/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=adil -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/bea/_werc/config b/werc/sites/ppl.thirdculture.top/bea/_werc/config deleted file mode 100644 index 0daae42..0000000 --- a/werc/sites/ppl.thirdculture.top/bea/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit bea -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/bea/_werc/style.css b/werc/sites/ppl.thirdculture.top/bea/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/bea/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/bea/blog/_werc/config b/werc/sites/ppl.thirdculture.top/bea/blog/_werc/config deleted file mode 100644 index 2682eab..0000000 --- a/werc/sites/ppl.thirdculture.top/bea/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=bea -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/dulien/_werc/config b/werc/sites/ppl.thirdculture.top/dulien/_werc/config index e578055..7442da0 100644 --- a/werc/sites/ppl.thirdculture.top/dulien/_werc/config +++ b/werc/sites/ppl.thirdculture.top/dulien/_werc/config @@ -1,4 +1,2 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit dulien -css_file='_werc/style.css' +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/dulien/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/dulien/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/dulien/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/dulien/_werc/style.css b/werc/sites/ppl.thirdculture.top/dulien/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/dulien/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/dulien/blog/_werc/config b/werc/sites/ppl.thirdculture.top/dulien/blog/_werc/config deleted file mode 100644 index 9a9001f..0000000 --- a/werc/sites/ppl.thirdculture.top/dulien/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=dulien -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/geunf/_werc/config b/werc/sites/ppl.thirdculture.top/geunf/_werc/config index 8c7cd4e..7442da0 100644 --- a/werc/sites/ppl.thirdculture.top/geunf/_werc/config +++ b/werc/sites/ppl.thirdculture.top/geunf/_werc/config @@ -1,4 +1,2 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit geunf -css_file='_werc/style.css' +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/geunf/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/geunf/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/geunf/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/geunf/_werc/style.css b/werc/sites/ppl.thirdculture.top/geunf/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/geunf/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/geunf/blog/_werc/config b/werc/sites/ppl.thirdculture.top/geunf/blog/_werc/config deleted file mode 100644 index c9402c4..0000000 --- a/werc/sites/ppl.thirdculture.top/geunf/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=geunf -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/iancobain/_werc/config b/werc/sites/ppl.thirdculture.top/iancobain/_werc/config deleted file mode 100644 index b0ff5ee..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit iancobain -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/iancobain/_werc/style.css b/werc/sites/ppl.thirdculture.top/iancobain/_werc/style.css deleted file mode 100644 index 4e9a1d3..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md deleted file mode 100644 index 9bf3c05..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md +++ /dev/null @@ -1,13 +0,0 @@ -Where am I? -------------------------------------- - -November 11th, two thousand twenty four, in the parliament of the south. 9:58:31 on a Casio g-shock watch. Something significant is possible. - -![bane_of_the_deathless](http://up.thirdculture.top/aqFSIt6BGr/aktan.png) - -In the right hands, the holy chord may resonate with the new world. - - - - - diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/author b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/data b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/data deleted file mode 100644 index 2acdc79..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467438/data +++ /dev/null @@ -1,9 +0,0 @@ -Where am I? -------------------------------------- - -November 11th, two thousand twenty four, in the parliament of the south. 9:58:31 on a Casio g-shock watch. Something significant is possible. - -In the right hands, the holy chord will resonate with the new world. - -![title image](http://up.thirdculture.top/aqFSIt6BGr/aktan.png) - diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/author b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/data b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/data deleted file mode 100644 index a070560..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467556/data +++ /dev/null @@ -1,12 +0,0 @@ -Where am I? -------------------------------------- - -November 11th, two thousand twenty four, in the parliament of the south. 9:58:31 on a Casio g-shock watch. Something significant is possible. - -![bane_of_the_deathless](http://up.thirdculture.top/aqFSIt6BGr/aktan.png) - -In the right hands, the holy chord will resonate with the new world. - - - - diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/author b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/data b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/data deleted file mode 100644 index a070560..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467565/data +++ /dev/null @@ -1,12 +0,0 @@ -Where am I? -------------------------------------- - -November 11th, two thousand twenty four, in the parliament of the south. 9:58:31 on a Casio g-shock watch. Something significant is possible. - -![bane_of_the_deathless](http://up.thirdculture.top/aqFSIt6BGr/aktan.png) - -In the right hands, the holy chord will resonate with the new world. - - - - diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/author b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/data b/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/data deleted file mode 100644 index 9bf3c05..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/index.md_werc/dirdir/1731467601/data +++ /dev/null @@ -1,13 +0,0 @@ -Where am I? -------------------------------------- - -November 11th, two thousand twenty four, in the parliament of the south. 9:58:31 on a Casio g-shock watch. Something significant is possible. - -![bane_of_the_deathless](http://up.thirdculture.top/aqFSIt6BGr/aktan.png) - -In the right hands, the holy chord may resonate with the new world. - - - - - diff --git a/werc/sites/ppl.thirdculture.top/iancobain/blog/_werc/config b/werc/sites/ppl.thirdculture.top/iancobain/blog/_werc/config deleted file mode 100644 index 38d10d0..0000000 --- a/werc/sites/ppl.thirdculture.top/iancobain/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=iancobain -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/index.html b/werc/sites/ppl.thirdculture.top/index.html deleted file mode 100644 index 4fd074b..0000000 --- a/werc/sites/ppl.thirdculture.top/index.html +++ /dev/null @@ -1,37 +0,0 @@ -
-
-
- q -
-
- kaz -
-
- sean -
-
- dulien -
-
- geunf -
-
- mrshughhammersley -
-
- screenshare1112 -
-
- vanne -
-
- adil -
-
- iancobain -
-
- bea -
-
-
diff --git a/werc/sites/ppl.thirdculture.top/kaz/_werc/config b/werc/sites/ppl.thirdculture.top/kaz/_werc/config index 09c94c0..7442da0 100644 --- a/werc/sites/ppl.thirdculture.top/kaz/_werc/config +++ b/werc/sites/ppl.thirdculture.top/kaz/_werc/config @@ -1,4 +1,2 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit kaz -css_file='_werc/style.css' +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/kaz/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/kaz/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/kaz/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/kaz/_werc/style.css b/werc/sites/ppl.thirdculture.top/kaz/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/kaz/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/kaz/blog/_werc/config b/werc/sites/ppl.thirdculture.top/kaz/blog/_werc/config deleted file mode 100644 index a3b217f..0000000 --- a/werc/sites/ppl.thirdculture.top/kaz/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=kaz -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/nevada/_werc/config b/werc/sites/ppl.thirdculture.top/nevada/_werc/config new file mode 100644 index 0000000..7442da0 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/nevada/_werc/config @@ -0,0 +1,2 @@ +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/nevada/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/nevada/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/nevada/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/q/_images/q.jpg b/werc/sites/ppl.thirdculture.top/q/_images/q.jpg deleted file mode 100644 index 1d78fb1..0000000 Binary files a/werc/sites/ppl.thirdculture.top/q/_images/q.jpg and /dev/null differ diff --git a/werc/sites/ppl.thirdculture.top/q/_werc/config b/werc/sites/ppl.thirdculture.top/q/_werc/config index f5deac4..7442da0 100644 --- a/werc/sites/ppl.thirdculture.top/q/_werc/config +++ b/werc/sites/ppl.thirdculture.top/q/_werc/config @@ -1,4 +1,2 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit q -css_file='_werc/style.css' +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/q/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/q/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/q/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/q/_werc/style.css b/werc/sites/ppl.thirdculture.top/q/_werc/style.css deleted file mode 100644 index b69ac28..0000000 --- a/werc/sites/ppl.thirdculture.top/q/_werc/style.css +++ /dev/null @@ -1,47 +0,0 @@ -: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; -} \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md b/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md deleted file mode 100644 index 13ff846..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md +++ /dev/null @@ -1,7 +0,0 @@ -Launched third culture -------------------------------------- - -So many bugs in production to fix lol - -update: still bug hunting, I have a list now - diff --git a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/author b/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/author deleted file mode 100644 index bca70f3..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/author +++ /dev/null @@ -1 +0,0 @@ -q diff --git a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/data b/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/data deleted file mode 100644 index 13ff846..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731473731/data +++ /dev/null @@ -1,7 +0,0 @@ -Launched third culture -------------------------------------- - -So many bugs in production to fix lol - -update: still bug hunting, I have a list now - diff --git a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/author b/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/author deleted file mode 100644 index bca70f3..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/author +++ /dev/null @@ -1 +0,0 @@ -q diff --git a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/data b/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/data deleted file mode 100644 index 36c0718..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/2024/11/13/0/index.md_werc/dirdir/1731478648/data +++ /dev/null @@ -1,9 +0,0 @@ -Launched third culture -------------------------------------- - -So many bugs in production to fix lol - -update: still bug hunting, I have a list now - -update: did some good fixes goodnight - diff --git a/werc/sites/ppl.thirdculture.top/q/blog/_werc/config b/werc/sites/ppl.thirdculture.top/q/blog/_werc/config deleted file mode 100644 index fc4bea9..0000000 --- a/werc/sites/ppl.thirdculture.top/q/blog/_werc/config +++ /dev/null @@ -1,5 +0,0 @@ -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=q -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/q/index.md b/werc/sites/ppl.thirdculture.top/q/index.md deleted file mode 100644 index 138e965..0000000 --- a/werc/sites/ppl.thirdculture.top/q/index.md +++ /dev/null @@ -1,8 +0,0 @@ -# Q - -Guitarist and vocalist for moridori. - -![picture of me](_images/q.jpg) - -You can find my personal releases under the name morisuki sometimes as well :) - diff --git a/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/author b/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/author deleted file mode 100644 index bca70f3..0000000 --- a/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/author +++ /dev/null @@ -1 +0,0 @@ -q diff --git a/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/data b/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/data deleted file mode 100644 index 138e965..0000000 --- a/werc/sites/ppl.thirdculture.top/q/index.md_werc/dirdir/1731465268/data +++ /dev/null @@ -1,8 +0,0 @@ -# Q - -Guitarist and vocalist for moridori. - -![picture of me](_images/q.jpg) - -You can find my personal releases under the name morisuki sometimes as well :) - diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/config b/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/config deleted file mode 100755 index 6b1f83a..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit thomas -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/style.css b/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/style.css deleted file mode 100755 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/blog/_werc/config b/werc/sites/ppl.thirdculture.top/screenshare1112/blog/_werc/config deleted file mode 100755 index 9e95596..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=thomas -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md deleted file mode 100644 index 855147a..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md +++ /dev/null @@ -1,6 +0,0 @@ -screenshare - tom - PLANT, blog///// - -hi - - - diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/author b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/author deleted file mode 100644 index aef2455..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/author +++ /dev/null @@ -1 +0,0 @@ -screenshare1112 diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/data b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/data deleted file mode 100644 index d34b367..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549247/data +++ /dev/null @@ -1 +0,0 @@ -In class with Zack, test run #1. Love - SCREENSHARE diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/author b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/author deleted file mode 100644 index aef2455..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/author +++ /dev/null @@ -1 +0,0 @@ -screenshare1112 diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/data b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/data deleted file mode 100644 index 139597f..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549269/data +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/author b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/author deleted file mode 100644 index aef2455..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/author +++ /dev/null @@ -1 +0,0 @@ -screenshare1112 diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/data b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/data deleted file mode 100644 index e5a8e7c..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549873/data +++ /dev/null @@ -1,3 +0,0 @@ -blog/ - - diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/author b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/author deleted file mode 100644 index aef2455..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/author +++ /dev/null @@ -1 +0,0 @@ -screenshare1112 diff --git a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/data b/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/data deleted file mode 100644 index 855147a..0000000 --- a/werc/sites/ppl.thirdculture.top/screenshare1112/index.md_werc/dirdir/1731549920/data +++ /dev/null @@ -1,6 +0,0 @@ -screenshare - tom - PLANT, blog///// - -hi - - - diff --git a/werc/sites/ppl.thirdculture.top/sean/_werc/config b/werc/sites/ppl.thirdculture.top/sean/_werc/config deleted file mode 100644 index 6d727ab..0000000 --- a/werc/sites/ppl.thirdculture.top/sean/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit sean -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/sean/_werc/style.css b/werc/sites/ppl.thirdculture.top/sean/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/sean/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/sean/blog/_werc/config b/werc/sites/ppl.thirdculture.top/sean/blog/_werc/config deleted file mode 100644 index 63c1d39..0000000 --- a/werc/sites/ppl.thirdculture.top/sean/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=sean -blogTitle='' -blogDesc='' diff --git a/werc/sites/ppl.thirdculture.top/sitemap.gz b/werc/sites/ppl.thirdculture.top/sitemap.gz deleted file mode 100644 index 81975a4..0000000 Binary files a/werc/sites/ppl.thirdculture.top/sitemap.gz and /dev/null differ diff --git a/werc/sites/ppl.thirdculture.top/sitemap.txt b/werc/sites/ppl.thirdculture.top/sitemap.txt deleted file mode 100644 index e55e55c..0000000 --- a/werc/sites/ppl.thirdculture.top/sitemap.txt +++ /dev/null @@ -1,39 +0,0 @@ -http://ppl.thirdculture.top/MrsHughHammersley/ -http://ppl.thirdculture.top/MrsHughHammersley/blog/ -http://ppl.thirdculture.top/adil/ -http://ppl.thirdculture.top/adil/blog/ -http://ppl.thirdculture.top/adil/blog/2024/ -http://ppl.thirdculture.top/adil/blog/2024/11/ -http://ppl.thirdculture.top/adil/blog/2024/11/13/ -http://ppl.thirdculture.top/adil/blog/2024/11/13/0/ -http://ppl.thirdculture.top/adil/blog/2024/11/13/1/ -http://ppl.thirdculture.top/bea/ -http://ppl.thirdculture.top/bea/blog/ -http://ppl.thirdculture.top/dulien/ -http://ppl.thirdculture.top/dulien/blog/ -http://ppl.thirdculture.top/geunf/ -http://ppl.thirdculture.top/geunf/blog/ -http://ppl.thirdculture.top/iancobain/ -http://ppl.thirdculture.top/iancobain/blog/ -http://ppl.thirdculture.top/iancobain/blog/2024/ -http://ppl.thirdculture.top/iancobain/blog/2024/11/ -http://ppl.thirdculture.top/iancobain/blog/2024/11/13/ -http://ppl.thirdculture.top/iancobain/blog/2024/11/13/0-dick_and_balls/ -http://ppl.thirdculture.top/kaz/ -http://ppl.thirdculture.top/kaz/blog/ -http://ppl.thirdculture.top/q/ -http://ppl.thirdculture.top/q/blog/ -http://ppl.thirdculture.top/q/blog/2024/ -http://ppl.thirdculture.top/q/blog/2024/11/ -http://ppl.thirdculture.top/q/blog/2024/11/13/ -http://ppl.thirdculture.top/q/blog/2024/11/13/0/ -http://ppl.thirdculture.top/screenshare1112/ -http://ppl.thirdculture.top/screenshare1112/blog/ -http://ppl.thirdculture.top/sean/ -http://ppl.thirdculture.top/sean/blog/ -http://ppl.thirdculture.top/vanne/ -http://ppl.thirdculture.top/vanne/blog/ -http://ppl.thirdculture.top/vanne/blog/2024/ -http://ppl.thirdculture.top/vanne/blog/2024/11/ -http://ppl.thirdculture.top/vanne/blog/2024/11/13/ -http://ppl.thirdculture.top/vanne/blog/2024/11/13/0/ diff --git a/werc/sites/ppl.thirdculture.top/thomas/_werc/config b/werc/sites/ppl.thirdculture.top/thomas/_werc/config new file mode 100644 index 0000000..7442da0 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/thomas/_werc/config @@ -0,0 +1,2 @@ +conf_enable_blog +conf_enable_wiki \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/thomas/_werc/pub/style.css b/werc/sites/ppl.thirdculture.top/thomas/_werc/pub/style.css new file mode 100644 index 0000000..8b1af38 --- /dev/null +++ b/werc/sites/ppl.thirdculture.top/thomas/_werc/pub/style.css @@ -0,0 +1 @@ +/* Put custom styles here */ \ No newline at end of file diff --git a/werc/sites/ppl.thirdculture.top/vanne/_werc/config b/werc/sites/ppl.thirdculture.top/vanne/_werc/config deleted file mode 100644 index f719ea0..0000000 --- a/werc/sites/ppl.thirdculture.top/vanne/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit vanne -css_file='_werc/style.css' diff --git a/werc/sites/ppl.thirdculture.top/vanne/_werc/style.css b/werc/sites/ppl.thirdculture.top/vanne/_werc/style.css deleted file mode 100644 index ab6602e..0000000 --- a/werc/sites/ppl.thirdculture.top/vanne/_werc/style.css +++ /dev/null @@ -1,39 +0,0 @@ -: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; -} diff --git a/werc/sites/ppl.thirdculture.top/vanne/blog/2024/11/13/0/index.md b/werc/sites/ppl.thirdculture.top/vanne/blog/2024/11/13/0/index.md deleted file mode 100644 index 0689cb6..0000000 --- a/werc/sites/ppl.thirdculture.top/vanne/blog/2024/11/13/0/index.md +++ /dev/null @@ -1,12 +0,0 @@ -☨ -------------------------------------- - -Vanne here. - -Third culture is too. - -Thank you for this opportunity, Q. - -Good things to come. - --☨ diff --git a/werc/sites/ppl.thirdculture.top/vanne/blog/_werc/config b/werc/sites/ppl.thirdculture.top/vanne/blog/_werc/config deleted file mode 100644 index 64d603a..0000000 --- a/werc/sites/ppl.thirdculture.top/vanne/blog/_werc/config +++ /dev/null @@ -1,6 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -conf_blog_editors=vanne -blogTitle='' -blogDesc='' diff --git a/werc/sites/social.thirdculture.top/_werc/config b/werc/sites/social.thirdculture.top/_werc/config deleted file mode 100644 index 3b03c75..0000000 --- a/werc/sites/social.thirdculture.top/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -masterSite=thirdculture.top -siteTitle='Third Culture Socials' -siteSubTitle='take some time' diff --git a/werc/sites/social.thirdculture.top/index.md b/werc/sites/social.thirdculture.top/index.md deleted file mode 100644 index 2188fc0..0000000 --- a/werc/sites/social.thirdculture.top/index.md +++ /dev/null @@ -1,3 +0,0 @@ -Socials -================================= -This page is under construction diff --git a/werc/sites/thirdculture.top/_files/uploaded/cait.png b/werc/sites/thirdculture.top/_files/uploaded/cait.png deleted file mode 100644 index 1343405..0000000 Binary files a/werc/sites/thirdculture.top/_files/uploaded/cait.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_header.md b/werc/sites/thirdculture.top/_header.md index 3631f90..5a0973b 100644 --- a/werc/sites/thirdculture.top/_header.md +++ b/werc/sites/thirdculture.top/_header.md @@ -1,14 +1,8 @@ -# Home of the *third culture* collective - -An art collective formed in Ottawa, ON. +**Home of the *third culture* collective**. > "Always leave a place better than when you came" Born from the need to express in a setting of isolation and normativity. We seek to be a resilient center for those who search to better themselves and the collapsing cultures around them through **honest expression**. ![Ruins](/_werc/pub/imgs/dither_ruins.png "main") - -Feel free to explore the site and learn about the collective. We are grateful you paid a visit. Thank you. - -*Note: This site is currently heavily under construction lots of things will change in the near future so if you found this place now you're kinda early to the party, buts thats kinda cool huh?*
diff --git a/werc/sites/thirdculture.top/_trust/join.md b/werc/sites/thirdculture.top/_trust/join.md deleted file mode 100644 index f161b8d..0000000 --- a/werc/sites/thirdculture.top/_trust/join.md +++ /dev/null @@ -1,19 +0,0 @@ -# Joining third culture - -The third culture website [thirdculture.top](https://thirdculture.top) is a community/collaborative space. A place where you can contribute towards the collective as well as provide an alternative space for art of any kind. Treat it as your own personal website, we try to give you the most control possible to that end. - -This website is very much under construction and a lot of pages and styles may change in the future so just keep that in mind as we progress with the development of this site. - -## Trust - -Third culture is built on a system of trust, being a contributor you have a responsibility to maintain that trust. For example there may be some things that don't work as intended, or break, or could be exploited. If you discover a bug or an exploit, please message/talk to me (q) directly or send an email to moridori@disroot.org instead of using it maliciously. As a member of third culture, this project is yours as much as it is ours. - -## Technicals - -Third culture is built using the [werc](https://werc.cat-v.org/) framework that uses [plan9](https://plan9.io/plan9/) core utils on the backend. This framework is what allows you to make changes directly using the site with your login, instead of just being a static site (like most other sites). - -The reasons for choosing such a system come from values of minimalism and simplicity. This is done to prioritize your personal expression and give you almost full control over the pages you maintain. - -## Joining - -To join, all you have to do is use [this page](/_tools/hash) to generate a password hash for your account. A password hash is a one way encrypted version of your password (meaning we can't get your password from the encrypted text). We have you generate the hashes so we don't need your password in plaintext to create your account. Although, we still suggest you use a password that's not tied to any other account. Send the details to me, Q, or moridori@disroot.org, and I'll let you know when your account is created and you can log in. diff --git a/werc/sites/thirdculture.top/_trust/todo.md b/werc/sites/thirdculture.top/_trust/todo.md deleted file mode 100644 index 1f8d7e7..0000000 --- a/werc/sites/thirdculture.top/_trust/todo.md +++ /dev/null @@ -1,31 +0,0 @@ -# TODO - -* Create file upload solution. Works with wiki app to allow file upload. Also repository just to upload media for use in more general cases like blog posts and what not. -* Create a [cerca](https://cblgh.org/cerca/) forum -* Create IRC chat -* Create music page -* Create visual page -* Create social page -* Create style guide -* Create font management system (font upload and use) -* Peertube instance for videos -* Populate love page -* Populate wiki -* Create custom user styles as templates -* Create akkoma instance?? - -# Bugs - -* FIX PERMISSION ISSUE WITH RSYNC -* CREATE DEV OPS -* fix utc time -* css not keeping for blog or subpages on personal site -* cookie that works between subdomains -* ico order things by post date -* ico scale title based on side -* ico common locations clicks -* better editing or events page similar to how created -* make clear direction for what pages are for -* mobile needs a hella facelift -* make script for adding new users given hashes and username -* make script for easily updating site pulling new changes and then apply local ones then pushing to server diff --git a/werc/sites/thirdculture.top/_trust/welcome.md b/werc/sites/thirdculture.top/_trust/welcome.md deleted file mode 100644 index e27f033..0000000 --- a/werc/sites/thirdculture.top/_trust/welcome.md +++ /dev/null @@ -1,26 +0,0 @@ -# Welcome to third culture - -Welcome to third culture, with an account you can now log in and make changes to personal pages, wiki and other various pages. To log in all you have to do is click the "User Login" link at the bottom of any page. You only have to do this once per subdomain (meaning to make changes on thirdcultre.top you have to login once and then to make changes on ppl.thirdculture.top you have to log in again on one of those pages) - -![Supporting log in image](/_werc/pub/imgs/loginguide.png "main") - -With an account you have access to edit the wiki, create guides, control over your own members page (at [ppl.thirdculture.top](https://ppl.thirdculture.top)) and access to various other pages. - -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. 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. - -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 `https://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 -``` -![image description](https://up.thridculture.top/9Rz0GsM4Mt/gaming.png) -``` -Centered -``` -![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. diff --git a/werc/sites/thirdculture.top/_werc/config b/werc/sites/thirdculture.top/_werc/config index be084c7..7b02382 100644 --- a/werc/sites/thirdculture.top/_werc/config +++ b/werc/sites/thirdculture.top/_werc/config @@ -1,6 +1,5 @@ -siteTitle='Third Culture' +siteTitle='third culture' siteSubTitle='what is, was, and will be' conf_enable_blog news/ -blogTitle='Third Culture News' -blogDesc='Updates from the Third Culture collective' +blogTitle='News' conf_blog_only_pull=1 diff --git a/werc/sites/thirdculture.top/_werc/lib/blagh/new_post.tpl b/werc/sites/thirdculture.top/_werc/lib/blagh/new_post.tpl index 75c0efa..47dfb29 100644 --- a/werc/sites/thirdculture.top/_werc/lib/blagh/new_post.tpl +++ b/werc/sites/thirdculture.top/_werc/lib/blagh/new_post.tpl @@ -1,6 +1,6 @@
% notices_handler -
+
Submit a new blog post diff --git a/werc/sites/thirdculture.top/_werc/lib/dirdir/edit.tpl b/werc/sites/thirdculture.top/_werc/lib/dirdir/edit.tpl index 0eff18a..6484d1c 100755 --- a/werc/sites/thirdculture.top/_werc/lib/dirdir/edit.tpl +++ b/werc/sites/thirdculture.top/_werc/lib/dirdir/edit.tpl @@ -2,25 +2,28 @@

Editing: %($req_path%)


+
+ Editing wiki with path: %($req_path%) -
+
+
DirDir documents are written using Markdown syntax. +
% if(! ~ $"post_arg_dirdir_preview '') {

Preview:

-% echo $post_arg_edit_text | dos2unix | $formatter +% echo $post_arg_edit_text | $formatter
% } diff --git a/werc/sites/thirdculture.top/_werc/lib/footer.inc b/werc/sites/thirdculture.top/_werc/lib/footer.inc index 666f52a..fcc0008 100644 --- a/werc/sites/thirdculture.top/_werc/lib/footer.inc +++ b/werc/sites/thirdculture.top/_werc/lib/footer.inc @@ -1,3 +1,5 @@ -
+ +
diff --git a/werc/sites/thirdculture.top/_werc/lib/top_bar.inc b/werc/sites/thirdculture.top/_werc/lib/top_bar.inc index 07afa32..dd81523 100644 --- a/werc/sites/thirdculture.top/_werc/lib/top_bar.inc +++ b/werc/sites/thirdculture.top/_werc/lib/top_bar.inc @@ -1,12 +1,13 @@
[ - home | - members | - events | - music | - social | - visual | - wiki + home | + members | + music | + shelter | + radio | + visual | + basement | + wiki ]
@@ -15,8 +16,7 @@ moridori | 4mdv | faal | - los3r | - ps + los3r ]
diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/2kkidori.png b/werc/sites/thirdculture.top/_werc/pub/imgs/2kkidori.png deleted file mode 100644 index b295726..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/2kkidori.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/4mdv.jpeg b/werc/sites/thirdculture.top/_werc/pub/imgs/4mdv.jpeg deleted file mode 100644 index 1a935d6..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/4mdv.jpeg and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/cables.png b/werc/sites/thirdculture.top/_werc/pub/imgs/cables.png deleted file mode 100644 index ff003dc..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/cables.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/church.png b/werc/sites/thirdculture.top/_werc/pub/imgs/church.png deleted file mode 100644 index d447626..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/church.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/clutter.png b/werc/sites/thirdculture.top/_werc/pub/imgs/clutter.png deleted file mode 100644 index b8d3465..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/clutter.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/drive.png b/werc/sites/thirdculture.top/_werc/pub/imgs/drive.png deleted file mode 100644 index dc61f19..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/drive.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/faal.png b/werc/sites/thirdculture.top/_werc/pub/imgs/faal.png deleted file mode 100644 index e2b9c35..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/faal.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/loginguide.png b/werc/sites/thirdculture.top/_werc/pub/imgs/loginguide.png deleted file mode 100644 index 0ea79f5..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/loginguide.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/los3r.jpeg b/werc/sites/thirdculture.top/_werc/pub/imgs/los3r.jpeg deleted file mode 100644 index a41cc23..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/los3r.jpeg and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/news.png b/werc/sites/thirdculture.top/_werc/pub/imgs/news.png deleted file mode 100644 index 5c55cce..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/news.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/p2.png b/werc/sites/thirdculture.top/_werc/pub/imgs/p2.png deleted file mode 100644 index 758c70d..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/p2.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/patch.png b/werc/sites/thirdculture.top/_werc/pub/imgs/patch.png deleted file mode 100644 index edc23fd..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/patch.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/publicsector.png b/werc/sites/thirdculture.top/_werc/pub/imgs/publicsector.png deleted file mode 100644 index 5c81bdc..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/publicsector.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/saya.png b/werc/sites/thirdculture.top/_werc/pub/imgs/saya.png deleted file mode 100644 index 3bffba7..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/saya.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/_werc/pub/imgs/wires.png b/werc/sites/thirdculture.top/_werc/pub/imgs/wires.png deleted file mode 100644 index 8e1a68d..0000000 Binary files a/werc/sites/thirdculture.top/_werc/pub/imgs/wires.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/about/index.md b/werc/sites/thirdculture.top/about/index.md index 2e557d4..dddf063 100644 --- a/werc/sites/thirdculture.top/about/index.md +++ b/werc/sites/thirdculture.top/about/index.md @@ -1,12 +1,15 @@ # About: Third Culture -**Third Culture** is an artist collective started by [moridori](https://moridori.xyz), [los3r](https://www.instagram.com/los3333r/) and [public sector](https://www.instagram.com/publicsector.zip/) in 2024. +**Third Culture** is an artist collective started by [moridori](https://moridori.xyz) and [los3r](https://www.instagram.com/los3333r/) in 2024. We currently operate out of Ottawa ON, Canada. ![Image of members chilling](/_werc/pub/imgs/chillin.png "main") -**Third Culture** was born out of the need to connect passionate and honest artists in an otherwise isolated landscape (real life and online). Our desire is to build a third place that supports creation and artistry as well as intermingles it with other forms. For many of us, we feel a lack of belonging, scattered passions yet without a shared foundation. This is what stifles many modes of artistry and keeps us isolated from each other and potential friends alike. Third Culture seeks to remedy this. To us real impact is not an increasing number on a screen but tangible change you make in yourself and others lives and seeing it first hand. We want to bridge this gap and allow for free and honest expression to flow through our senses and not locked in our hearts. Leave beautiful ruins. +**Third Culture** was born out of the need to connect passionate and honest artists in an otherwise isolated landscape (real life and online). Our desire is to build a third place that supports creation and artistry as well as intermingles it with other forms. For many of us, we feel a lack of belonging, scattered passions yet without a shared foundation. This is what stifles many modes of artistry and keeps us isolated from each other and potential friends alike. Third Culture seeks to remedy this. To us real impact is not an increasing number on a screen but tangible change you make in yourself and others lives and seeing it first hand. We want to bridge this gap and allow for free and honest expression to flow through our senses and not locked in our hearts. We may never reach these goals but that is not the point, the goal is to try and when it comes down to it convince ourselves we've left beautiful ruins. -We are a joint project with the [public sector](https://www.instagram.com/publicsector.zip/) collective/label. +**Third Culture** members: -**Third Culture** members? Check out the [collective page](/collective). +* [moridori](https://moridori.xyz/) +* [los3r](https://www.instagram.com/los3333r/) +* [Future as a Letterbomber](https://moridori.xyz/letterbomber/) +* [498,516,889 Dead Virgins](https://deadcel.me/) diff --git a/werc/sites/thirdculture.top/collective/4mdv/_werc/4mdvdrive.png b/werc/sites/thirdculture.top/collective/4mdv/_werc/4mdvdrive.png deleted file mode 100644 index 34bb067..0000000 Binary files a/werc/sites/thirdculture.top/collective/4mdv/_werc/4mdvdrive.png and /dev/null differ diff --git a/werc/sites/thirdculture.top/collective/4mdv/_werc/config b/werc/sites/thirdculture.top/collective/4mdv/_werc/config deleted file mode 100644 index cd9a9e4..0000000 --- a/werc/sites/thirdculture.top/collective/4mdv/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -extraHeaders='' -conf_enable_wiki -wiki_editors_groups=mori diff --git a/werc/sites/thirdculture.top/collective/4mdv/_werc/style.css b/werc/sites/thirdculture.top/collective/4mdv/_werc/style.css deleted file mode 100644 index 3bdc15a..0000000 --- a/werc/sites/thirdculture.top/collective/4mdv/_werc/style.css +++ /dev/null @@ -1,74 +0,0 @@ -@font-face { - font-family: "redact"; - src: - url("/pub/style/fonts/Redaction_50-Regular.woff2") format('woff2') -} - -:root { - /* Main color scheme */ - --color-primary: ghostwhite; - --color-secondary: darkred; - --color-accent: cornflowerblue; - - /* Background colors */ - --bg-primary: #000000ff; - --bg-secondary: #000000ff; - - /* Text colors */ - --text-primary: ghostwhite; - --text-secondary: #989898ff; - --text-accent: darkred; - - /* Header colours */ - --header-primary:darkred; - --header-secondary: darkred; - --header-tertiary: cornflowerblue; - --header-other: ghostwhite; - - /* Link colors */ - --link-color: #1d75d4ff; - --link-hover: #5B3D8Aff; - - /* Border colors */ - --border-primary: #111111ff; - --border-secondary: #030303ff; - --border-image: #000300ff; - - /* Special purpose colors */ - --code-color: #18A02Cff; - --header-bg: darkred; - --header-text: #030303ff; - - /* Font families */ - --font-headers: redact, sans-serif; - --font-body: monospace; -} - -body { - background: - linear-gradient(to right, rgba(0, 5, 10, 0.9), rgba(0, 5, 5, 0.9)), - url('4mdvdrive.png'), - var(--bg-primary); - background-color: var(--bg-primary); - background-position: center center; - background-size: 110vh 75vh; - background-repeat: repeat-y; - margin: 0; - padding: 0; - font-size: 110%; - font-family: monospace; -} - -header h1 .headerLink { - font-family: redact, sans-serif; - font-size: 105%; -} - -article h1 { - font-family: redact, sans-serif; - font-size: 220%; -} - -article { - text-align: center; -} \ No newline at end of file diff --git a/werc/sites/thirdculture.top/collective/4mdv/index.md b/werc/sites/thirdculture.top/collective/4mdv/index.md deleted file mode 100644 index e088afb..0000000 --- a/werc/sites/thirdculture.top/collective/4mdv/index.md +++ /dev/null @@ -1,7 +0,0 @@ -498,516,889 Dead Virgins -============================= -Incelcore band from the worst capital. Still blackpilled despite all efforts. Broken heart society. - -Main Link: \[ [deadcel.me](https://deadcel.me) \] - - \ No newline at end of file diff --git a/werc/sites/thirdculture.top/collective/faal/_werc/config b/werc/sites/thirdculture.top/collective/faal/_werc/config deleted file mode 100644 index cd9a9e4..0000000 --- a/werc/sites/thirdculture.top/collective/faal/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -extraHeaders='' -conf_enable_wiki -wiki_editors_groups=mori diff --git a/werc/sites/thirdculture.top/collective/faal/_werc/style.css b/werc/sites/thirdculture.top/collective/faal/_werc/style.css deleted file mode 100644 index 21d5688..0000000 --- a/werc/sites/thirdculture.top/collective/faal/_werc/style.css +++ /dev/null @@ -1,75 +0,0 @@ -@font-face { - font-family: "director"; - src: - url("/pub/style/fonts/Director-Regular.woff2") format('woff2'), - url("/pub/style/fonts/Director-Regular.woff") format('woff'); -} - -:root { - /* Main color scheme */ - --color-primary: #E4F0FEff; - --color-secondary: rgb(148, 50, 50); - --color-accent: #970101ff; - - /* Background colors */ - --bg-primary: #E0C9A6ff; - --bg-secondary: #cca76dff; - - /* Text colors */ - --text-primary: #000000ff; - --text-secondary: #989898ff; - --text-accent: rgb(148, 50, 50); - - /* Header colours */ - --header-primary:rgb(148, 50, 50); - --header-secondary: rgb(148, 50, 50); - --header-tertiary: #970101ff; - --header-other: #000000ff; - - /* Link colors */ - --link-color: #1d75d4ff; - --link-hover: #5B3D8Aff; - - /* Border colors */ - --border-primary: rgb(148, 50, 50); - --border-secondary: #030303ff; - --border-image: #000300ff; - - /* Special purpose colors */ - --code-color: #18A02Cff; - --header-bg: rgb(148, 50, 50); - --header-text: #030303ff; - - /* Font families */ - --font-headers: director, sans-serif; - --font-body: serif; -} - -body { - background: var(--bg-primary); - background-color: var(--bg-primary); - background-position: center center; - background-size: 110vh 75vh; - background-repeat: repeat-y; - margin: 0; - padding: 0; - font-size: 90%; - font-family: serif; -} - -header h1 .headerLink { - font-family: director, sans-serif; -} - -article h1 { - font-family: director, sans-serif; -} - -article { - text-align: center; -} - -article img { - border: 0.4em solid var(--border-image); - background-color: var(--border-image) !important; -} \ No newline at end of file diff --git a/werc/sites/thirdculture.top/collective/faal/index.md b/werc/sites/thirdculture.top/collective/faal/index.md deleted file mode 100644 index 471237b..0000000 --- a/werc/sites/thirdculture.top/collective/faal/index.md +++ /dev/null @@ -1,9 +0,0 @@ -Future As A Letterbomber -============================= -Future As A Letterbomber is a post-hardcore band. -*No price is too high to pay for the privilege of owning yourself* - -Main Link: \[ [website](https://moridori.xyz/letterbomber/) \] - - - diff --git a/werc/sites/thirdculture.top/collective/index.md b/werc/sites/thirdculture.top/collective/index.md deleted file mode 100644 index 49e3500..0000000 --- a/werc/sites/thirdculture.top/collective/index.md +++ /dev/null @@ -1,25 +0,0 @@ -# Third Culture Collective - -Our sounds, drawings, writing all support a grander purpose towards community. Ottawa (and our bedrooms) are cold, dark, quiet and lonely places it doesn't always have to be this way. Together we can build a place to shelter each other from the harsh systems and hierarchies we have found ourselves forced under and increasingly tortured by. Break through and find motivation in ourselves and common ground with others. Somewhere we actually belong. - -![Parliament 2](/_werc/pub/imgs/p2.png "main") - -## Members - -* [moridori](moridori) -* [los3r](los3r) -* [Future as a Letterbomber](faal) -* [498,516,889 Dead Virgins](4mdv) -* [Public Sector](public_sector) - -A larger members list can be found on the members page along with their works. - -## Connect - -You can subscribe to our [news](//news) feed with RSS and I'll make a mailing list one of these days too! - -I would also suggest following the people/bands that make up third culture as it grows. They are the engine. - -## Get In Touch - -You can talk over email for more formal communication [ moridori (at) disroot.org ] alternatively try the forum, the fediverse, or irc (most of these will come when I get to self hosting them). diff --git a/werc/sites/thirdculture.top/collective/los3r/_werc/config b/werc/sites/thirdculture.top/collective/los3r/_werc/config deleted file mode 100644 index d30532a..0000000 --- a/werc/sites/thirdculture.top/collective/los3r/_werc/config +++ /dev/null @@ -1,5 +0,0 @@ -extraHeaders='' -conf_enable_wiki -conf_enable_cssedit loser -css_file='_werc/style.css' -wiki_editors_groups=loser diff --git a/werc/sites/thirdculture.top/collective/los3r/_werc/style.css b/werc/sites/thirdculture.top/collective/los3r/_werc/style.css deleted file mode 100644 index 3747050..0000000 --- a/werc/sites/thirdculture.top/collective/los3r/_werc/style.css +++ /dev/null @@ -1,82 +0,0 @@ -@font-face { - font-family: "man"; - src: - url("/pub/style/fonts/Manusquared-Bold.woff2") format('woff2'), - url("/pub/style/fonts/Manusquared-Bold.woff") format('woff'); -} -:root { - /* Main color scheme */ - --color-primary: #000000ff; - --color-secondary: #5B3D8Aff; - --color-accent: rgb(25, 59, 121); - - /* Background colors */ - --bg-primary: #d6d6d6ff; - --bg-secondary: #c2c2c2ff; - - /* Text colors */ - --text-primary: #000000ff; - --text-secondary: #989898ff; - --text-accent: #5B3D8Aff; - - /* Header colours */ - --header-primary:#5B3D8Aff; - --header-secondary: #5B3D8Aff; - --header-tertiary: rgb(25, 59, 121); - --header-other: #000000ff; - - /* Link colors */ - --link-color: rgb(31, 76, 160); - --link-hover: #5B3D8Aff; - - /* Border colors */ - --border-primary: #000000ff; - --border-secondary: #030303ff; - --border-image: #000300ff; - - /* Special purpose colors */ - --code-color: #18A02Cff; - --header-bg: #5B3D8Aff; - --header-text: #030303ff; - - /* Font families */ - --font-headers: man, sans-serif; - --font-body: verdana, helvetica, arial, sans-serif; -} - -body { - background: var(--bg-primary); - background-color: var(--bg-primary); - background-position: center center; - background-size: 110vh 75vh; - background-repeat: repeat-y; - margin: 0; - padding: 0; - font-size: 90%; - font-family: verdana, sans-serif; -} - -header h1 .headerLink { - font-family: man, sans-serif; -} - -article h1 { - font-family: man, sans-serif; -} - -article { - text-align: center; -} - -article img { - border: 0.4em solid var(--border-image); - background-color: var(--border-image) !important; -} - - - - - - - - diff --git a/werc/sites/thirdculture.top/collective/los3r/index.md b/werc/sites/thirdculture.top/collective/los3r/index.md deleted file mode 100644 index 38c6149..0000000 --- a/werc/sites/thirdculture.top/collective/los3r/index.md +++ /dev/null @@ -1,17 +0,0 @@ -Los3r -============================= -i dont want to b a los3r - -Main Link: \[ [Instagram](https://www.instagram.com/los3333r/) \] - - - -\[ [Bandcamp](https://los3r.bandcamp.com/music) \] -\[ [Youtube](https://www.youtube.com/@los3333r) \] -\[ [Soundcloud](https://soundcloud.com/los3333r) \] -\[ [Spotify](https://open.spotify.com/artist/1Ue0AwMk9yZMuwrlFDaJzc) \] -\[ [Instagram](https://www.instagram.com/los3333r/) \] -\[ [Apple](https://music.apple.com/us/artist/los3r/1661508353) \] - - - diff --git a/werc/sites/thirdculture.top/collective/moridori/_werc/config b/werc/sites/thirdculture.top/collective/moridori/_werc/config deleted file mode 100644 index cd9a9e4..0000000 --- a/werc/sites/thirdculture.top/collective/moridori/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -extraHeaders='' -conf_enable_wiki -wiki_editors_groups=mori diff --git a/werc/sites/thirdculture.top/collective/moridori/_werc/style.css b/werc/sites/thirdculture.top/collective/moridori/_werc/style.css deleted file mode 100644 index 6cc26dd..0000000 --- a/werc/sites/thirdculture.top/collective/moridori/_werc/style.css +++ /dev/null @@ -1,77 +0,0 @@ -@font-face { - font-family: "threetwo"; - src: - url("/pub/style/fonts/3270-Regular.woff") format('woff'); -} - -:root { - /* Main color scheme */ - --color-primary: #ffffffff; - --color-secondary: #d478eeff; - --color-accent: #303030ff; - - /* Background colors */ - --bg-primary: #000000ff; - --bg-secondary: #000000ff; - - /* Text colors */ - --text-primary: #ffffffff; - --text-secondary: #989898ff; - --text-accent: #d478eeff; - - /* Header colours */ - --header-primary:#d478eeff; - --header-secondary: #d478eeff; - --header-tertiary: #303030ff; - --header-other: #ffffffff; - - /* Link colors */ - --link-color: #1d75d4ff; - --link-hover: #5B3D8Aff; - - /* Border colors */ - --border-primary: rgb(10, 10, 10); - --border-secondary: #030303ff; - --border-image: #303030ff; - - /* Special purpose colors */ - --code-color: #18A02Cff; - --header-bg: #d478eeff; - --header-text: #030303ff; - - /* Font families */ - --font-headers: threetwo, sans-serif; - --font-body: monospace; -} - -body { - background: var(--bg-primary); - background-color: var(--bg-primary); - background-position: center center; - background-size: 110vh 75vh; - background-repeat: repeat-y; - margin: 0; - padding: 0; - font-size: 110%; - font-family: monospace; -} - -header h1 .headerLink { - font-family: threetwo, sans-serif; - font-size: 120%; -} - -article h1 { - font-family: threetwo, sans-serif; - font-size: 260%; - margin-top: 10px; -} - -article { - text-align: center; -} - -article img { - border: 0.4em solid var(--border-image); - background-color: var(--bg-primary) !important; -} \ No newline at end of file diff --git a/werc/sites/thirdculture.top/collective/moridori/index.md b/werc/sites/thirdculture.top/collective/moridori/index.md deleted file mode 100644 index 7658f76..0000000 --- a/werc/sites/thirdculture.top/collective/moridori/index.md +++ /dev/null @@ -1,12 +0,0 @@ -moridori -============================= -Emotional hardcore's wonderful death. -Main Link: \[ [https://moridori.xyz](https://moridori.xyz) \] - - - -\[ [Music](https://moridori.xyz/#recordings) \] -\[ [Youtube](https://www.youtube.com/@killmoridori) \] - - - diff --git a/werc/sites/thirdculture.top/collective/public_sector/_werc/config b/werc/sites/thirdculture.top/collective/public_sector/_werc/config deleted file mode 100644 index 697a626..0000000 --- a/werc/sites/thirdculture.top/collective/public_sector/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -extraHeaders='' -conf_enable_wiki -wiki_editors_groups=ps diff --git a/werc/sites/thirdculture.top/collective/public_sector/_werc/style.css b/werc/sites/thirdculture.top/collective/public_sector/_werc/style.css deleted file mode 100644 index edae068..0000000 --- a/werc/sites/thirdculture.top/collective/public_sector/_werc/style.css +++ /dev/null @@ -1,55 +0,0 @@ -:root { - /* Main color scheme */ - --color-primary: #000000; - --color-secondary: #000000; - --color-accent: rgb(162, 255, 0); - - /* Background colors */ - --bg-primary: #ffffffff; - --bg-secondary: #ffffffff; - - /* Text colors */ - --text-primary: #000000; - --text-secondary: #000000; - --text-accent: rgb(162, 255, 0); - - /* Header colours */ - --header-primary:#000000; - --header-secondary: #000000; - --header-tertiary: #000000; - --header-other: #000000; - - /* Link colors */ - --link-color: #1d75d4ff; - --link-hover: #5B3D8Aff; - - /* Border colors */ - --border-primary: rgb(10, 10, 10); - --border-secondary: #030303ff; - --border-image: #303030ff; - - /* Special purpose colors */ - --code-color: #18A02Cff; - --header-bg: #ffffffff; - --header-text: #000000; - - /* Font families */ - --font-headers: sans-serif; - --font-body: sans-serif; -} - -body { - background: var(--bg-primary); - background-color: var(--bg-primary); - background-position: center center; - background-size: 110vh 75vh; - background-repeat: repeat-y; - margin: 0; - padding: 0; - font-size: 110%; - font-family: monospace; -} - -article { - text-align: center; -} \ No newline at end of file diff --git a/werc/sites/thirdculture.top/collective/public_sector/index.md b/werc/sites/thirdculture.top/collective/public_sector/index.md deleted file mode 100644 index 6a3ae06..0000000 --- a/werc/sites/thirdculture.top/collective/public_sector/index.md +++ /dev/null @@ -1,5 +0,0 @@ -Public Sector -============================= -Main Link: \[ [https://www.instagram.com/publicsector.zip/](https://www.instagram.com/publicsector.zip/) \] - - diff --git a/werc/sites/thirdculture.top/guides/_werc/config b/werc/sites/thirdculture.top/guides/_werc/config deleted file mode 100644 index cd55bcf..0000000 --- a/werc/sites/thirdculture.top/guides/_werc/config +++ /dev/null @@ -1,2 +0,0 @@ -conf_enable_comments -conf_enable_wiki diff --git a/werc/sites/thirdculture.top/guides/index.md b/werc/sites/thirdculture.top/guides/index.md deleted file mode 100644 index c768953..0000000 --- a/werc/sites/thirdculture.top/guides/index.md +++ /dev/null @@ -1,7 +0,0 @@ -# Guides - -Under this page you can find various guides of an assorted kind of nature. - -![image of support](/_werc/pub/imgs/news.png "main") - -We value guides on anything really. Please submit if you have something you want to contribute. \ No newline at end of file diff --git a/werc/sites/thirdculture.top/love/Metal Gear Solid.md b/werc/sites/thirdculture.top/love/Metal Gear Solid.md deleted file mode 100644 index e69de29..0000000 diff --git a/werc/sites/thirdculture.top/love/_werc/config b/werc/sites/thirdculture.top/love/_werc/config deleted file mode 100644 index 003eac0..0000000 --- a/werc/sites/thirdculture.top/love/_werc/config +++ /dev/null @@ -1,2 +0,0 @@ -conf_enable_wiki - diff --git a/werc/sites/thirdculture.top/love/books.md b/werc/sites/thirdculture.top/love/books.md deleted file mode 100644 index 3a0370d..0000000 --- a/werc/sites/thirdculture.top/love/books.md +++ /dev/null @@ -1,7 +0,0 @@ -# Books - -The ever growing third culture library! - -**The Fall** by *Albert Camus* I really like this book, it's helped me quite a bit throughout my life to have read this. (q) -**Welcome to the NHK** by *Tatsuhiko Takimoto* better than the anime (which is also very good) and came first. (q) - diff --git a/werc/sites/thirdculture.top/love/games.md b/werc/sites/thirdculture.top/love/games.md deleted file mode 100644 index 9dcd640..0000000 --- a/werc/sites/thirdculture.top/love/games.md +++ /dev/null @@ -1,25 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -(Hey q I organized these in alphabetical order. Lmk if that's okay or if you want it by author) - -## Video Games - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -Dishonored and Dishonored 2. Steampunk stealth-action immersive sim. Super interesting world with a lot of detail in it. You use super powers to teleport, entering the bodies of people/animals, summon man-eating rats, etc. Very engaging with a lot of replay value. Choosing between either violent/non-violent and overt/non-overt approaches changes how the world is affected around you. Despite the game being about assassination, you can beat it without killing a single person. Highly recommend. -- (adil) - -Hotline Miami and Hotline Miami 2. Sharp and expressive use of top down pixel art. Addicting gameplay. GOATED soundtrack. A story that seems simple on the surface but invites a lot of digging from the audience. The first game definitely has better gameplay and level design than the second game but the second one has a better score and story. It's a must-play for anyone who loves the video game medium. -- (adil) - -Metal Gear Solid (1 through 3). What more is there to say? It's the greatest action-stealth franchise with kick-ass music, boss fights, and voice acting wrapped in a conspiracy thriller that becomes more relevant each year. I like 4 and 5 too but 1 - 3 are my favourites. -- (adil) - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - - - - - diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/author b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/author deleted file mode 100644 index 7428126..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/author +++ /dev/null @@ -1 +0,0 @@ -artificer diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/data b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/data deleted file mode 100644 index 7b6a304..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731347224/data +++ /dev/null @@ -1,10 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -## Video Games - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/author b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/author deleted file mode 100644 index c8aba94..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/author +++ /dev/null @@ -1 +0,0 @@ -adil diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/data b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/data deleted file mode 100644 index a23079a..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731523875/data +++ /dev/null @@ -1,14 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -## Video Games - -Metal Gear Solid (1 through 3). What more is there to say? It's the greatest action-stealth franchise with kick-ass music, boss fights, and voice acting wrapped in a conspiracy thriller that becomes more relevant each year. I like 4 and 5 too but 1 - 3 are my favourites. -- adil - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - - diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/author b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/author deleted file mode 100644 index c8aba94..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/author +++ /dev/null @@ -1 +0,0 @@ -adil diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/data b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/data deleted file mode 100644 index c1e9675..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731525021/data +++ /dev/null @@ -1,21 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -## Video Games - -Dishonored and Dishonored 2. Steampunk stealth-action immersive sim. Super interesting world with a lot of detail in it. You use super powers to teleport, entering the bodies of people/animals, summon man-eating rats, etc. Very engaging with a lot of replay value. Choosing between either violent/non-violent and overt/non-overt approaches changes how the world is affected around you. Despite the game being about assassination, you can beat it without killing a single person. Highly recommend. -- adil - -Hotline Miami and Hotline Miami 2. Sharp and expressive use of top down pixel art. Addicting gameplay. GOATED soundtrack. A story that seems simple on the surface but invites a lot of digging from the audience. The first game definitely has better gameplay and level design than the second game but the second one has a better score and story. It's a must-play for anyone who loves the video game medium. -- adil - -Metal Gear Solid (1 through 3). What more is there to say? It's the greatest action-stealth franchise with kick-ass music, boss fights, and voice acting wrapped in a conspiracy thriller that becomes more relevant each year. I like 4 and 5 too but 1 - 3 are my favourites. -- adil - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - - - diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/author b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/author deleted file mode 100644 index c8aba94..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/author +++ /dev/null @@ -1 +0,0 @@ -adil diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/data b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/data deleted file mode 100644 index 6628cad..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526784/data +++ /dev/null @@ -1,24 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -(Hey q I organized these in alphabetical order. Lmk if that's okay or if you want it by author) - -## Video Games - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -Dishonored and Dishonored 2. Steampunk stealth-action immersive sim. Super interesting world with a lot of detail in it. You use super powers to teleport, entering the bodies of people/animals, summon man-eating rats, etc. Very engaging with a lot of replay value. Choosing between either violent/non-violent and overt/non-overt approaches changes how the world is affected around you. Despite the game being about assassination, you can beat it without killing a single person. Highly recommend. -- adil - -Hotline Miami and Hotline Miami 2. Sharp and expressive use of top down pixel art. Addicting gameplay. GOATED soundtrack. A story that seems simple on the surface but invites a lot of digging from the audience. The first game definitely has better gameplay and level design than the second game but the second one has a better score and story. It's a must-play for anyone who loves the video game medium. -- adil - -Metal Gear Solid (1 through 3). What more is there to say? It's the greatest action-stealth franchise with kick-ass music, boss fights, and voice acting wrapped in a conspiracy thriller that becomes more relevant each year. I like 4 and 5 too but 1 - 3 are my favourites. -- adil - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - - - - diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/author b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/author deleted file mode 100644 index c8aba94..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/author +++ /dev/null @@ -1 +0,0 @@ -adil diff --git a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/data b/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/data deleted file mode 100644 index 9dcd640..0000000 --- a/werc/sites/thirdculture.top/love/games.md_werc/dirdir/1731526870/data +++ /dev/null @@ -1,25 +0,0 @@ -# Games - -Cool games that have made an impact on our lives. - -(Hey q I organized these in alphabetical order. Lmk if that's okay or if you want it by author) - -## Video Games - -[cave story](https://www.cavestory.org/) this is the game that inspired me to want to become an indie dev and make games for a living. This is a link to the tribute site, but play the game. (q) - -Dishonored and Dishonored 2. Steampunk stealth-action immersive sim. Super interesting world with a lot of detail in it. You use super powers to teleport, entering the bodies of people/animals, summon man-eating rats, etc. Very engaging with a lot of replay value. Choosing between either violent/non-violent and overt/non-overt approaches changes how the world is affected around you. Despite the game being about assassination, you can beat it without killing a single person. Highly recommend. -- (adil) - -Hotline Miami and Hotline Miami 2. Sharp and expressive use of top down pixel art. Addicting gameplay. GOATED soundtrack. A story that seems simple on the surface but invites a lot of digging from the audience. The first game definitely has better gameplay and level design than the second game but the second one has a better score and story. It's a must-play for anyone who loves the video game medium. -- (adil) - -Metal Gear Solid (1 through 3). What more is there to say? It's the greatest action-stealth franchise with kick-ass music, boss fights, and voice acting wrapped in a conspiracy thriller that becomes more relevant each year. I like 4 and 5 too but 1 - 3 are my favourites. -- (adil) - -[yume nikki/yume 2kki](https://ynoproject.net/) yume nikki has real fucking aura man. I love this game and shows how unique games are as an art form. Creating a world for you to explore. Because of this novel idea there are many very cool games inspired from it, I have played many of them and their influences is in much of my work. The link is to an online project that allows you to play these amazing games in browser. (q) - - - - - diff --git a/werc/sites/thirdculture.top/love/index.md b/werc/sites/thirdculture.top/love/index.md deleted file mode 100644 index 7cef0d5..0000000 --- a/werc/sites/thirdculture.top/love/index.md +++ /dev/null @@ -1,14 +0,0 @@ -# Things we love! - -This page is a somewhat categorized list of things we think are cool. Think of this as a bookmarks page for third culture and use it to find out about other interesting things going on locally or otherwise online. We believe that any website should maintain a list of their creator's favourite things. - -![cool love title page image](/_werc/pub/imgs/saya.png "main") - -See the side bar or see below for a list of catagories. - -* [music we love](music) -* [sites we love](sites) -* [games we love](games) -* [books we love](books) -* [videos we love](video) - diff --git a/werc/sites/thirdculture.top/love/music.md b/werc/sites/thirdculture.top/love/music.md deleted file mode 100644 index dc1418d..0000000 --- a/werc/sites/thirdculture.top/love/music.md +++ /dev/null @@ -1,8 +0,0 @@ -# Music - -Music valued by third culture and its members! - -## Influences -I maintain a list on my band moridori's site: [moridori's influences](https://moridori.xyz/influences.html). (q) - - diff --git a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/author b/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/author deleted file mode 100644 index 7428126..0000000 --- a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/author +++ /dev/null @@ -1 +0,0 @@ -artificer diff --git a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/data b/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/data deleted file mode 100644 index f27ae49..0000000 --- a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522391/data +++ /dev/null @@ -1,9 +0,0 @@ -# Music - -Music valued by third culture and its members! - -## Influences -I maintain a list on my band moridori's site: [moridori's influences](https://moridori.xyz/influences.html). (q) - -bladee - diff --git a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/author b/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/author deleted file mode 100644 index 7428126..0000000 --- a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/author +++ /dev/null @@ -1 +0,0 @@ -artificer diff --git a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/data b/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/data deleted file mode 100644 index dc1418d..0000000 --- a/werc/sites/thirdculture.top/love/music.md_werc/dirdir/1730522401/data +++ /dev/null @@ -1,8 +0,0 @@ -# Music - -Music valued by third culture and its members! - -## Influences -I maintain a list on my band moridori's site: [moridori's influences](https://moridori.xyz/influences.html). (q) - - diff --git a/werc/sites/thirdculture.top/love/sites.md b/werc/sites/thirdculture.top/love/sites.md deleted file mode 100644 index 3e8c7f7..0000000 --- a/werc/sites/thirdculture.top/love/sites.md +++ /dev/null @@ -1,25 +0,0 @@ -# Sites - -Collection of websites that are interesting and/or have value to us. - -## People - -[gsracz](https://gsracz.com) Gabes site. (q) - -## Tech - -[hundred rabbits](https://100r.co), [xxiivv.com](https://xxiivv.com), [kokorobot.ca](https://kokorobot.ca) a 2 person collective focused on data preservation and sailing while also utilizing tech. Great intro into the benefits of minimalism they also make music and all kinds of art. Highly worth a visit, an abundance of useful and inspiring information/projects/art. (q) - -[cat-v](https://cat-v.org/) If you're into minimalism and know a bit about true personal computing this is a useful place. Their quotes page is highly entertaining and informative for any kind of person though. (q) - -[The Hitchhiker's Guide to Online Anonymity](https://anonymousplanet.org/guide.html) Good resource if you are in the know. (alx) - -### Service Providers - -[disroot](https://disroot.org) moridori uses this collectives services as an email provider. The desire for freedom for me truly requires one to be anti big governments and anti big corporation. I support these guys mission and they offer an awesome service. (q) - -[cock.li](https://cock.li) a more based email service provider. They offer a great service and recently started not requiring invites (again). 498,512,889 Dead Virgins use these guys for email, so basically youre not based and auramaxxed if you don't have an email with them. (alx) - -## Collectives - -[1maginary.online](https://1maginary.online) dulien showed me this site and it is what helped inspire this project. They support cool online/hyperpop artists and the radio is super cool! (q) \ No newline at end of file diff --git a/werc/sites/thirdculture.top/love/video.md b/werc/sites/thirdculture.top/love/video.md deleted file mode 100644 index f192c0d..0000000 --- a/werc/sites/thirdculture.top/love/video.md +++ /dev/null @@ -1,13 +0,0 @@ -# Video/Audio - -Video and other related content that we like! - -## Videos - -[pilotredsun](https://www.youtube.com/@PilotRedSun) I quote this guy all the time. (q) -[neverknowsbest](https://www.youtube.com/@NeverKnowsBest) makes gaming cool. (q) -[jimmymcgee](https://www.youtube.com/@JimmyMcG33) best video game reviews ever. (q) - -## Podcast - -[horseshoe theory](https://www.youtube.com/@HSTPOD) this is a podcast cohosted by jreg who used to be a somewhat prominent figure in Ottawa (and is a popular canadian youtuber). He has recently created his own collective in Toronto to much success. This project in particular helped inspire this project as a dream that could happen and its a great resource to see what cool people in Canada are doing. Both hosts believe theres no hope in Ottawa, I guess we will see about that then... (q) \ No newline at end of file diff --git a/werc/sites/thirdculture.top/news/_header.md b/werc/sites/thirdculture.top/news/_header.md deleted file mode 100644 index 4db53e2..0000000 --- a/werc/sites/thirdculture.top/news/_header.md +++ /dev/null @@ -1 +0,0 @@ -Subscribe to the **Third Culture** news feed: **\[[rss](index.rss)|[atom](index.atom)|[json](feed.json)\]** \ No newline at end of file diff --git a/werc/sites/thirdculture.top/news/_werc/config b/werc/sites/thirdculture.top/news/_werc/config index 5ea549d..cc6d2ce 100644 --- a/werc/sites/thirdculture.top/news/_werc/config +++ b/werc/sites/thirdculture.top/news/_werc/config @@ -1,6 +1,3 @@ conf_enable_wiki conf_enable_blog conf_blog_only_pull=0 -conf_blog_editors=core -blogTitle='Third Culture News' -blogDesc='Updates from the Third Culture collective' diff --git a/werc/sites/thirdculture.top/news/feed.json b/werc/sites/thirdculture.top/news/feed.json deleted file mode 100644 index e69de29..0000000 diff --git a/werc/sites/thirdculture.top/news/index.atom b/werc/sites/thirdculture.top/news/index.atom deleted file mode 100644 index e69de29..0000000 diff --git a/werc/sites/thirdculture.top/news/index.rss b/werc/sites/thirdculture.top/news/index.rss deleted file mode 100644 index e69de29..0000000 diff --git a/werc/sites/thirdculture.top/philosophy/index.md b/werc/sites/thirdculture.top/philosophy/index.md deleted file mode 100644 index 0e4c0e5..0000000 --- a/werc/sites/thirdculture.top/philosophy/index.md +++ /dev/null @@ -1,19 +0,0 @@ -# Philosophy: Third Culture - -This page is under construction to give time for our members to discuss and define a core value system for this project. - - - -![lost in the wires](/_werc/pub/imgs/cables.png "main") - diff --git a/werc/sites/thirdculture.top/support/index.md b/werc/sites/thirdculture.top/support/index.md deleted file mode 100644 index 868ece4..0000000 --- a/werc/sites/thirdculture.top/support/index.md +++ /dev/null @@ -1,19 +0,0 @@ -# Support: Third Culture - -Thanks for showing interest in supporting us! There are many ways you can support the third culture project. This page will show a few ways you can. - -![image of support](/_werc/pub/imgs/church.png "main") - -## Join the Collective - -If you resonate with our mission and want to build a community here in Ottawa ON, then lets fucking do this. Contact us. More info can be read on the [collective](/collective) page. My inbox is also always open at moridori(at)disroot.org or feel free to contact one of our members over Instagram. Talking to any of the members in person too is always welcome. - -## Marketplace - -Check out Third Culture's marketplace. Many of these things may be one off things or just somethings we want to sell. You can find merch, art, useful things; all being sold by the members or third culture. We will post new listings here as they come up. - -Go to the [Marketplace](marketplace). - -## Donation - -Donations aren't necessarily a priority right now. Feel free to chip in a bit extra at our members shows/house shows though, this shit ain't free for us. \ No newline at end of file diff --git a/werc/sites/thirdculture.top/support/marketplace/_header.md b/werc/sites/thirdculture.top/support/marketplace/_header.md deleted file mode 100644 index d7d0855..0000000 --- a/werc/sites/thirdculture.top/support/marketplace/_header.md +++ /dev/null @@ -1,9 +0,0 @@ -# Marketplace: Third Culture - -Here you may find: **merch, drawings, art, physical music releases, mixtapes, stuff we are trying to get rid of**. - -![image of clutter](/_werc/pub/imgs/clutter.png "main") - -Details about how to go about payment and getting the item you want will be contained in each post. We will do out best with making sure that sold items are marked as such. Hope you find something you like. - -- - - diff --git a/werc/sites/thirdculture.top/support/marketplace/_werc/config b/werc/sites/thirdculture.top/support/marketplace/_werc/config deleted file mode 100644 index 6492e41..0000000 --- a/werc/sites/thirdculture.top/support/marketplace/_werc/config +++ /dev/null @@ -1,4 +0,0 @@ -conf_enable_wiki -conf_enable_blog -conf_blog_only_pull=0 -blogTitle='Whats For Sale?' diff --git a/werc/sites/thirdculture.top/wiki/_werc/config b/werc/sites/thirdculture.top/wiki/_werc/config index ddc613e..74d3067 100644 --- a/werc/sites/thirdculture.top/wiki/_werc/config +++ b/werc/sites/thirdculture.top/wiki/_werc/config @@ -1,2 +1 @@ conf_enable_wiki -conf_enable_comments diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md deleted file mode 100644 index b54cb52..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md +++ /dev/null @@ -1,3 +0,0 @@ -Bologna Colorado is a garage rock band from Halifax, Nova Scotia. - -Distorted waves of jagged silver rip through your chest to the jig of a hundred laughing corpses. A Bologna Colorado show is a raucous host of young folk, bouncing like amateurs to hotel lobby piano pieces and earsplitting power chords. Reminiscent of the Ramones, the Oh-Sees, the Dead Kennedys, and the oddly attractive tweaker shitting herself on your front porch, their cheap all ages shows will be a memory to treasure whether you like it or not. diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/author b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/data b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/data deleted file mode 100644 index b54cb52..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado.md_werc/dirdir/1731466381/data +++ /dev/null @@ -1,3 +0,0 @@ -Bologna Colorado is a garage rock band from Halifax, Nova Scotia. - -Distorted waves of jagged silver rip through your chest to the jig of a hundred laughing corpses. A Bologna Colorado show is a raucous host of young folk, bouncing like amateurs to hotel lobby piano pieces and earsplitting power chords. Reminiscent of the Ramones, the Oh-Sees, the Dead Kennedys, and the oddly attractive tweaker shitting herself on your front porch, their cheap all ages shows will be a memory to treasure whether you like it or not. diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/body b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/body deleted file mode 100644 index 5df6ad1..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/body +++ /dev/null @@ -1 +0,0 @@ -The keys they incorporate are so so good. The front man is so zany. diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/posted b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/posted deleted file mode 100644 index 717a22d..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/posted +++ /dev/null @@ -1 +0,0 @@ -Wed Nov 13 15:25:58 GMT 2024 diff --git a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/user b/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/user deleted file mode 100644 index 1dbfe51..0000000 --- a/werc/sites/thirdculture.top/wiki/bands/bologna_colorado_werc/comments/1731511558/user +++ /dev/null @@ -1 +0,0 @@ -vanne diff --git a/werc/sites/thirdculture.top/wiki/index.md b/werc/sites/thirdculture.top/wiki/index.md index 79ac52b..9015a7a 100644 --- a/werc/sites/thirdculture.top/wiki/index.md +++ b/werc/sites/thirdculture.top/wiki/index.md @@ -1,21 +1 @@ -This is the Third Culture Wiki :) -============================================= - -This is a living document that contains information and history about third culture's, artists, projects, notable events and things we think are cool. - -![image of support](/_werc/pub/imgs/wires.png "main") - -**Third Culture** is an online collective started in Ottawa ON focused on creating a community of passionate artists/dreamers/activists who feel they don't have a place to belong. You can read more about third culture on the [about](/about) page and explore our [member's pages](https://ppl.thirdculture.top) for more member specific information. - -## Contributing to the Wiki - -* Respect the privacy of others. Make sure you only include information that the artist themselves have posted publicly or ask permission. -* Do not post anything harmful, this wiki is primary a place to keep track of facts. Opinion can be kept on personal pages or in forum discussion. -* Comments should include relevant discussion, don't be a bully or toxic. Mistakes/errors should be reported through the proper channels not in the comments. -* Having primary sources is encouraged but not entirely necessary. If your page lacks primary sources consider generating your own (for example by doing a mini interview, which can also be kept in the wiki). -* If you spam or produce malicious content your account will be deleted, treat this wiki more as an academic setting if that helps you. -* Currently new account posting is not enabled, if you do have an entry you want you can contact us to receive an account or just send us the content of the edits/page you want created to moridori(at)disroot.org. You can also leave a comment as a new user and you may get an account. (I may make a general account for the purpose of allowing outsider edits) - -## Reporting Problems and General Contact - -Currently you can reach the admin (q) at moridori(at)disroot.org +index diff --git a/werc/sites/thirdculture.top/wiki/music.md b/werc/sites/thirdculture.top/wiki/music.md deleted file mode 100644 index d333a0f..0000000 --- a/werc/sites/thirdculture.top/wiki/music.md +++ /dev/null @@ -1,2 +0,0 @@ -Music is a form of art, conveyed through the medium of sound. - diff --git a/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/author b/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/author deleted file mode 100644 index 59f781c..0000000 --- a/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/author +++ /dev/null @@ -1 +0,0 @@ -iancobain diff --git a/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/data b/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/data deleted file mode 100644 index d333a0f..0000000 --- a/werc/sites/thirdculture.top/wiki/music.md_werc/dirdir/1731465875/data +++ /dev/null @@ -1,2 +0,0 @@ -Music is a form of art, conveyed through the medium of sound. - diff --git a/werc/sites/visual.thirdculture.top/_werc/config b/werc/sites/visual.thirdculture.top/_werc/config deleted file mode 100644 index eb7b001..0000000 --- a/werc/sites/visual.thirdculture.top/_werc/config +++ /dev/null @@ -1,3 +0,0 @@ -masterSite=thirdculture.top -siteTitle='Third Culture Visuals' -siteSubTitle='eyes have opened' diff --git a/werc/sites/visual.thirdculture.top/index.md b/werc/sites/visual.thirdculture.top/index.md deleted file mode 100644 index d7f8366..0000000 --- a/werc/sites/visual.thirdculture.top/index.md +++ /dev/null @@ -1,3 +0,0 @@ -Visuals -================================= -This page is under construction diff --git a/werc/tpl/_tools/hash.tpl b/werc/tpl/_tools/hash.tpl deleted file mode 100644 index f78de7d..0000000 --- a/werc/tpl/_tools/hash.tpl +++ /dev/null @@ -1,35 +0,0 @@ -

Password Hash Generator

-

This tool is for generating password hashes to be used for your Third Culture user account.

-
-
-
-
- -
-
- -
- -% if(~ $REQUEST_METHOD POST) { -% if(~ $#post_arg_password 0 || ~ $#post_arg_verify_password 0) { -
Error: Both password fields are required!
-% } -% if not if(! ~ $"post_arg_password $"post_arg_verify_password) { -
Error: Passwords do not match!
-% } -% if not { -% fn sanitize_input { printf '%s' $1 | sed 's/[[:cntrl:]]//g' } -% clean_password=`{sanitize_input $"post_arg_password} -% mkpasswd_hash=`{printf '%s' $"clean_password | mkpasswd} -% htpasswd_hash=`{printf '%s' $"clean_password | htpasswd -n -b dummy - | sed 's/^dummy://'} -

Generated Hashes:

-
- - mkpasswd hash: %(`{echo $mkpasswd_hash | sed 's/&/\&/g; s//\>/g; s/''/\"/g'}%)
- htpasswd hash: %(`{echo $htpasswd_hash | sed 's/&/\&/g; s//\>/g; s/''/\"/g'}%) -
-
- Copy the output in the box above and send them to q. DM or over email (moridori@disroot.org). -
-% } -% } \ No newline at end of file