diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/images/tmux3.png | bin | 0 -> 37945 bytes | |||
-rw-r--r-- | www/images/tmux4.png | bin | 0 -> 6175 bytes | |||
-rw-r--r-- | www/images/tmux5.png | bin | 0 -> 39923 bytes | |||
-rw-r--r-- | www/index.html.in | 64 | ||||
-rw-r--r-- | www/main.css | 50 |
5 files changed, 114 insertions, 0 deletions
diff --git a/www/images/tmux3.png b/www/images/tmux3.png Binary files differnew file mode 100644 index 00000000..689a2833 --- /dev/null +++ b/www/images/tmux3.png diff --git a/www/images/tmux4.png b/www/images/tmux4.png Binary files differnew file mode 100644 index 00000000..9e3da3f1 --- /dev/null +++ b/www/images/tmux4.png diff --git a/www/images/tmux5.png b/www/images/tmux5.png Binary files differnew file mode 100644 index 00000000..83cd7e15 --- /dev/null +++ b/www/images/tmux5.png diff --git a/www/index.html.in b/www/index.html.in new file mode 100644 index 00000000..e9ec46bd --- /dev/null +++ b/www/index.html.in @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>tmux</title> + <link rel="stylesheet" type="text/css" media="screen" href="main.css"/> + </head> + <body> + <div id="body-wrapper"> + <div id="left-menu-container"> + <p id="upper-left-title">tmux</p> + <ul id="left-menu"> + <li><a href="http://downloads.sourceforge.net/tmux/tmux-%%RELEASE%%.tar.gz">Download</a></li> + <li><a href="https://sourceforge.net/p/tmux/tmux-code/ci/master/tree/README">README</a></li> + <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=tmux&sektion=1">Manual Page</a></li> + <li><a href="https://sourceforge.net/p/tmux/tmux-code/ci/master/tree/FAQ">FAQ</a></li> + <li><a href="https://sourceforge.net/p/tmux/tmux-code/ci/master/tree/">Source Code</a></li> + <li><a href="http://sf.net/projects/tmux">SourceForge Page</a></li> + <li><a href="https://lists.sourceforge.net/lists/listinfo/tmux-users">Mailing List</a></li> + <li><a href="irc://irc.freenode.net/tmux">IRC Channel</a></li> + </ul> + </div> + <div id="main-content-wrapper"> + +<p><b>tmux is a terminal multiplexer</b></p> + +<p><b>What is a terminal multiplexer?</b> It lets you switch easily between +several programs in one terminal, detach them (they keep running in the +background) and reattach them to a different terminal. And do a lot more. See +<a href="http://www.openbsd.org/cgi-bin/man.cgi?query=tmux&sektion=1"> +the manual</a>.</p> + +<p><b><a href="http://downloads.sourceforge.net/tmux/tmux-%%RELEASE%%.tar.gz"> +Download tmux %%RELEASE%%</a></b> +<b><a href="https://sourceforge.net/p/tmux/tmux-code/ci/master/tree/CHANGES">(changelog)</a></b> or +<a href="https://sourceforge.net/p/tmux/tmux-code/ci/master/tree/"> +get the development version.</a> +tmux is hosted on +<a href="http://sf.net/projects/tmux">SourceForge</a> +and needs +<a href="http://www.monkey.org/~provos/libevent/">libevent</a> +and +<a href="http://invisible-island.net/ncurses/">ncurses</a>.</p> + +<p>For support contact the +<a href="mailto:tmux-users@lists.sf.net">tmux-users@lists.sf.net</a> +mailing list or IRC channel +<a href="irc://irc.freenode.net/tmux">#tmux on freenode</a>.</p> + +<p>There are some programs to use with tmux +<a href="https://github.com/search?q=tmux&type=Repositories&ref=simplesearch"> +on GitHub</a> and a +<a href="http://pragprog.com/book/bhtmux/tmux">book on tmux</a>.</p> + +<div id="screenshots"> + <a href="tmux3.png"><img src="small-tmux3.png" alt="Screenshot"/></a> + <a href="tmux4.png"><img src="small-tmux4.png" alt="Screenshot"/></a> + <a href="tmux5.png"><img src="small-tmux5.png" alt="Screenshot"/></a> +</div> + </div> + </div> + </body> +</html> diff --git a/www/main.css b/www/main.css new file mode 100644 index 00000000..28b58424 --- /dev/null +++ b/www/main.css @@ -0,0 +1,50 @@ +body { + font-family: Sans-Serif; + font-size: 10pt; + background-color: white; +} +#body-wrapper { + overflow: auto; +} +#upper-left-title { + font-size:xx-large; + margin-top: 0; +} +#left-menu li { + list-style: none; + margin-top: 1em; +} +.menu-headings { + border-top: 1px solid black; + border-bottom: 1px solid black; + font-weight: bold; + padding: 0.5em; +} +#left-menu-container { + padding-right: 0.5em; + margin-top: 0.5em; + margin-bottom: 0.5em; + margin-right: 0.5em; + border-right: 3px solid black; + text-align: right; + width: 12em; + float: left; +} +#main-content-wrapper { + margin-left: 2em; + margin-right: 4em; +} +#main-content-wrapper li { + list-style: disc; + margin-left: 12em +} +#screenshots { + text-align: center; + margin: 1em; + margin-left: 10em; +} +#screenshots img { + text-align: center; + margin: 0.5em; +} + |