Files
geminipage/index.gmi
deepend e1f0bf0db2 added a single additional line to 'index.gmi' to ensure that
a variety of different user's posts is always shown on the main index page.
I also made two changes to 'gemlog.gmi' that fix the handling of tabs and
CRLF newlines respectively. thanks to ~seifferth
2024-07-02 21:19:33 +00:00

29 lines
800 B
Gemtext
Executable File

#!/bin/sh
printf "20 text/gemini\r\n"
cat <<EOF
hello gemini!!
$(printf '```')
$(cowsay WELCOME TO TILDE.CLUB A PLACE FOR WEBPAGES)
$(printf '```')
We're a a digital community for socializing, learning, and making cool stuff. Visit us in gopher and html lands for more info.
Here are some recent gemlog posts by our esteemed users:
$(./gemlog.gmi | grep \
'^=>[ \t]\+[^ ]\+[ \t]\+[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]' |
awk 'i[$NF]++ < 1' |
head -n6)
=> gemlog.gmi See the complete list of aggregated gemlog posts
To see a complete list of gemini users on this server, choose one of the following links:
=> users.gmi All gemini users (sorted alphabetically)
=> users-lastmod.gmi All gemini users (sorted by last modification of their gemini capsule)
EOF