URI: 
       # Pharos / Tags
  HTML fossil clone https://chiselapp.com/user/bencollver/repository/pharos
   DIR  Timeline 
   DIR  Files 
   DIR  Branches 
   DIR (Tags)
   DIR  Tickets 
   DIR  Wiki 
       ---
       
       # Reference
       
       fossil sql --readonly
       
         SELECT     substr(tag.tagname, 5) AS tagname,    
         datetime(MAX(tagxref.mtime)) AS mtime FROM repository.tag JOIN
         repository.tagxref ON tagxref.tagid=tag.tagid WHERE    
         tag.tagname LIKE 'sym-%%' AND     tagxref.tagtype = 1 GROUP BY
         tag.tagid, tag.tagname ORDER BY MAX(tagxref.mtime) DESC