mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-15 04:24:44 +00:00
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
{{ define "main" }}
|
|
|
|
<div class="container">
|
|
<article>
|
|
<header class="article-header">
|
|
<div class="thumb">
|
|
<div>
|
|
<h1><a href="/{{ .Params.servicename }}">{{ .Params.servicename }}</a></h1>
|
|
<div>
|
|
<a href="/{{ .Params.servicename }}"><u>Readme</u></a>
|
|
|
|
<a href="/{{ .Params.servicename }}-microjs"><u>Micro.js</u></a>
|
|
|
|
<a href="/{{ .Params.servicename }}/api"><u>API Spec</u></a>
|
|
|
|
<a href="{{ $.Site.Params.source }}/tree/master/{{ .Params.servicename }}"><u>Source</u></a>
|
|
</div>
|
|
<div class="post-meta">
|
|
<!-- <div>
|
|
By {{ .Params.author }} on <time>{{ .Date.Format "January 02, 2006" }}</time>
|
|
</div>
|
|
-->
|
|
<div class="tags">
|
|
{{ range (.GetTerms "labels") }}
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</article>
|
|
|
|
<div class="article-post">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
{{ if .Section }}
|
|
<nav class="flex container suggested">
|
|
{{ with .PrevInSection }}
|
|
<a rel="prev" href="{{ .RelPermalink }}" title="Previous post (older)">
|
|
<span>Previous</span>
|
|
{{ .Title }}
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ with .NextInSection }}
|
|
<a rel="next" href="{{ .RelPermalink }}" title="Next post (newer)">
|
|
<span>Next</span>
|
|
{{ .Title }}
|
|
</a>
|
|
{{ end }}
|
|
</nav>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ end }}
|