Administrativa.

This commit is contained in:
Levi Neuwirth 2026-03-17 22:31:24 -04:00
parent 2ce2cdceec
commit 9c47811372
4 changed files with 12 additions and 3 deletions

3
.gitignore vendored
View File

@ -14,3 +14,6 @@ data/embeddings.json
data/similar-links.json
data/backlinks.json
data/build-stats.json
# IGNORE.txt is for the local build and need not be synced.
IGNORE.txt

View File

@ -14,11 +14,11 @@ build:
deploy: build
@if [ -z "$(GITHUB_TOKEN)" ] || [ -z "$(GITHUB_REPO)" ]; then \
echo "Skipping push: set GITHUB_TOKEN and GITHUB_REPO in .env"; \
echo "Skipping GitHub push: set GITHUB_TOKEN and GITHUB_REPO in .env"; \
else \
git push "https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPO).git" main; \
fi
rsync -avz --delete _site/ vps:/var/www/levineuwirth.org/
rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/
watch:
cabal run site -- watch

View File

@ -114,6 +114,7 @@ body > footer {
.footer-left {
display: flex;
align-items: center;
flex: 1;
gap: 1rem;
}
@ -158,6 +159,11 @@ body > footer {
color: var(--text-muted);
}
.footer-right {
flex: 1;
text-align: right;
}
.footer-build {
font-size: 0.72rem;
color: var(--text-faint);

View File

@ -4,7 +4,7 @@
<a href="/">levineuwirth.org</a>
</div>
<div class="footer-center">
<span class="footer-license">CC BY-SA-NC 4.0 · <a href="https://github.com/levineuwirth/levineuwirth.org">MIT</a></span>
<span class="footer-license">CC BY-SA-NC 4.0 · <a href="https://github.com/levineuwirth/levineuwirth.org">MIT</a> · <a href="/memento-mori.html" class="footer-mm">MM</a></span>
</div>
<div class="footer-right">
<span class="footer-build">build $build-time$</span>