Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « pricing « layouts - github.com/themefisher/bigspring-hugo-startup-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bf5b51d22356d91b92b0243c69ae85360fb3ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{{ define "main" }}

{{ partial "page-header.html" . }}
<section class="section">
  <div class="container pricing-container">
    <div class="row justify-content-center align-items-center">
      <div class="col-lg-4 mb-5 mb-lg-0 px-3 pl-3 px-lg-0">
        {{ with .Params.basic }}
        <div class="card shadow">
          <div class="card-body text-center py-5">
            <h3 class="mb-4">{{ .name | markdownify }}</h3>
            <span class="price">{{ .price }}</span><span>/{{ .price_per }}</span>
            <p class="lead">{{ .info | markdownify }}</p>
            <ul class="list-unstyled mb-5">
              {{ range .services }}
              <li>{{ . | markdownify }}</li>
              {{ end }}
            </ul>
            {{ if .button.enable }}
            {{ with .button }}
            <a href="{{ .link | relURL }}" title="{{ .label }}" class="btn btn-outline-primary">{{ .label }}</a>
            {{ end }}
            {{ end }}
          </div>
        </div>
        {{ end }}
      </div>
      <div class="col-lg-4 col-recommended">
        {{ with .Params.professional }}
        <div class="card border-0 shadow-lg">
          <div class="card-body text-center py-5">
            <h3 class="mb-4">{{ .name | markdownify }}</h3>
            <span class="price">{{ .price }}</span><span>/{{ .price_per }}</span>
            <p class="lead">{{ .info | markdownify }}</p>
            <ul class="list-unstyled mb-5">
              {{ range .services }}
              <li>{{ . | markdownify }}</li>
              {{ end }}
            </ul>
            {{ if .button.enable }}
            {{ with .button }}
            <a href="{{ .link | relURL }}" title="{{ .label }}" class="btn btn-primary">{{ .label }}</a>
            {{ end }}
            {{ end }}
          </div>
        </div>
        {{ end }}
      </div>
      <div class="col-lg-4 mb-5 mb-lg-0 px-3 pr-3 px-lg-0">
        {{ with .Params.business }}
        <div class="card shadow">
          <div class="card-body text-center py-5">
            <h3 class="mb-4">{{ .name | markdownify }}</h3>
            <span class="price">{{ .price }}</span><span>/{{ .price_per }}</span>
            <p class="lead">{{ .info | markdownify }}</p>
            <ul class="list-unstyled mb-5">
              {{ range .services }}
              <li>{{ . | markdownify }}</li>
              {{ end }}
            </ul>
            {{ if .button.enable }}
            {{ with .button }}
            <a href="{{ .link | relURL }}" title="{{ .label }}" class="btn btn-outline-primary">{{ .label }}</a>
            {{ end }}
            {{ end }}
          </div>
        </div>
        {{ end }}
      </div>
    </div>
  </div>
</section>

<!-- call to action -->
{{ if .Params.call_to_action.enable }}
{{ with .Params.call_to_action }}
<section class="section">
  <div class="container section shadow rounded-lg px-4">
    <div class="row align-items-center justify-content-center text-center text-md-left">
      <div class="col-lg-4 col-md-5 mb-4 mb-md-0">
        <img src="{{ .image | relURL }}" alt="" class="img-fluid">
      </div>
      <div class="col-lg-5 col-md-6">
        <h2 class="section-title">{{ .title | markdownify }}</h2>
        {{with .content }}<p class="mb-4">{{ . | markdownify }}</p>{{ end }}
        {{ if .button.enable }}
        {{ with .button }}
        <a href="{{ .link | relURL }}" title="{{ .label }}" class="btn btn-primary">{{ .label }}</a>
        {{ end }}
        {{ end }}
      </div>
    </div>
  </div>
</section>
{{ end }}
{{ end }}
<!-- /call to action -->

{{ end }}