Administrativa.
This commit is contained in:
parent
2ce2cdceec
commit
9c47811372
|
|
@ -14,3 +14,6 @@ data/embeddings.json
|
||||||
data/similar-links.json
|
data/similar-links.json
|
||||||
data/backlinks.json
|
data/backlinks.json
|
||||||
data/build-stats.json
|
data/build-stats.json
|
||||||
|
|
||||||
|
# IGNORE.txt is for the local build and need not be synced.
|
||||||
|
IGNORE.txt
|
||||||
4
Makefile
4
Makefile
|
|
@ -14,11 +14,11 @@ build:
|
||||||
|
|
||||||
deploy: build
|
deploy: build
|
||||||
@if [ -z "$(GITHUB_TOKEN)" ] || [ -z "$(GITHUB_REPO)" ]; then \
|
@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 \
|
else \
|
||||||
git push "https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPO).git" main; \
|
git push "https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPO).git" main; \
|
||||||
fi
|
fi
|
||||||
rsync -avz --delete _site/ vps:/var/www/levineuwirth.org/
|
rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/
|
||||||
|
|
||||||
watch:
|
watch:
|
||||||
cabal run site -- watch
|
cabal run site -- watch
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,7 @@ body > footer {
|
||||||
.footer-left {
|
.footer-left {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex: 1;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -158,6 +159,11 @@ body > footer {
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-right {
|
||||||
|
flex: 1;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
.footer-build {
|
.footer-build {
|
||||||
font-size: 0.72rem;
|
font-size: 0.72rem;
|
||||||
color: var(--text-faint);
|
color: var(--text-faint);
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<a href="/">levineuwirth.org</a>
|
<a href="/">levineuwirth.org</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-center">
|
<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>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
<span class="footer-build">build $build-time$</span>
|
<span class="footer-build">build $build-time$</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue