diff options
| author | Lain Iwakura <lain@lainmail.xyz> | 2025-12-28 22:17:52 +0300 |
|---|---|---|
| committer | Lain Iwakura <lain@lainmail.xyz> | 2025-12-28 22:17:52 +0300 |
| commit | ddb4c926ad600f392a9044ab68dd32a59ff81405 (patch) | |
| tree | 18a69985a98b7a9a6c228229252ec681eefd862b | |
| parent | personal page -> silly guy (diff) | |
| download | home-ddb4c926ad600f392a9044ab68dd32a59ff81405.tar.gz home-ddb4c926ad600f392a9044ab68dd32a59ff81405.zip | |
feat(changelog,keys)
| -rw-r--r-- | changelog.7 | 15 | ||||
| -rw-r--r-- | email.7 | 2 | ||||
| -rw-r--r-- | id_key.pub | 1 | ||||
| -rw-r--r-- | index.1 | 7 | ||||
| -rw-r--r-- | makefile | 7 |
5 files changed, 30 insertions, 2 deletions
diff --git a/changelog.7 b/changelog.7 new file mode 100644 index 0000000..42fb985 --- /dev/null +++ b/changelog.7 @@ -0,0 +1,15 @@ +.TH CHANGELOG 7 "2025-01-12" "unixfriends" "Project Documentation" + +.SH NAME +changelog \- site update history + +.SH DESCRIPTION +This document describes notable changes to the unixfriends website. + +.SH 28.12.25 +.IP \(bu 2 +\fBadded public keys\fR + +.SH 27.12.25 +.IP \(bu 2 +\fBinitial public release\fR diff --git a/email.7 b/email.7 index 7c785cb..1727540 100644 --- a/email.7 +++ b/email.7 @@ -2,7 +2,7 @@ .SH NAME email \- contact information .SH DESCRIPTION -this page contains the contact email address. +эта page contains the contact email address. .UR index.html back to main page .PP diff --git a/id_key.pub b/id_key.pub new file mode 100644 index 0000000..5eab2b8 --- /dev/null +++ b/id_key.pub @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINZKEd84TD0Nz7b7oeeKMvch1no/3dHm43uXBFo4uIll lain@Lains-MacBook-Air diff --git a/index.1 b/index.1 index db90050..73c18fc 100644 --- a/index.1 +++ b/index.1 @@ -20,6 +20,13 @@ telegram .SH DEVICES thinkpad x230, pixel 3a, macbook air m3, iphone 14 pro. +.SH KEYS +.nf +age: age1xsmj00a47qsuul4lw8sfsyqqve9rtxy4h72q0md3cajplj9cr46qtg2q3u +.fi +.nf +ssh: curl https://outdated.network/id_key.pub +.fi .SH SEE ALSO man(1), plan9(7), nixos(8), 9front(7) diff --git a/makefile b/makefile index c4b7ecf..d8c0d97 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ DIST= dist .PHONY: all clean -all: $(DIST)/index.html $(DIST)/email.html $(DIST)/style.css $(DIST)/scheme.css +all: $(DIST)/index.html $(DIST)/email.html $(DIST)/style.css $(DIST)/scheme.css $(DIST)/changelog.html $(DIST): mkdir -p $(DIST) @@ -14,6 +14,11 @@ $(DIST)/index.html: index.1 style.css $(DIST) $(DIST)/email.html: email.7 style.css $(DIST) mandoc -Thtml -Ostyle=style.css email.7 > $@ cp email.7 $(DIST)/email.7 + cp id_key.pub $(DIST)/id_key.pub + +$(DIST)/changelog.html: changelog.7 style.css $(DIST) + mandoc -Thtml -Ostyle=style.css changelog.7 > $@ + cp changelog.7 $(DIST)/changelog.7 $(DIST)/style.css: style.css $(DIST) cp style.css $@ |