gemspace/cgi-example/index.gmi

17 lines
447 B
Plaintext
Executable File

#!/usr/bin/env python3
from helpers import show_header_ok
show_header_ok()
with open('README.md') as f:
contents = f.read()
print(contents)
print("## Project Source:")
print("=> https://tildegit.org/tomasino/gemspace/src/branch/master/cgi-example CGI Example Source on tildegit.org")
print("")
print("## Get Started")
print("=> login Login with your client certificate to begin")
#vim:fenc=utf-8:ts=4:sw=4:sta:noet:sts=4:fdm=marker:ai