gohttpserver/templates/index.html

82 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{ template "htmlheader.html" . }}
</head>
<body>
{{ template "navbar.html" .}}
<main role="main">
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Hello, world!</h1>
<h2><a
href="https://git.eeqj.de/sneak/gohttpserver">gohttpserver</a></h2>
<p>
This is a boilerplate application for you to use as a base for your
own sites and services.
</p>
<p>
Find more info at <a
href="https://git.eeqj.de/sneak/gohttpserver">https://git.eeqj.de/sneak/gohttpserver</a>.
</p>
<p>
This software is provided by <a
href="https://sneak.berlin">@sneak</a>
and is released unconditionally into the public domain.
</p>
<p>
<a class="btn btn-primary btn-lg" href="#" role="button"
>Learn more &raquo;</a
>
</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Batteries Included</h2>
<p>
This includes a router, bundling of static assets, and example
handlers.
</p>
<p>
<a class="btn btn-secondary" href="#" role="button"
>View details &raquo;</a
>
</p>
</div>
<div class="col-md-4">
<h2>Best Practices</h2>
<p>
This template repo follows best practices from experienced
application developers.
</p>
<p>
<a class="btn btn-secondary" href="#" role="button"
>View details &raquo;</a
>
</p>
</div>
<div class="col-md-4">
<h2>Easy To Use</h2>
<p>This repo builds under Docker and is ready to go.</p>
<p>
<a class="btn btn-secondary" href="#" role="button"
>View details &raquo;</a
>
</p>
</div>
</div>
<hr />
</div>
<!-- /container -->
</main>
{{ template "pagefooter.html" . }}
</body>
{{ template "htmlfooter.html" . }}
</html>