citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 985c3c7591ddf9ad2a1fd92d4335bcf1117cc6b6
parent 4524c14470af79854d3a6df5e261fc61bfd6c8c7
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Sun,  3 Apr 2016 00:02:40 -0600

www: add some content

Diffstat:
Mwww/citrun.css | 3++-
Mwww/index.html | 38++++++++++++++++++++++++++++++++------
2 files changed, 34 insertions(+), 7 deletions(-)

diff --git a/www/citrun.css b/www/citrun.css @@ -6,7 +6,8 @@ li { line-height: 1.5em; } -.column { +.main { max-width: 80em; margin: auto; + font: monospace; } diff --git a/www/index.html b/www/index.html @@ -1,8 +1,34 @@ <html> -<h1>citrun</h1> -<h2>Executive Summary<h2> -<h2>Check if it works<h2> -<h2>Check if it works2<h2> -<h2>Check if it works2<h2> -<h2>Check if it works999<h2> + +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <meta name="viewport" content="width=device-width" /> + <title>C It Run</title> + <link rel="stylesheet" type="text/css" href="citrun.css" /> +</head> + +<body> +<div class="main"> + <h1>C It Run</h1> + <hr> + <p> C It Run is a suite of tools that lets you watch your C source code + execute. Its main purpose is to provide insight into what your program + is actually doing. + </p> + <h2>Packages</h2> + <p> No official release yet. Current development packages are being + created by continuous integration: + <ul> + <li><a href="/pkg/sparc64/citrun-0.tgz">OpenBSD sparc64</a> + <li><a href="/pkg/amd64/citrun-0.tgz">OpenBSD amd64</a> + <li><a href="/pkg/amd64/citrun-0.deb">Debian amd64</a> + <li><a href="/pkg/amd64/citrun-0.dmg">Mac OS X amd64</a> + </ul> + </p> + <h2>Source</h2> + Current development sources are + <a href="/src/citrun-DEV.tar.gz">available here</a>. +</div> +</body> + </html>