23 lines
767 B
HTML
23 lines
767 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}" dir="ltr">
|
|
{{ partial "head.html" . }}
|
|
<body style="background-color: #f0f1f2;">
|
|
{{ partial "header.html" . }}
|
|
<div class="card-content-container">
|
|
<header class="list-header">
|
|
<h1 class="list-header-title">Sensors + Smarts</h1>
|
|
<h2 class="list-header-subtext">There is so much actionable data that goes to waste. Let's put your data to work.</h2>
|
|
</header>
|
|
<main class="card-container">
|
|
{{.Content}}
|
|
<section class="card-columns">
|
|
{{ range .Paginator.Pages }}
|
|
{{ .Render "li" }}
|
|
{{ end }}
|
|
</section>
|
|
</main>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html> |