2022-11-28 00:19:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2023-01-29 03:05:02 +00:00
|
|
|
{{ template "htmlheader.html" . }}
|
2022-11-28 00:19:47 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-29 03:05:02 +00:00
|
|
|
{{ template "navbar.html" .}}
|
2022-11-28 00:19:47 +00:00
|
|
|
<main role="main">
|
|
|
|
<div class="jumbotron">
|
|
|
|
<div class="container">
|
|
|
|
<h1 class="display-3">Hello, world!</h1>
|
2023-01-29 03:05:02 +00:00
|
|
|
<h2><a
|
|
|
|
href="https://git.eeqj.de/sneak/gohttpserver">gohttpserver</a></h2>
|
2022-11-28 00:19:47 +00:00
|
|
|
<p>
|
|
|
|
This is a boilerplate application for you to use as a base for your
|
|
|
|
own sites and services.
|
|
|
|
</p>
|
2023-01-29 03:05:02 +00:00
|
|
|
<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>
|
2022-11-28 00:19:47 +00:00
|
|
|
<p>
|
|
|
|
<a class="btn btn-primary btn-lg" href="#" role="button"
|
|
|
|
>Learn more »</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 »</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 »</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 »</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
<!-- /container -->
|
|
|
|
</main>
|
|
|
|
|
2023-01-29 03:05:02 +00:00
|
|
|
{{ template "pagefooter.html" . }}
|
2022-11-28 00:19:47 +00:00
|
|
|
</body>
|
2023-01-29 03:05:02 +00:00
|
|
|
{{ template "htmlfooter.html" . }}
|
2022-11-28 00:19:47 +00:00
|
|
|
</html>
|