mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-15 12:05:50 +08:00
684c15a404
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.
17 lines
No EOL
556 B
HTML
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> |