Packages

A minimal Elixir application that serves a real terminal in the browser using Plug and Cowboy.

Current section

Files

Jump to
exterm priv static index.html
Raw

priv/static/index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Terminal</title>
<link rel="stylesheet" href="xterm.css">
<link rel="stylesheet" href="terminal.css">
<script src="xterm.js"></script>
</head>
<body>
<div id="terminal"></div>
<script src="terminal.js"></script>
</body>
</html>