#! /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-07 04:56:23 by stolfi"

def main():

  global last_edit
  

  title = "[075] Page f72r - Zodiac - Virgo"
  st = h.new_doc(title, "#eeffdd")
  
  h.section(st, 2, "Summary")

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

  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()

