mirror of
https://github.com/ivabus/www
synced 2024-11-15 23:35:06 +03:00
36 lines
670 B
HTML
36 lines
670 B
HTML
{{ define "main" }}
|
|
|
|
<section>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="package-thumbnail gray-bg">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<h3>{{- .Title -}}</h3>
|
|
{{ range where $.Site.Data.packages "name" .Title }}
|
|
<p>{{- .desc -}}</p>
|
|
{{ if not (eq .homepage "") }}
|
|
{{- partial "detail-btn-large.html" .homepage -}}
|
|
{{end}}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{- partial "clipboard-copy.html" -}}
|
|
|
|
<style>
|
|
|
|
.package-thumbnail{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: gray;
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ end }}
|