first commit

This commit is contained in:
2025-06-25 15:43:30 +02:00
commit eb4f0a1736
511 changed files with 56019 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
{{ with .Site.Data.pricing}}
{{ if .enable}}
<section class="pricing" id="pricing">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="section-title">
<h2>{{.title}}</h2>
<p>{{.subtitle}}
</p>
</div>
</div>
{{ range .itemPrices}}
<div class="col-lg-4 col-md-6">
<div class="pricing-wraper">
<div class="pricing-item">
{{if .badge}}
<span class="pricing-item-badge">Popular</span>
{{end}}
<span class="price">
{{.price}}<sup></sup>
</span>
<h3>{{.packcage}}</h3>
<p>
{{.description}}
</p>
</div>
<a href="{{ .buttonTarget | absURL}}" class="btn btn-primary">Join Us</a>
</div>
</div>
{{end}}
</div>
</div>
</section>
{{end}}
{{end}}