Compare commits

..

No commits in common. "cada1f054760f88a55f57639ecfd3e80d8acd3b2" and "d0f6d640269374f2ceec48d77d78004ad81a2bdd" have entirely different histories.

18 changed files with 2 additions and 282 deletions

6
.gitignore vendored
View File

@ -1,6 +0,0 @@
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
*.sketch

View File

@ -1,5 +0,0 @@
source "https://rubygems.org"
gem "jekyll", "~> 4.2.2"
gem "webrick", "~> 1.8"

View File

@ -1,69 +0,0 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
colorator (1.1.0)
concurrent-ruby (1.3.5)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7-x86-mingw32)
ffi (1.17.2-x86-mingw32)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
jekyll (4.2.2)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.4.0)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-sass-converter (2.2.0)
sassc (> 2.0.1, < 3.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.5.1)
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.4)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (6.0.2)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.4.1)
rouge (3.30.0)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
unicode-display_width (1.8.0)
webrick (1.9.1)
PLATFORMS
x86-mingw32
DEPENDENCIES
jekyll (~> 4.2.2)
webrick (~> 1.8)
BUNDLED WITH
2.3.26

View File

@ -1,3 +1,3 @@
# ~/rodrick
# tilde
My whole entire [Tilde](https://tilde.32bit.cafe/~rodrick/) site.
My tilde site

View File

@ -1,14 +0,0 @@
title: Tilde Shroom Growth
url: https://tilde.32bit.cafe/~rodrick/
git_repo_url: https://git.32bit.cafe/RodFire8181/tilde
language: en-us
## ## ## ##
include : ["_pages", "_events"]
collections :
pages :
output: true
permalink: /:path.html
events :
output: true
permalink: /events/:path.html

View File

@ -1,9 +0,0 @@
---
layout: base
title: New Year, New You?
subtitle: Burst From Your Cocoon!
style: ny-26
started: false
---
to be announced

View File

@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href={{ "src/css/main.css" | relative_url }}>
<link rel="shortcut icon" href={{ "favicon.ico" | relative_url }}>
<title>{{ page.title }}</title>
</head>
<body {{ page.extra}} class="{{ page.style }}">
{{ content }}
</body>
</html>

View File

@ -1,12 +0,0 @@
---
layout: base
---
<div class="page">
<header>
<h1>{{ page.title }}</h1>
</header>
<main>
{{ content }}
</main>
</div>

View File

@ -1,15 +0,0 @@
---
layout: base
---
<div>
<header>
<hgroup>
<h1>{{ page.title }}</h1>
<p>{{ page.subtitle }}</p>
</hgroup>
</header>
<main>
{{ content }}
</main>
</div>

View File

@ -1,24 +0,0 @@
---
layout: default
title: ~rodrick
style: default
extra: saved-theme="dark"
---
Hewwo! I'm [Rodrick](https://shroom.ink)!
I'm an artist, game dev, and web dev.
I'm *also* a 32-Bit Cafe [event planner](https://32bit.cafe/community/).
Events:
{% assign not_ready = 0 %}
{% for event in site.events %}
{% if event.started %}
- [{{ event.title }}]({{ event.url }})
{% else %}
{% assign not_ready = not_ready | plus: 1 %}
{% endif %}
{% endfor %}
{% unless not_ready == 0 %}
- {{ not_ready }} being planned.
{% endunless %}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,34 +0,0 @@
@media only screen and (max-width: 800px) {
.default .page {
width: 90%;
}
}
.default {
color: var(--color);
font-family: var(--font);
background: var(--bg-image) var(--bg-color);
background-attachment: fixed;
background-size: 70%;
background-repeat: repeat;
font-size: var(--font-size);
.page {
background: var(--back);
width: 70%;
margin: 1em auto;
padding: 1em;
}
header h1 {
margin: 0;
padding: 0;
}
a {
color: var(--accent);
font-family: var(--font-alt2);
&:hover { color: var(--font); }
}
}

View File

@ -1,17 +0,0 @@
/* Default */
@import "root.css";
@import "default.css";
body, html {
margin: 0;
padding: 0;
}
h1 { color: var(--head-1); }
h2 { color: var(--head-2); }
h3 { color: var(--head-3); }
h4 { color: var(--head-4); }
h5 { color: var(--head-5); }
h6 { color: var(--head-6); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-alt); }

View File

@ -1,62 +0,0 @@
/*
Let's define some variables!
*/
@font-face {
font-family: 'Averia Libre';
src: local('Averia Libre'),
url("../fonts/AveriaLibre-Regular.ttf") format("truetype");
}
@font-face {
font-family: 'Zara';
src: local('Zara'),
url("../fonts/Zara-Regular.woff") format("woff");
}
@font-face {
font-family: 'Crédible';
src: local('Crédible'),
url("../fonts/Crédible-Regular.woff") format("woff");
}
:root {
/* Unchanging */
--font : 'Averia Libre', sans-serif; /* Verdana, sans-serif */
--font-alt : 'Crédible', serif, cursive;
--font-alt2 : 'Zara', serif;
--bg-image : url("../img/bg_2.webp");
--font-size : calc(1rem + (1vw / 5));
/* -- Colors -- */
--bg-color : #2f1b2b; /* #2f1b2b */
--color : #1f161d;
--back : #E1EAE9; /* #CCEDCD */
--accent : #132B06;
/* Headings */
--head-1 : #003959;
--head-2 : #004754;
--head-3 : #004C4E;
--head-4 : #005237;
--head-5 : #004E47;
--head-6 : #0E4E00;
}
[saved-theme="dark"] {
/* -- Colors -- */
--bg-color : var(--head-2);
--color : #D2DFCA;
--back : #0A0809; /* #1f161d #1E0C08 */
--accent : #DBFFC5;
/* Headings */
--head-1 : #B6E1F7;
--head-2 : #ADB6DA;
--head-3 : #85B4C2;
--head-4 : #7CC2C0;
--head-5 : #7DD29F;
--head-6 : #85E3A2;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB