commit 220d96a28796ca0daaf5a655cd934f8a3eab71fb Author: jane Date: Tue Apr 11 21:48:18 2023 -0400 ok diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..364fdec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/ diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..6866c66 --- /dev/null +++ b/config.toml @@ -0,0 +1,16 @@ +# The URL the site will be built for +base_url = "https://shimmer.systems" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = true + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here diff --git a/content/ascii/_index.md b/content/ascii/_index.md new file mode 100644 index 0000000..6dfbcc3 --- /dev/null +++ b/content/ascii/_index.md @@ -0,0 +1,4 @@ ++++ +title = "" +template = "ascii.html" ++++ \ No newline at end of file diff --git a/content/blog/2023-04-13.md b/content/blog/2023-04-13.md new file mode 100644 index 0000000..03c388f --- /dev/null +++ b/content/blog/2023-04-13.md @@ -0,0 +1,18 @@ ++++ +title = "Shimmer Systems has been updated." +date = 2023-04-13 ++++ + +[shimmer.systems](https://shimmer.systems) has been updated, it is now a semi-static site being hosted using zola. + +the tutorial from the old site for how to download the create modpack will be posted eventually, but i have to convert it to the new format. figuring out how to put images inside of markdown will be annoying. + +i would like to keep this site more up-to-date than i normally would for my older sites. i intend for this one to partially replace j4.pm, but the old domain will stay up. i will probably put a link there to redirect to this page. + +that being said, this website isn't really a blog so much as it is a place to keep track of some things i want to keep track of. i'm usually more active on tumblr, if you really feel the need to contact me publicly. otherwise, you probably already know me and you probably have my discord. + +i'm still pretty proud of the marquee thing i did in the titlebar, even though it's janky as fuck. i need to mess around with the height of the blog posts, because it overlaps with the footer on shorter screens. if anyone has any cool ideas for pure html fuckery, i might add some experimental pages. hmu. + +actually also i want to bring back that huge ascii cutie mark. i should make a page for that. + +that's about it, see ya. \ No newline at end of file diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..41d14ee --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,6 @@ ++++ +title = "" +sort_by = "date" +template = "blog.html" +page_template = "blog-page.html" ++++ \ No newline at end of file diff --git a/content/blog/about.md b/content/blog/about.md new file mode 100644 index 0000000..f803c56 --- /dev/null +++ b/content/blog/about.md @@ -0,0 +1,8 @@ ++++ +title = "hi, i'm jane." +date = 2023-04-13 ++++ + +i'm a pretty private person, for the most part. i like programming, sometimes. i like drawing, most of the time. i want to learn how to make music at some point. i'm kind of obsessed with my little pony, and also homestuck to a lesser extent. + +i dislike when people approach me, online or in person, with no prior warning. please don't expect me to respond to messages. \ No newline at end of file diff --git a/sass/elements.scss b/sass/elements.scss new file mode 100644 index 0000000..bbfbd93 --- /dev/null +++ b/sass/elements.scss @@ -0,0 +1,18 @@ +.centered { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +.smallText { + font-size: 10px !important; +} + +.smallText span { + color: white; +} + +.smallText li { + list-style-type: none; +} \ No newline at end of file diff --git a/sass/globals.scss b/sass/globals.scss new file mode 100644 index 0000000..d644f8f --- /dev/null +++ b/sass/globals.scss @@ -0,0 +1,11 @@ +body { + background-color: #BF6375; +} + +.section { + background-image: url('/cmark.png'); + background-position-y: 55%; + background-position-x: 26%; + background-size: 400px; + background-repeat: no-repeat; +} \ No newline at end of file diff --git a/sass/style.scss b/sass/style.scss new file mode 100644 index 0000000..d3d409f --- /dev/null +++ b/sass/style.scss @@ -0,0 +1,2 @@ +@import './elements.scss'; +@import './globals.scss'; \ No newline at end of file diff --git a/static/cmark.png b/static/cmark.png new file mode 100644 index 0000000..22924f4 Binary files /dev/null and b/static/cmark.png differ diff --git a/templates/ascii.html b/templates/ascii.html new file mode 100644 index 0000000..c26ee8f --- /dev/null +++ b/templates/ascii.html @@ -0,0 +1,74 @@ +{% extends "base.html" %} + +{% block content %} +
+ +
+{% endblock content %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..2f98e85 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,56 @@ + + + + + + shimmer systems + + + + + +
+
+
+
+ {% block content %} {% endblock %} +
+
+
+
+ + + + \ No newline at end of file diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..34ea022 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+
+

{{ page.date }}

+
{{ page.content | safe }}
+{% endblock content %} \ No newline at end of file diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..ecc1df3 --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block content %} + +

+ {{ section.title }} +

+ +{% endblock content %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..b60caf5 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block content %} +
+

+ Shimmer Systems +

+ +

hi, i'm jane. about me.

+
+

email and discord are only given out to people i know

+

github

+

gitdab

+

tumblr

+

twitter (private)

+

j4.pm

+

blog posts??

+
+{% endblock content %} \ No newline at end of file diff --git a/templates/robots.txt b/templates/robots.txt new file mode 100644 index 0000000..b3b7316 --- /dev/null +++ b/templates/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: * +Sitemap: {{ get_url(path="sitemap.xml") }}