#! /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 2026-02-14 17:20:38 by stolfi"

def main():

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

  h.parags(st, """Page f115r is on a bifolio that seems
    to have been replaced by Rt1, rather than retraced.  Investigate.
    """)

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

