1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-29 14:34:37 +04:00
Files
tabler/pages/_docs/payments.md
T
2019-12-06 22:24:55 +01:00

36 lines
866 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Payments
menu: docs.payments
plugin: payments
---
### Payment
{% example %}
{% include ui/payment.html payment="shopify"%}
{% include ui/payment.html%}
{% include ui/payment.html payment="paypal"%}
{% endexample %}
### Payment sizes
Using Bootstraps typical naming structure, you can create a standard payment, or scale it up to different sizes based on whats needed.
{% example %}
{% include ui/payment.html payment="shopify" size="xl"%}
{% include ui/payment.html size="lg"%}
{% include ui/payment.html payment="paypal" size="md"%}
{% include ui/payment.html payment="amazon"%}
{% endexample %}
### Types
<table>
{% for payment in site.data.payments %}
<tr>
<td>{% include ui/payment.html payment=payment.payment %}</td>
<td><code>{{ payment.payment }}</code></td>
<td>{{ payment.name }}</td>
</tr>
{% endfor %}
</table>