REBOL []

table/with [class: "table"] [
  thead [
    tr [
      th "Platform"
      th "Commit"
      th "Build Date (UTC)"
      th "Download"
      th "Size"
    ]
  ]
  foreach file read %builds/ [
    filename: rs-filename file
    platform: rs-platform file
    commit: rs-commit file
    mtime: modified? file
    size: size? file
    tr [
      td [
        b PLATFORMS/:platform
      ]
      td [
        a/with [href: join "https://github.com/rebol/r3/commit/" commit] commit
      ]
      td format-time/utc mtime "yyyy-MM-dd HH:mm"
      td [
        a/with [href: downloads/:platform/:filename] [
          i/with [class: "icon-file"] none
          yield filename  ;; maybe just `filename`
        ]
      ]
      td size
    ]
  ]
]