blog update

This commit is contained in:
Rowan 2025-10-05 03:16:58 -04:00
parent 0130a27b11
commit 219e758143
5 changed files with 26 additions and 15 deletions

View file

@ -0,0 +1,9 @@
{% extends "../../../layouts/post.html" %}
{% block article %}
i'm going to make some changes to the purpose and content of this site. all of the older posts and technical things i've written about are going to move to a new site. this blog is going to become about my personal thoughts about other things i'm interested in. there will probably still be technical stuff but it's going to be for the purpose of sharing what i'm doing and my experiences with it. also i want to start releasing smaller, less effortful posts so that i can write more often.
so basically, this site will be more about rowan-specific happenings/thoughts and the other one will be a more polished and effortful blog. i want to start writing more about game design/philosophy (not just programming), art, and politics especially through an anarchist lens. i'm also going to start adding non-technical projects like stories i've written and other types of art i make.
i haven't finished the technical site yet but i'll post a link to that when it's ready. thank you! <3
{% endblock %}

View file

@ -0,0 +1,5 @@
title = "Blog Update"
created_date = "2025-10-05"
tags = []
read_time = "1 minute"

View file

@ -1,12 +1,12 @@
{% extends "../layouts/index.html" %} {% extends "../layouts/index.html" %}
{% block head %} {% block head %} {{ super() }}
{{ super() }}
<link rel="stylesheet" href="/static/css/message.css"> <link rel="stylesheet" href="/static/css/message.css">
{% endblock %} {% endblock %}
{% block body %} {% block body %} {% set date_format = "%A, %d %B, %Y" %}
{% set date_format = "%A, %d %B, %Y" %}
<div class="column"> <div class="column">
<div class="container"> <div class="container">
<div class="column align-center"> <div class="column align-center">
@ -21,7 +21,7 @@
<li><a href="https://fem.mint.lgbt/kitsunecafe">fem.mint.lgbt</a></li> <li><a href="https://fem.mint.lgbt/kitsunecafe">fem.mint.lgbt</a></li>
<li><a href="https://github.com/kitsunecafe">GitHub</a></li> <li><a href="https://github.com/kitsunecafe">GitHub</a></li>
<div><h3 class="hide-mobile header divider">contact</h3></div> <div><h3 class="hide-mobile header divider">contact</h3></div>
<li><a href="https://tech.lgbt/@kitsunecafe">Fedi</a></li> <li><a href="https://cryptid.cafe/rowan">Fedi</a></li>
<li><a href="mailto:rowan@kitsu.cafe">Email</a></li> <li><a href="mailto:rowan@kitsu.cafe">Email</a></li>
</nav> </nav>
<div> <div>
@ -104,4 +104,3 @@
{% include "../layouts/footer.html" %} {% include "../layouts/footer.html" %}
</div> </div>
{% endblock %} {% endblock %}

View file

@ -11,10 +11,9 @@
<li>|</li> <li>|</li>
<li><a href="https://kitsunecafe.itch.io/">itch.io</a></li> <li><a href="https://kitsunecafe.itch.io/">itch.io</a></li>
<li><a href="https://git.kitsu.cafe/rowan">git.kitsu.cafe</a></li> <li><a href="https://git.kitsu.cafe/rowan">git.kitsu.cafe</a></li>
<li><a href="https://fem.mint.lgbt/kitsunecafe">fem.mint.lgbt</a></li>
<li><a href="https://github.com/kitsunecafe">GitHub</a></li> <li><a href="https://github.com/kitsunecafe">GitHub</a></li>
<li>|</li> <li>|</li>
<li><a href="https://tech.lgbt/@kitsunecafe">Fedi</a></li> <li><a href="https://cryptid.cafe/rowan">Fedi</a></li>
<li><a href="mailto:rowan@kitsu.cafe">Email</a></li> <li><a href="mailto:rowan@kitsu.cafe">Email</a></li>
</nav> </nav>
<div class="container"> <div class="container">
@ -26,4 +25,3 @@
{% include "footer.html" %} {% include "footer.html" %}
</div> </div>
{% endblock %} {% endblock %}

View file

@ -6,18 +6,18 @@
"dist": "dist" "dist": "dist"
}, },
"scripts": { "scripts": {
"copy:static": "ln -sfn $(realpath static) ${npm_package_config_dist}/static 2>/dev/null", "copy:static": "ln -sfn $(realpath static) dist/static 2>/dev/null",
"build": "roxy $npm_package_config_content $npm_package_config_dist && npm run copy:static", "build": "roxy content dist && npm run copy:static",
"watch": "./watch", "watch": "./watch",
"serve": "wrangler pages dev --live-reload", "serve": "npx wrangler pages dev --live-reload",
"dev": "parallel -u -j3 \"npm run\" ::: build watch serve", "dev": "parallel -u -j3 \"npm run\" ::: build watch serve",
"deploy": "wrangler pages deploy --project-name kitsunecafe" "deploy": "npx wrangler pages deploy --project-name kitsunecafe"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"description": "", "description": "",
"devDependencies": { "dependencies": {
"wrangler": "^3.91.0" "wrangler": "^4.42.0"
} }
} }