diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 47 |
1 files changed, 45 insertions, 2 deletions
@@ -1,2 +1,45 @@ -<h1>Under construction</h1> -<p>Ah, the good old days...</p> +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset="utf-8"/> +<title>erlang.mk</title> +</head> +<style type="text/css"><!-- +body{font-family:"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;margin:0 auto;padding:0;width:906px} +a{color:#d9230f;text-decoration:none} +header {margin:auto;width:450px} +header section{display:inline-block;vertical-align:middle} +header section.left{text-align:right} +header section.right{text-align:left} +header section a{display:block;margin:1.5em 1em} +header a.logo{display:inline-block;margin:auto;vertical-align:middle;width:206px} +main h1{text-align:center} +--></style> +<body> +<header> + <section class="left"> + <a href="/guide/">User guide</a> + <a href="/tutorials/">Tutorials</a> + </section> + <a href="/" class="logo"><img src="res/logo-small.png" height="200" width="206"/></a> + <section class="right"> + <a href="/packages/">Packages</a> + <a href="https://github.com/ninenines/erlang.mk/issues">Issues?</a> + </section> +</header> +<main> +<h1>A build tool for Erlang that just works.</h1> +<p>Erlang.mk is a modern build tool that embraces the diversity of the +Erlang ecosystem and provides support for everything you need.</p> +<p>It runs everywhere: Linux, FreeBSD, OSX and even Windows.</p> +<p>Getting started with Erlang.mk is easy as pie. Even kids can do it.</p> +<p>Erlang.mk ships with hundreds of Erlang packages.</p> +<p>You don't need to be a Makefile pro. It's that simple:</p> +<pre> +PROJECT = webchat +DEPS = cowboy +include erlang.mk +</pre> +</main> +</body> +</html> |