~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website

Commit literally everything to kick tires

Signed-off-by: Andrei Jiroh Eugenio Halili <ajhalili2006@gmail.com>

+20
.build.yml
···
+
image: alpine/edge
+
packages:
+
- openssh-client
+
- python3
+
- py3-pip
+
sources:
+
- https://git.sr.ht/~ajhalili2006/tildeweb
+
triggers:
+
- action: email
+
condition: always
+
to: Public Inbox <~ajhalili2006/public-inbox@lists.sr.ht>
+
cc: ctrl-c.clib/~ajhalili2006 <ajhalili2006@gmail.com>
+
tasks:
+
- build:
+
cd tildeweb && pip3 install -r requirements.txt
+
mkdocs build
+
- deploy:
+
cd tildeweb
+
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
+
echo "TODO: Implement SSH-based deployments over here."
+6
.vscode/extensions.json
···
+
{
+
"recommendations": [
+
"printfn.gemini-improved",
+
"DavidAnson.vscode-markdownlint"
+
]
+
}
+8
.vscode/settings.json
···
+
{
+
"yaml.schemas": {
+
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs*.yml"
+
},
+
"marquee.widgets.npm-stats.packageNames": [
+
"@ajhalili2006/tildeverse-web"
+
]
+
}
gmi/.gitkeep

This is a binary file and will not be displayed.

gmi/index.gmi

This is a binary file and will not be displayed.

markdown/.gitkeep

This is a binary file and will not be displayed.

+18
markdown/index.md
···
+
---
+
title: Home
+
description:
+
---
+
# Well hello there!
+
+
You're viewing ~ajhalili2006's home in the tildeverse! This is where he showcase his work
+
in oepn source and software development, among other things.
+
+
## Directories within this hub
+
+
* [`/things`](./things) - usually screenshots and personal snippet hosting stuff
+
* [`/resume`](./resume) - various PDF files
+
* [`/projects`](./projects) - information about different projects he currently doing and in the past
+
+
## Where to stalk
+
+
+2
mkdocs.ctrl-c.yml
···
+
INHERIT: ./mkdocs.yml
+
site_url: https://ctrl-c.club/~ajhalili2006
+54
mkdocs.yml
···
+
# basics
+
site_name: ~ajhalili2006 on tildeverse
+
site_url: https://ajhalili2006.vern.cc/
+
site_dir: public_html
+
copyright: >
+
Copyright &copy; 2022-present - Andrei Jiroh Halili and contributors, licensed under the
+
<a href="https://creativecommons.org/licenses/by-sa/4.0">CC BY-SA 4.0</a> license.
+
+
docs_dir: markdown
+
+
repo_url: https://mau.dev/ajhalili2006/tildeverse-web
+
edit_uri: edit/main/markdown
+
repo_name: source code
+
+
theme:
+
name: material
+
icon:
+
repo: material/gitlab
+
feature:
+
- search.suggest
+
- search.highlight
+
- search.share
+
palette:
+
# Palette toggle for light mode
+
- media: "(prefers-color-scheme: light)"
+
scheme: default
+
toggle:
+
icon: material/brightness-7
+
name: Switch to dark mode
+
+
# Palette toggle for dark mode
+
- media: "(prefers-color-scheme: dark)"
+
scheme: slate
+
toggle:
+
icon: material/brightness-4
+
name: Switch to light mode
+
+
plugins:
+
- search
+
+
markdown_extensions:
+
- toc:
+
permalink: true
+
title: On this page
+
- pymdownx.highlight:
+
anchor_linenums: true
+
use_pygments: true
+
- pymdownx.superfences
+
- pymdownx.tabbed:
+
alternate_style: true
+
- attr_list
+
- pymdownx.emoji:
+
emoji_index: !!python/name:materialx.emoji.twemoji
+
emoji_generator: !!python/name:materialx.emoji.to_svg
+13
package-lock.json
···
+
{
+
"name": "@ajhalili2006/tildeverse-web",
+
"version": "0.1.0",
+
"lockfileVersion": 2,
+
"requires": true,
+
"packages": {
+
"": {
+
"name": "@ajhalili2006/tildeverse-web",
+
"version": "0.1.0",
+
"license": "ISC"
+
}
+
}
+
}
+20
package.json
···
+
{
+
"name": "@ajhalili2006/tildeverse-web",
+
"version": "0.1.0",
+
"description": "Personal website for my tildes + Gemini version of blog posts",
+
"scripts": {
+
"dev": "mkdocs serve",
+
"build": "mkdocs build"
+
},
+
"repository": {
+
"type": "git",
+
"url": "git+ssh://git@git.sr.ht/~ajhalili2006/tildeweb.git"
+
},
+
"keywords": [],
+
"author": "",
+
"license": "ISC",
+
"bugs": {
+
"url": "https://todo.sr.ht/~ajhalili2006/tildeweb"
+
},
+
"homepage": "https://git.sr.ht/~ajhalili2006/tildeweb#readme"
+
}