repos / zmx

session persistence for terminal processes
git clone https://github.com/neurosnap/zmx.git

Eric Bower  ·  2026-04-21

index.tmpl

 1{{define "base"}}
 2<!doctype html>
 3<html lang="en">
 4  <head>
 5    <title>zmx - session persistence for terminal sessions</title>
 6    <meta charset='utf-8'>
 7    <meta name="viewport" content="width=device-width, initial-scale=1">
 8    <meta name="keywords" content="zmx, session persistence, terminal, tool, linux">
 9
10    <link rel="stylesheet" href="https://pico.sh/syntax.css">
11    <link rel="stylesheet" href="https://pico.sh/smol.css">
12    <link rel="stylesheet" href="https://pico.sh/main.css">
13  </head>
14
15  <body>
16    <div class="debug-grid"></div>
17    <nav class="mk-nav">
18      <div class="flex flex-wrap items-center justify-center gap-2" style="margin-right: 20px;">
19        <a href="https://bower.sh/?tag=zmx" class="link-alt">
20          blog
21        </a>
22        <a href="https://github.com/neurosnap/zmx" class="link-alt">
23          src
24        </a>
25        <a href="https://web.libera.chat/gamja?autojoin=#pico.sh" class="link-alt">
26          chat
27        </a>
28      </div>
29    </nav>
30    <div class="post-group" style="flex-direction: row;">
31      <article class="md toc">
32        {{.Data.TocHtml}}
33      </article>
34
35      <main class="post">
36        <article class="md">
37          {{.Data.Html}}
38        </article>
39      </main>
40
41      <div class="toc"></div>
42    </div>
43  </body>
44</html>
45{{end}}