extends layout

block content
  a.btn(onclick="connect()") Connect
  &nbsp;
  a.btn(onclick="exec()") Exec
  hr

  .tabbable
    ul#tabs.nav.nav-tabs
    #tab-content.tab-content(style="font-size: 0.7em; padding: 5px")
  
  style
    .output div { 
      white-space: pre; 
      font-family: monospace; 
    }

    .output {
      overflow: auto;
      height: 500px; 
    }

    .stderr { color: red; background-color: pink;  }
    .stdout { color: green; background-color: lightgreen; }
    .exit { border-top: 1px solid green }

block scripts
  script(src="/javascripts/index.js")
