diff options
| author | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-01 16:39:14 +0200 |
|---|---|---|
| committer | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-01 16:39:14 +0200 |
| commit | bd9a50e9c824e89d8a91fd54c8bc838cdfa796f6 (patch) | |
| tree | 06254243ccfc713ab0801e748b16dade68ff73ca /site/layouts/partials/pricing-card.html | |
| parent | dedfd8a8098db999f81a55a845e0e4d041f9d7a8 (diff) | |
Initial commit
Diffstat (limited to 'site/layouts/partials/pricing-card.html')
| -rw-r--r-- | site/layouts/partials/pricing-card.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/site/layouts/partials/pricing-card.html b/site/layouts/partials/pricing-card.html new file mode 100644 index 0000000..2f009b2 --- /dev/null +++ b/site/layouts/partials/pricing-card.html @@ -0,0 +1,27 @@ +<div class="ph2"> + + <!-- Title --> + <h3 class="b f5 grey-3 tc lh-title mb3">{{.plan}}</h3> + + <!-- Price --> + <p class="primary f1 b tc lh-title"> + <span class="f4">$</span>{{.price}} + </p> + + <!-- Description --> + <p class="b">{{.description}}</p> + + <!-- Features --> + <ul> + <li> + <p class="pb2 mb2 divider">{{.item1}}</p> + </li> + <li> + <p class="pb2 mb2 divider">{{.item2}}</p> + </li> + <li> + <p>{{.item3}}</p> + </li> + </ul> + +</div> |
