templates/static/products_and_services.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'frontend' %}
  2. {% extends 'base_about.html.twig' %}
  3. {% block title %}{{ 'about.title.product'|trans }}{% endblock %}
  4. {% block head_title %}{{ 'about.title.product'|trans }}{% endblock %}
  5. {% block content_inner %}
  6.     <div class="mb-5">
  7.         We are dedicated to clothing fetish entertainment with a wide variety of products and services. Your monthly membership fee supports the club and gives you access to the Feed. You can also buy credits to purchase Videos, Message content, or Deals.
  8.     </div>
  9.     <div class="row product-wrap mb-5">
  10.         <div class="col-12 col-lg-6 mb-5 mb-lg-0">
  11.             <div class="card card-bordered">
  12.                 <div class="card-inner product-item">
  13.                     <div class="product-icon">
  14.                         <i class="dp-icon-mails_premium"></i>
  15.                     </div>
  16.                     <h3 class="product-headline mb-3">
  17.                         Messages
  18.                     </h3>
  19.                     <div class="product-text">
  20.                         Receive Messages from the Club and Club Mates in your account inbox with exclusive offers for downloadable pictures, hot videos, and more!
  21.                     </div>
  22.                 </div>
  23.             </div>
  24.         </div>
  25.         <div class="col-12 col-lg-6">
  26.             <div class="card card-bordered">
  27.                 <div class="card-inner product-item">
  28.                     <div class="product-icon">
  29.                         <i class="dp-icon-feed_premium"></i>
  30.                     </div>
  31.                     <h3 class="product-headline mb-3">
  32.                         Feed
  33.                     </h3>
  34.                     <div class="product-text">
  35.                         See our exceptional Feed: pics and vids, trailers, announcements, backstage footage, and more, with at least 3 posts a week.
  36.                     </div>
  37.                 </div>
  38.             </div>
  39.         </div>
  40.     </div>
  41.     <div class="row product-wrap mb-5">
  42.         <div class="col-12 col-lg-6 mb-5 mb-lg-0">
  43.             <div class="card card-bordered">
  44.                 <div class="card-inner product-item">
  45.                     <div class="product-icon">
  46.                         <i class="dp-icon-video"></i>
  47.                     </div>
  48.                     <h3 class="product-headline mb-3">
  49.                         Videos
  50.                     </h3>
  51.                     <div class="product-text">
  52.                         Buy credits and use them to purchase videos, instantly available for download.
  53.                     </div>
  54.                 </div>
  55.             </div>
  56.         </div>
  57.         <div class="col-12 col-lg-6">
  58.             <div class="card card-bordered">
  59.                 <div class="card-inner product-item">
  60.                     <div class="product-icon">
  61.                         <i class="dp-icon-deals_1"></i>
  62.                     </div>
  63.                     <h3 class="product-headline mb-3">
  64.                         Deals
  65.                     </h3>
  66.                     <div class="product-text">
  67.                         Buy video Deals using your credits. The earlier you buy, the more you save!
  68.                     </div>
  69.                 </div>
  70.             </div>
  71.         </div>
  72.     </div>
  73. {% endblock %}