2022-10-12 21:38:50 +03:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<div class="package-thumbnail gray-bg">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
2022-10-14 04:46:45 +03:00
|
|
|
<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 }}
|
2022-10-12 21:38:50 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2022-10-17 19:47:08 +03:00
|
|
|
{{- partial "clipboard-copy.html" -}}
|
2022-10-12 21:38:50 +03:00
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
.package-thumbnail{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{{ end }}
|