lariv-rs 0.1.0

Compile-time plugin web application framework built on Axum, SeaORM, Maud, and HTMX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="gjs-pricing grid grid-cols-1 md:grid-cols-2 gap-6" data-gjs-type="p_website.pricing-tables" data-gjs-custom-name="Pricing tables" data-gjs-droppable="true">
  <div class="gjs-pricing-col card bg-base-100 shadow-md border border-base-200">
    <div class="card-body items-center text-center">
      <h3 class="card-title" data-gjs-editable="true">Starter</h3>
      <p class="gjs-pricing-price text-4xl font-bold text-primary my-2" data-gjs-editable="true">$9/mo</p>
      <ul class="menu menu-vertical w-full text-left" data-gjs-droppable="true"><li data-gjs-editable="true">Feature one</li><li data-gjs-editable="true">Feature two</li></ul>
      <a class="gjs-button btn btn-primary btn-block mt-4" data-gjs-type="p_website.button" href="#" data-gjs-editable="true">Choose</a>
    </div>
  </div>
  <div class="gjs-pricing-col card bg-base-100 shadow-md border border-base-200">
    <div class="card-body items-center text-center">
      <h3 class="card-title" data-gjs-editable="true">Pro</h3>
      <p class="gjs-pricing-price text-4xl font-bold text-primary my-2" data-gjs-editable="true">$29/mo</p>
      <ul class="menu menu-vertical w-full text-left" data-gjs-droppable="true"><li data-gjs-editable="true">Everything in Starter</li><li data-gjs-editable="true">Priority support</li></ul>
      <a class="gjs-button btn btn-primary btn-block mt-4" data-gjs-type="p_website.button" href="#" data-gjs-editable="true">Choose</a>
    </div>
  </div>
</div>