diff options
Diffstat (limited to 'site/layouts/partials/table-column.html')
| -rw-r--r-- | site/layouts/partials/table-column.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/site/layouts/partials/table-column.html b/site/layouts/partials/table-column.html new file mode 100644 index 0000000..f062e14 --- /dev/null +++ b/site/layouts/partials/table-column.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 center"> + <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> |
