trillogy.co Open in urlscan Pro
23.227.38.32  Public Scan

Submitted URL: http://trillogy.co/
Effective URL: https://trillogy.co/
Submission: On August 29 via api from IN — Scanned from CA

Form analysis 2 forms found in the DOM

POST /cart

<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
  <div class="grid grid-cols-1 gap-gutter bg-border">
    <template x-for="(item, index) in state.items" :key="item.key">
      <div class="flex py-4 section-x-padding transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
        <template x-if="!(item.featured_image.url === null)">
          <div class="flex-shrink-0 w-10 md:w-20 mr-4">
            <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                      <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
          <template x-if="item.variant_title">
            <p class="text-sm" x-text="item.variant_title"></p>
          </template>
          <template x-if="item.selling_plan_allocation">
            <p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
          </template>
          <template x-for="property in flatProperties(item.properties)" :key="property.name">
            <p class="text-sm">
              <span x-text="property.name"></span>: <span x-text="property.value"></span>
            </p>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <template x-if="allocation.amount > 0">
                    <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                  </template>
                </li>
              </template>
            </ul>
          </template>
          <div class="flex mt-1 lg:mt-2 items-center">
            <button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
              </svg>
            </button>
            <input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
              @keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
            <button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
              </svg>
            </button>
          </div>
          <button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
            <small>Remove </small>
            <span class="visually-hidden" x-text="item.title"></span>
          </button>
        </div>
        <div class="ml-1 text-right">
          <template x-if="item.line_level_discount_allocations.length">
            <div>
              <span class="visually-hidden">Regular price</span>
              <del class="line-through" x-html="formatMoney(item.original_price)"></del>
              <span class="visually-hidden">Sale price</span>
              <span class="" x-html="formatMoney(item.final_line_price)"></span>
            </div>
          </template>
          <template x-if="!item.line_level_discount_allocations.length">
            <span class="" x-html="formatMoney(item.final_line_price)"></span>
          </template>
          <template x-if="item.unit_price_measurement">
            <div class="text-xs">
              <span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
              <span x-text="item.unit_price_measurement.reference_unit"></span>
            </div>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="hidden lg:block mt-1 text-sm text-scheme-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <template x-if="allocation.amount > 0">
                    <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                  </template>
                </li>
              </template>
            </ul>
          </template>
        </div>
      </div>
    </template>
  </div>
  <div class="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
    <div :class="{ 'opacity-50  cursor-wait': updating }">
      <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
        <p class="flex justify-between text-scheme-accent">
          <span class="visually-hidden">Discount</span>
          <span x-text="application.title"></span>
          <span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
        </p>
      </template>
      <p class="flex justify-between">
        <span>Subtotal</span>
        <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
      </p>
      <p class="my-2 md:my-4 text-sm accent-links-scheme text-right"> Taxes and shipping calculated at checkout </p>
      <div class="text-right">
        <div>
          <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full  bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text"
            :disabled="updating" value="Check out">
        </div>
      </div>
    </div>
  </div>
</form>

POST /contact#Contact-footer

<form method="post" action="/contact#Contact-footer" id="Contact-footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="lg:ml-4 lg:flex items-end">
    <label class="visually-hidden" for="Email-footer">Email address</label>
    <input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-footer" value="" placeholder="Email address" autocorrect="off" autocapitalize="off">
    <button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-scheme-accent border-b-text border-scheme-text  hover:border-scheme-accent pb-1" type="submit" name="commit" id="Subscribe">
      <span class="uppercase whitespace-nowrap">Subscribe&nbsp;→</span>
    </button>
  </div>
</form>

Text Content

Skip to content
Menu
Close
 * NEW SHORTS!
 * $9 SHORTS
 * HOODIES
 * T-SHIRTS
   * BEST SELLING TEES
   * BASKETBALL TEES
   * FOOTBALL TEES
   * MUSIC TEES
   * MOVIE TEES

 * SIZE GUIDES
 * SHIPPING
 * RETURNS
 * TRACK MY ORDER
 * CONTACT US


YOUR CART - 0 ITEMS

Close

Your cart is currently empty.

Enable cookies to use the shopping cart

:

−


Remove
Regular price Sale price
/
−

Discount

Subtotal

Taxes and shipping calculated at checkout




Close

WAREHOUSE SALE 70% OFF!

0 items
Menu




0 items


BASKETBALL TEES

 * JORDAN V4 TEE - [DS]
   
   JORDAN V4 TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE IVERSON TEE
   
   BIG FACE IVERSON TEE
   
   Regular price$40.00 Sale price$12.99
 * DREAM TEAM TEE - [DS]
   
   DREAM TEAM TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * UNC JORDAN TEE - [DS]
   
   UNC JORDAN TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * 6 RINGS TEE - [DS]
   
   6 RINGS TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE LEBRON TEE
   
   BIG FACE LEBRON TEE
   
   Regular price$40.00 Sale price$12.99
 * 2003 NBA DRAFT TEE - [DS]
   
   2003 NBA DRAFT TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * SHAI TEE - [DS]
   
   SHAI TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE JORDAN TEE
   
   BIG FACE JORDAN TEE
   
   Regular price$40.00 Sale price$12.99
 * MAGIC JOHNSON TEE - [DS]
   
   MAGIC JOHNSON TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * SPACE JAM JORDAN 2 TEE
   
   SPACE JAM JORDAN 2 TEE
   
   Regular price$40.00 Sale price$12.99
 * AIR DIOR TEE
   
   AIR DIOR TEE
   
   Regular price$40.00 Sale price$12.99
 * VICTOR WEMBANYAMA TEE
   
   VICTOR WEMBANYAMA TEE
   
   Regular price$40.00 Sale price$12.99
 * 2023 NBA CHAMPIONS TEE - [DS]
   
   2023 NBA CHAMPIONS TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * 2023 NBA FINALS TEE - [DS]
   
   2023 NBA FINALS TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * CHOSEN ONE TEE - [DS]
   
   CHOSEN ONE TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE MELO TEE
   
   BIG FACE MELO TEE
   
   Regular price$40.00 Sale price$12.99
 * DEVIN BOOKER 2 TEE - [DS]
   
   DEVIN BOOKER 2 TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * LAKERS SHAQ TEE - [DS]
   
   LAKERS SHAQ TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * MICHAEL JORDAN TEE - [DS]
   
   MICHAEL JORDAN TEE - [DS]
   
   Regular price$40.00 Sale price$12.99

View all →


FOOTBALL TEES

 * BIG FACE OBJ TEE
   
   BIG FACE OBJ TEE
   
   Regular price$40.00 Sale price$12.99
 * ODELL BECKHAM JR - RAVENS TEE
   
   ODELL BECKHAM JR - RAVENS TEE
   
   $9.99
 * LAMAR JACKSON TEE
   
   LAMAR JACKSON TEE
   
   $9.99
 * BO JACKSON TEE - [DS]
   
   BO JACKSON TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * JUSTIN JEFFERSON 2 TEE
   
   JUSTIN JEFFERSON 2 TEE
   
   $9.99
 * TOM BRADY TEE - [DS]
   
   TOM BRADY TEE - [DS]
   
   from $48.00
 * JAMARR CHASE TEE
   
   JAMARR CHASE TEE
   
   $9.99
 * SAQUON BARKLEY TEE - [DS]
   
   SAQUON BARKLEY TEE - [DS]
   
   from $48.00
 * RANDY MOSS TEE
   
   RANDY MOSS TEE
   
   $9.99
 * CAM NEWTON TEE
   
   CAM NEWTON TEE
   
   $9.99
 * JERRY RICE TEE
   
   JERRY RICE TEE
   
   $9.99
 * DEION SANDERS COWBOYS TEE
   
   DEION SANDERS COWBOYS TEE
   
   $9.99
 * JULIO JONES TEE
   
   JULIO JONES TEE
   
   $9.99
 * KYLER MURRAY TEE
   
   KYLER MURRAY TEE
   
   $9.99
 * DAN MARINO TEE
   
   DAN MARINO TEE
   
   $9.99
 * AMON-RA TEE
   
   AMON-RA TEE
   
   Regular price$40.00 Sale price$12.99
 * DEION SANDERS 49ERS TEE
   
   DEION SANDERS 49ERS TEE
   
   $9.99
 * JOE MONTANA TEE
   
   JOE MONTANA TEE
   
   $9.99
 * DREW BREES TEE
   
   DREW BREES TEE
   
   $9.99
 * DK METCALF TEE
   
   DK METCALF TEE
   
   $9.99

View all →


MOVIE TEES

 * GOODFELLAS VINTAGE TEE - [079]
   
   GOODFELLAS VINTAGE TEE - [079]
   
   Regular price$40.00 Sale price$12.99
 * FORREST GUMP TEE - [DS]
   
   FORREST GUMP TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * BOYZ N THE HOOD TEE
   
   BOYZ N THE HOOD TEE
   
   Regular price$40.00 Sale price$12.99
 * UNCLE PHIL TEE - [DS]
   
   UNCLE PHIL TEE - [DS]
   
   from $48.00
 * WOLF OF WALL STREET TEE
   
   WOLF OF WALL STREET TEE
   
   from $38.00
 * KILL BILL TEE
   
   KILL BILL TEE
   
   Regular price$40.00 Sale price$12.99
 * REMEMBER THE TITANS TEE
   
   REMEMBER THE TITANS TEE
   
   Regular price$40.00 Sale price$12.99
 * BARBIE TEE
   
   BARBIE TEE
   
   Regular price$40.00 Sale price$12.99
 * BRUCE LEE TEE
   
   BRUCE LEE TEE
   
   Regular price$40.00 Sale price$12.99
 * MICHAEL MYERS TEE - [DS]
   
   MICHAEL MYERS TEE - [DS]
   
   Regular price$40.00 Sale price$12.99

View all →


MUSIC TEES

 * DRAKE - HER LOSS TEE
   
   DRAKE - HER LOSS TEE
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE TRAVIS TEE
   
   BIG FACE TRAVIS TEE
   
   Regular price$40.00 Sale price$12.99
 * ITS ALL A BLUR TEE - [DS]
   
   ITS ALL A BLUR TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * FUTURE 2 TEE
   
   FUTURE 2 TEE
   
   Regular price$40.00 Sale price$12.99
 * THE WEEKND 3 TEE - [DS]
   
   THE WEEKND 3 TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * SZA SOS 2 TEE - [DS]
   
   SZA SOS 2 TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * SADE TEE - [DS]
   
   SADE TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * PLAYBOI CARTI 3 TEE
   
   PLAYBOI CARTI 3 TEE
   
   Regular price$40.00 Sale price$12.99
 * POST MALONE TEE
   
   POST MALONE TEE
   
   Regular price$40.00 Sale price$12.99
 * BRENT FAIYAZ 2 TEE - [DS]
   
   BRENT FAIYAZ 2 TEE - [DS]
   
   Regular price$40.00 Sale price$12.99
 * J COLE TEE
   
   J COLE TEE
   
   Regular price$40.00 Sale price$12.99
 * BIG FACE ICE SPICE TEE
   
   BIG FACE ICE SPICE TEE
   
   Regular price$40.00 Sale price$12.99

View all →


$9 SHORTS!

 * CAMO (GRAY) - MESHORTS
   
   CAMO (GRAY) - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * CAMO BLUE - MESHORTS
   
   CAMO BLUE - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * CAMO PINK - MESHORTS
   
   CAMO PINK - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * MEW - MESHORTS
   
   MEW - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * KAMI - MESHORTS
   
   KAMI - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * LOVE (BLACK) - MESHORTS
   
   LOVE (BLACK) - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * LOVE (WHITE) - MESHORTS
   
   LOVE (WHITE) - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * SPACE JAY - MESHORTS
   
   SPACE JAY - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * SPARKLV - MESHORTS
   
   SPARKLV - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * BABY CLOUD - MESHORTS
   
   BABY CLOUD - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * SUNNYKAMI - MESHORTS
   
   SUNNYKAMI - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * BLUE MIST - MESHORTS
   
   BLUE MIST - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * NASCAR - MESHORTS
   
   NASCAR - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * BRIDGE - MESHORTS
   
   BRIDGE - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * AMETHYST - MESHORTS
   
   AMETHYST - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * MILO AND FRIENDS - MESHORTS
   
   MILO AND FRIENDS - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * GEN - MESHORTS
   
   GEN - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * TENNIS - MESHORTS
   
   TENNIS - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * CLOUDSKI - MESHORTS
   
   CLOUDSKI - MESHORTS
   
   Regular price$34.99 Sale price$9.99
 * STAR - MESHORTS
   
   STAR - MESHORTS
   
   Regular price$34.99 Sale price$9.99

View all →

Sign Up For Discounts And Drop Days

Email address Subscribe →

CUSTOMER SERVICE

CALL US ANYTIME REGARDING YOUR ORDER

+1 213-816-7409
SUPPORT@TRILLOGY.CO

HOURS:
MONDAY - SUNDAY
9AM - 11PM SUPPORT

 * CONTACT US
 * RETURNS
 * SHIPPING
 * PRIVACY
 * TERMS OF SERVICE

© 2023, TRILLOGY.

Powered by Shopify



 * Choosing a selection results in a full page refresh.
 * Press the space key then arrow keys to make a selection.