swindon 0.7.8

An HTTP edge (frontend) server with smart websockets support
## syntax: indent
<!DOCTYPE html>
<html>
  <head>
    <title>Listing of the directory {{ path }}</title>
  </head>
  <body>
    <h1>Listing of the directory {{ path }}</h1>
    <ul>
      ## for entry in entries
      <li>
        ## if entry.is_dir
          <a href="{{ path }}/{{ entry.name }}/">{{ entry.name }}/</a>
        ## else
          <a href="{{ path }}/{{ entry.name }}">{{ entry.name }}</a>
        ## endif
        {# TODO(tailhook) add some file attributes #}
      </li>
      ## endfor
    </ul>
    <hr>
    <p>Yours faithfully,<br>
        swindon web server
    </p>
  </body>
</html>