#! /usr/bin/python3

import sys, re
import html_gen as h
from process_funcs import bash
import html_report_funcs as hr

last_edit = "Last edited on 2025-11-19 07:38:09 by stolfi"

def main():

  global last_edit
  
  title = "Page ???"
  st = h.new_doc(title, "#eeffdd")
  
  h.section(st, 2, "Summary")

  h.parags(st, """Page ???""")

  h.section(st, 2, "All clips")

  h.parags(st, """???""")

  hr.links_section(st)

  h.output_doc(st, sys.stdout, 99, last_edit)
  return 0
  # ----------------------------------------------------------------------

main()

