listmonk/docs/site/layouts/shortcodes/github.html
Kailash Nadh 684c15a404
Add static Hugo website and mkdocs documentation to docs directory. (#1261)
This commit merges the static website and docs that was on
https://github.com/knadh/listmonk-site repository into the main
listmonk repo.

It also adds a GitHub Actions workflow to public the sites on GitHub
Pages instead of Netlify.
2023-03-26 00:51:20 +05:30

17 lines
No EOL
556 B
HTML

<ul id="github" class="no">
{{ range .Page.Site.Data.github }}
<li class="row">
<div class="col2">
<span class="date">{{ dateFormat "Jan 2006" (substr .updated_at 0 10) }}</span>
</div>
<div class="col3">
<a href="{{ .url }}">{{ .name }}</a>
</div>
<div class="col7 last">
<span class="desc">{{ .description }}</span>
</div>
<div class="clear"> </div>
</li>
{{ end }}
</ul>
<div class="clear"> </div>