blog update
This commit is contained in:
parent
0130a27b11
commit
219e758143
5 changed files with 26 additions and 15 deletions
9
content/blog/blog-update/index.md
Normal file
9
content/blog/blog-update/index.md
Normal 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 %}
|
5
content/blog/blog-update/index.toml
Normal file
5
content/blog/blog-update/index.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
title = "Blog Update"
|
||||
created_date = "2025-10-05"
|
||||
tags = []
|
||||
read_time = "1 minute"
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
{% extends "../layouts/index.html" %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
{% block head %} {{ super() }}
|
||||
|
||||
<link rel="stylesheet" href="/static/css/message.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% set date_format = "%A, %d %B, %Y" %}
|
||||
{% block body %} {% set date_format = "%A, %d %B, %Y" %}
|
||||
|
||||
<div class="column">
|
||||
<div class="container">
|
||||
<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://github.com/kitsunecafe">GitHub</a></li>
|
||||
<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>
|
||||
</nav>
|
||||
<div>
|
||||
|
@ -104,4 +104,3 @@
|
|||
{% include "../layouts/footer.html" %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -11,10 +11,9 @@
|
|||
<li>|</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://fem.mint.lgbt/kitsunecafe">fem.mint.lgbt</a></li>
|
||||
<li><a href="https://github.com/kitsunecafe">GitHub</a></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>
|
||||
</nav>
|
||||
<div class="container">
|
||||
|
@ -26,4 +25,3 @@
|
|||
{% include "footer.html" %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
|
12
package.json
12
package.json
|
@ -6,18 +6,18 @@
|
|||
"dist": "dist"
|
||||
},
|
||||
"scripts": {
|
||||
"copy:static": "ln -sfn $(realpath static) ${npm_package_config_dist}/static 2>/dev/null",
|
||||
"build": "roxy $npm_package_config_content $npm_package_config_dist && npm run copy:static",
|
||||
"copy:static": "ln -sfn $(realpath static) dist/static 2>/dev/null",
|
||||
"build": "roxy content dist && npm run copy:static",
|
||||
"watch": "./watch",
|
||||
"serve": "wrangler pages dev --live-reload",
|
||||
"serve": "npx wrangler pages dev --live-reload",
|
||||
"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": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"description": "",
|
||||
"devDependencies": {
|
||||
"wrangler": "^3.91.0"
|
||||
"dependencies": {
|
||||
"wrangler": "^4.42.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue