What's this?
This is page host for Gemini, like telegra.ph
It supports HTTP/HTML access as well, but uses only Gemtext format for writing page
How to add page?
You can open HTTP version of this site and submit a form
Alternatively, there is curl-based client
#! /bin/sh
set -euo pipefail
if [ "$#" -eq 0 ]; then
echo "Usage: $0 " >&2
echo "Page content will be read from stdin"
exit 1
fi
GEMIGRAPH_HOST=gemigraph.rijndael.cc
path=$(curl -X POST https://${GEMIGRAPH_HOST}/submit \
--data-urlencode "title=$*" \
--data-urlencode "text=$(cat)" \
--silent --show-error)
echo "${GEMIGRAPH_HOST}${path}"