summaryrefslogtreecommitdiff
path: root/layouts/services/single.html
blob: 9f2354b0a4f973fa344ac8fc0d4d1fad2b00fff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<article>
	<header>
		<h1>{{ .Title }}</h1>
	</header>
	<main>
		<ul>
			<li><strong>Base URL</strong>: <a href="{{ .Params.location }}">{{ .Params.location }}</a></li>
			<li><strong>Upstream</strong>: <a href="{{ .Params.upstream }}">{{ .Params.upstream }}</a></li>
		</ul>

		{{ .Content }}
	</main>
</article>
{{ end }}