-
Notifications
You must be signed in to change notification settings - Fork 1
/
inContext.html
1022 lines (698 loc) · 43.1 KB
/
inContext.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Abraham | TDFoundry</title>
<meta name="description" content="Abraham is a friendly hand drawn display typeface. The organic letterforms are striking and soft at the same time. Abraham contains ordinals, loads of accented " />
<link rel="canonical" href="http://tdfoundry.myshopify.com/products/abraham" />
<meta property="og:title" content="Abraham | TDFoundry" />
<meta property="og:description" content="Abraham is a friendly hand drawn display typeface. The organic letterforms are striking and soft at the same time. Abraham contains ordinals, loads of accented " />
<meta property="og:url" content="http://tdfoundry.myshopify.com/products/abraham" />
<meta property="og:type" content="product" />
<meta property="og:price:amount" content="10.00" />
<meta property="og:price:currency" content="NZD" />
<meta property="og:availability" content="instock" />
<meta property="og:image" content="//cdn.shopify.com/s/files/1/0656/7817/products/ZonaPro2_medium.png?v=1427070474" />
<meta property="og:site_name" content="TDFoundry" />
<meta name="author" content="TDFoundry">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/favicon.png?623234287277647484" type="image/png" />
<!-- CHANGED LOCATION OF CSS JUST FOR THIS TEST -->
<link href="build/css/style.css" rel="stylesheet" type="text/css" media="all" />
<script src="//cdn.jsdelivr.net/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/jquery.min.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.jsdelivr.net/underscorejs/1.8.2/underscore-min.js" type="text/javascript"></script>
<!--[if lt IE 9]>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/respond.min.js?623234287277647484" type="text/javascript"></script>
<link href="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="http://tdfoundry.myshopify.com/search?q=a82767cc04cdcbc1e5ca6b7253a8018d" id="respond-redirect" rel="respond-redirect" />
<script src="http://tdfoundry.myshopify.com/search?q=a82767cc04cdcbc1e5ca6b7253a8018d" type="text/javascript"></script>
<![endif]-->
<script src="//cdn.shopify.com/s/shopify/option_selection.js?71b0a374e420ede7cc29adc45fe850e7e5836dc2" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/bootstrapify-option-selection.min.js?623234287277647484" type="text/javascript"></script>
<link rel="alternate" type="application/json+oembed" href="http://tdfoundry.myshopify.com/products/abraham.oembed" />
<script>
//<![CDATA[
var Shopify = Shopify || {};
Shopify.shop = "tdfoundry.myshopify.com";
Shopify.theme = {"name":"tdfoundry","id":11278591,"theme_store_id":null,"role":"main"};
//]]>
</script>
<script>
//<![CDATA[
(function() {
function asyncLoad() {
var urls = ["https:\/\/dfjp7gc2z6ooe.cloudfront.net\/assets\/sky_pilot.js?shop=tdfoundry.myshopify.com"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
}
window.attachEvent ? window.attachEvent('onload', asyncLoad) : window.addEventListener('load', asyncLoad, false);
})();
//]]>
</script>
<script id="__st">
//<![CDATA[
var __st={"a":6567817,"offset":46800,"reqid":"722bab0b-3cbc-47e0-ad8b-42466cfc587c","pageurl":"tdfoundry.myshopify.com\/products\/abraham","s":"products-370707543","t":"lead","u":"f2018c812d00","p":"product","rtyp":"product","rid":370707543};
//]]>
</script>
<script>
//<![CDATA[
(function() {
var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true;
s.src = '//cdn.shopify.com/s/javascripts/shopify_stats.js?v=6';
var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
})();
//]]>
</script>
<script type="text/javascript">
function getStyle(el,styleProp) {
var x=el;
if (x.currentStyle)
var y = x.currentStyle[styleProp];
else if (window.getComputedStyle)
var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(styleProp);
return y;
}
function doShift(down){
var allElements = document.getElementsByTagName('*');
for (var i=0; i<allElements.length; i++) {
if (allElements[i].id != "admin_bar_iframe" && getStyle(allElements[i],"position") == "fixed")
allElements[i].style.top = parseInt(getStyle(allElements[i], "top"),10) + (down ? 40 : -40) + "px";
}
}
window.onload = function() {
doShift(true);
}
if (window.addEventListener){ addEventListener("message", receiveABMessage, false); }
else { window.attachEvent("onmessage", receiveABMessage) }
function setABVCookie(value) {
var ex=new Date();
ex.setDate(ex.getDate() + 720);
document.cookie = "_abv="+value+";expires="+ex.toUTCString()+";path=/";
}
function receiveABMessage(event){
if(event.origin != 'https://tdfoundry.myshopify.com')
return;
if(event.data == '1') {
document.body.style.position = 'relative';
document.documentElement.style.paddingTop = "40px";
doShift(true);
var element = document.getElementById("admin_bar_iframe");
element.style.width = '100%';
element.style.backgroundColor = '#191919';
element.style.right = 'auto';
element.style.left = 0;
setABVCookie('1');
} else if(event.data == '0') {
document.body.style.position = 'relative';
document.documentElement.style.paddingTop = "0px";
doShift(false);
var element = document.getElementById("admin_bar_iframe");
element.style.backgroundColor = 'transparent';
element.style.right = '0px';
element.style.left = 'auto';
element.style.width = '40px';
setABVCookie('0');
}
}
</script>
<style type="text/css">html { padding-top:40px; } body { position:relative;} </style>
<script>
var Shopify = Shopify || {};
Shopify.settings = {};
</script>
</head>
<body class="page-template-product has-cart has-prices has-window-width-thumbnail-container
">
<div style="width:0; height:0; visibility:hidden;"><svg xmlns="http://www.w3.org/2000/svg">
<symbol viewBox="0 0 9.8 13.8" id="arrow-left">
<title>arrow-left</title>
<g>
<path fill="#FFFFFF" d="M9.2,13.8c-0.1,0-0.3,0-0.4-0.1L0.3,7.4C0.1,7.2,0,7.1,0,6.8s0.1-0.4,0.3-0.5l8.5-6.2C9-0.1,9.4,0,9.7,0.3
c0.2,0.3,0.1,0.7-0.1,0.9L1.7,6.9l7.8,5.8c0.3,0.2,0.3,0.6,0.1,0.9C9.5,13.7,9.3,13.8,9.2,13.8z" /> </g>
</symbol>
<symbol viewBox="0 0 9.8 13.8" id="arrow-right">
<title>arrow-right</title>
<g>
<path fill="#FFFFFF" d="M0.6,0C0.7,0,0.9,0,1,0.1l8.5,6.3C9.7,6.6,9.8,6.7,9.8,7c0,0.3-0.1,0.4-0.3,0.5L1,13.7
c-0.2,0.2-0.6,0.1-0.9-0.2c-0.2-0.3-0.1-0.7,0.1-0.9l7.9-5.7L0.3,1.1C0,0.9,0,0.5,0.2,0.2C0.3,0.1,0.5,0,0.6,0z" /> </g>
</symbol>
<symbol viewBox="0 0 16 16" id="hamburger">
<title>hamburger</title>
<rect y="1" fill="#231F20" width="16" height="2" />
<rect y="7" fill="#231F20" width="16" height="2" />
<rect y="13" fill="#231F20" width="16" height="2" /> </symbol>
<symbol viewBox="0 0 50.9 13.5" id="logo">
<title>logo</title>
<g>
<g>
<path fill="#231F20" d="M15.4,2.2c1.1,0,2,0.9,2,2c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9C13.4,3,14.3,2.2,15.4,2.2z
M15.4,7.5c1.1,0,2,0.9,2,1.9c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9S14.3,7.5,15.4,7.5z" /> </g>
<g>
<path fill="#231F20" d="M20.5,13.5V0h4.9c4.4,0,7.1,2.7,7.1,6.8c0,4-2.6,6.8-7.1,6.8L20.5,13.5L20.5,13.5z M23.8,2.9v7.8h1.7
c1.8,0,3.6-1.2,3.6-3.9c0-2.6-1.8-3.9-3.6-3.9H23.8L23.8,2.9z" /> </g>
<g>
<path fill="#231F20" d="M37,2.2c1.1,0,2,0.9,2,2c-0.1,1-1,1.8-2,1.8c-1.1,0-2-0.8-2-1.9S35.9,2.2,37,2.2z M37,7.5
c1.1,0,2,0.9,2,1.9c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9S35.9,7.5,37,7.5z" /> </g>
<g>
<g>
<path fill="#231F20" d="M11.2,0v3H7.3v10.5H4V3H0V0H11.2z" /> </g>
</g>
<g>
<g>
<path fill="#231F20" d="M45.5,8.4v5.1h-3.3V0h8.7v2.9h-5.4v2.7h3.8v2.9L45.5,8.4L45.5,8.4z" /> </g>
</g>
</g>
</symbol>
</svg></div>
<section class="top-menu" class="top-menu-opened">
<div class="container">
<div class="row">
<div class="col-sm-4">
<ul class="top-menu-list list-unstyled">
<li><a href="/" title="Home">Home</a></li>
<li><a href="/collections/all" title="Font Collection">Font Collection</a></li>
<li><a href="/collections/new-fonts" title="New Fonts">New Fonts</a></li>
<li><a href="/pages/about-us" title="Submit">Submit</a></li>
</ul>
</div>
<div class="col-sm-4">
<ul class="top-menu-list list-unstyled">
<li><a href="/pages/about-us" title="About Us">About Us</a></li>
<li><a href="/pages/about-us" title="Licenses">Licenses</a></li>
<li><a href="/pages/faq" title="FAQs">FAQs</a></li>
<li><a href="/pages/about-us" title="Custom Type">Custom Type</a></li>
</ul>
</div>
<div class="col-sm-4">
<ul class="top-menu-list list-unstyled">
<li><a href="/pages/contact" title="Contact Us">Contact Us</a></li>
<li><a href="/account/login" title="Login">Login</a></li>
<li><a class="top-menu-cart js-cart" href="/cart">Cart <span class="js-cart-count"></span></a></li>
</ul>
</div>
</div>
<div class="top-menu-footer">
<div class="row">
<div class="col-sm-6">
<form class="top-menu-search-form" action="/search">
<input type="search" name="q" class="form-control top-menu-search-input" autocomplete="off" value="" placeholder="Search">
</form>
</div>
<div class="col-sm-6">
<div class="top-menu-social">
<ul class="top-menu-social-links">
<li>
<a href="TenDollarFonts" target="_blank">
<i class="fa fa-facebook fa-fw "></i>
</a>
</li>
<li>
<a href="tendollarfonts" target="_blank">
<i class="fa fa-instagram fa-fw "></i>
</a>
</li>
<li>
<a href="tendollarfonts" target="_blank">
<i class="fa fa-twitter fa-fw "></i>
</a>
</li>
</ul>
</div>
<div class="top-menu-email">
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
</div>
</div>
<a href="#" class="top-menu-close js-top-menu-toggle">
<img src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/top-menu-close-btn.svg?623234287277647484" alt="Close">
</a>
</section>
<div class="top-bar">
<div class="container-fluid">
<div class="pull-left">
<a href="/" class="top-logo">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50.9px" height="13.5px" viewBox="0 0 50.9 13.5">
<path fill="#231F20" d="M15.4,2.2c1.1,0,2,0.9,2,2c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9C13.4,3,14.3,2.2,15.4,2.2z
M15.4,7.5c1.1,0,2,0.9,2,1.9c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9S14.3,7.5,15.4,7.5z"/>
<path fill="#231F20" d="M20.5,13.5V0h4.9c4.4,0,7.1,2.7,7.1,6.8c0,4-2.6,6.8-7.1,6.8L20.5,13.5L20.5,13.5z M23.8,2.9v7.8h1.7
c1.8,0,3.6-1.2,3.6-3.9c0-2.6-1.8-3.9-3.6-3.9H23.8L23.8,2.9z"/>
<path fill="#231F20" d="M37,2.2c1.1,0,2,0.9,2,2c-0.1,1-1,1.8-2,1.8c-1.1,0-2-0.8-2-1.9S35.9,2.2,37,2.2z M37,7.5
c1.1,0,2,0.9,2,1.9c0,1.1-0.9,1.9-2,1.9c-1.1,0-1.9-0.9-1.9-1.9S35.9,7.5,37,7.5z"/>
<path fill="#231F20" d="M11.2,0v3H7.3v10.5H4V3H0V0H11.2z"/>
<path fill="#231F20" d="M45.5,8.4v5.1h-3.3V0h8.7v2.9h-5.4v2.7h3.8v2.9L45.5,8.4L45.5,8.4z"/>
</svg>
</a>
</div>
<div class="pull-right">
<ul class="top-bar-nav list-inline">
<li>
<a href="#" class="top-bar-menu-toggle js-top-menu-toggle">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14">
<rect fill="#231F20" width="20" height="2"/>
<rect y="6" fill="#231F20" width="20" height="2"/>
<rect y="12" fill="#231F20" width="20" height="2"/>
</svg>
</a>
</li>
<li>
<a href="/cart" class="top-bar-nav-cart js-top-bar-nav-cart" data-cart-count="">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="14" viewBox="0 0 16 14">
<path fill="#231F20" d="M0 0v1h2.531l.781 3.625.5 3.344-.594 3.063c-.698.128-1.219.734-1.219 1.469 0 .828.672 1.5 1.5 1.5.69 0 1.263-.459 1.438-1.094h7.125c.175.635.747 1.094 1.438 1.094.828 0 1.5-.672 1.5-1.5s-.672-1.5-1.5-1.5c-.621 0-1.147.368-1.375.906h-7.25c-.133-.314-.359-.557-.656-.719l.438-2.188h9.844c.3 0 .5-.2.5-.5l.906-6c.1-.3-.106-.5-.406-.5h-11.688l-.313-1.406h-.031c-.027-.123-.073-.221-.125-.281-.069-.08-.123-.149-.188-.188-.13-.078-.252-.125-.469-.125h-2.688z" />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<main class="content">
<section class="product-carousel">
<div id="product-carousel" class="carousel slide" data-ride="carousel" data-interval="false">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/1Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/2Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/4Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/5Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/7Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/8Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/9Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/10Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/3Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/11Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/6Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/12Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/13Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/14Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/15Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/17Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/16Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/20Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/18Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
<div class="item">
<img src="//cdn.shopify.com/s/files/1/0656/7817/products/19Abraham_2048x2048.png?v=1427070474" alt="Abraham" />
</div>
</div>
<a class="left carousel-control" href="#product-carousel" role="button" data-slide="prev">
<svg class="carousel-arrow"><use xlink:href="#arrow-left" /></svg>
</a>
<a class="right carousel-control" href="#product-carousel" role="button" data-slide="next">
<svg class="carousel-arrow"><use xlink:href="#arrow-right" /></svg>
</a>
</div>
</section>
<section id="product-wrap" class="product-wrap" itemscope itemtype="http://data-vocabulary.org/Product">
<!-- Tabs -->
<section class="product-tabs">
<div class="container" role="tabpanel">
<div class="row">
<div class="col-sm-2">
<!-- tabs -->
<ul class="product-tabs-list list-unstyled" role="tablist">
<li role="presentation" class="active">
<a href="#overview" aria-controls="overview" role="tab" data-toggle="tab"><span>Overview</span></a>
</li>
<li role="presentation">
<a href="#weights" aria-controls="weights" role="tab" data-toggle="tab"><span>Weights</span></a>
</li>
<li role="presentation">
<a href="#testfonts" aria-controls="testfonts" role="tab" data-toggle="tab"><span>Test Fonts</span></a>
</li>
<li role="presentation">
<a href="#purchase" aria-controls="purchase" role="tab" data-toggle="tab"><span>Buy now</span></a>
</li>
</ul>
</div>
<div class="col-sm-10">
<!-- tab panes -->
<div class="tab-content">
<div role="tabpanel" class="product-page-tab tab-pane fade in active" id="overview"><div class="row">
<div class="col-sm-6">
<h3 class="product-title" itemprop="name">Abraham</h3>
<div class="product-description" itemprop="description">
<p><span style="line-height: 1.2;">Abraham is a friendly hand drawn display typeface. The organic letterforms are striking and soft at the same time. Abraham contains ordinals, loads of accented characters and standard ligatures. The OpenType features give you access to many nice extras. Each letter has 4 variations that will cycle automatically when contextual alternates are turned on, creating a more organic hand drawn effect. Discretionary ligatures will enable the retro interlocking letterforms.</span><span style="color: #ff0000;"><strong></strong></span></p>
<p>Abraham is very versatile and feels at home in contemporary design, or in a retro application without becoming cheesy. Setting words in Abraham may result in instant logofication.<span style="color: #ff0000;"><strong> </strong></span></p>
<ul>
<li><strong>Uppercase & lowercase</strong></li>
<li><strong>Numbers & punctuation marks</strong></li>
<li><strong>International characters (Latin Extended A and more)</strong></li>
<li><strong>4 alternate characters for each letter</strong></li>
<li><strong>50 standard and interlocking ligatures</strong></li>
<li><strong>OTF file</strong></li>
<li><strong>Designed by <a href="http://tendollarfonts.com/collections/designer-zeptonn"><span style="text-decoration: underline;">Jan Willem Wennekes aka Zeptonn</span></a></strong></li>
</ul>
</div>
</div>
<div class="col-sm-4 col-sm-offset-2">
<div class="product-vendor-header text-center">
<img class="product-vendor-image" src="//cdn.shopify.com/s/files/1/0656/7817/collections/portret_janwillemwennekes_1024x1024_4a1c4760-bce1-4848-b5cd-02a936c10c78_compact.jpg?v=1414313231" class="product-img" alt="vendor_collection.image.alt" width="190" height="190" />
<p class="product-vendor-name">Designed by <span itemprop="manufacturer">Zeptonn</span></p>
<ul class="product-vendor-social list-inline">
<li>
<a href="http://instagram.com/tendollarfonts" target="_blank">
<i class="fa fa-instagram fa-2x"></i>
</a>
</li>
<li>
<a href="http://instagram.com/tendollarfonts" target="_blank">
<i class="fa fa-twitter fa-2x"></i>
</a>
</li>
<li>
<a href="http://instagram.com/tendollarfonts" target="_blank">
<i class="fa fa-facebook fa-2x"></i>
</a>
</li>
</ul>
</div>
<div class="product-vendor-description">
<meta charset="utf-8">
<p>Zeptonn is the illustrative design studio run by Jan Willem Wennekes. As a type designer, he strives to create fun and organic typefaces with useful display purposes. His typography is often based in handdrawn letters and shapes, created with the craft of an experienced illustrator, that have an organic and natural feel.</p>
</div>
</div>
</div>
</div>
<div role="tabpanel" class="product-page-tab tab-pane fade" id="weights">
<div class="product-weight">
<p class="product-weight-title"><strong>Abraham</strong> Bold</p>
<img class="img-responsive product-weight-image" src="http://fontsmith-assets.com/fonts/high_density/tablet/158/0e7ea95053ee2673527fe873db1f15fc.png" alt="Abraham Bold" />
</div>
<div class="product-weight">
<p class="product-weight-title"><strong>Abraham</strong> Bold Italic</p>
<img class="img-responsive product-weight-image" src="http://fontsmith-assets.com/fonts/high_density/tablet/158/0e7ea95053ee2673527fe873db1f15fc.png" alt="Abraham Bold Italic" />
</div>
<div class="product-weight">
<p class="product-weight-title"><strong>Abraham</strong> Italic</p>
<img class="img-responsive product-weight-image" src="http://fontsmith-assets.com/fonts/high_density/tablet/158/0e7ea95053ee2673527fe873db1f15fc.png" alt="Abraham Italic" />
</div>
<div class="product-weight">
<p class="product-weight-title"><strong>Abraham</strong> Regular</p>
<img class="img-responsive product-weight-image" src="http://fontsmith-assets.com/fonts/high_density/tablet/158/0e7ea95053ee2673527fe873db1f15fc.png" alt="Abraham Regular" />
</div>
</div>
<div role="tabpanel" class="product-page-tab tab-pane fade" id="testfonts">
<p>Typetester</p>
</div>
<div role="tabpanel" class="product-page-tab tab-pane fade" id="purchase"><div class="product-tab-purchase row">
<div class="col-sm-6 col-sm-offset-3">
<form id="product-form" action="/cart/add" method="post" role="form" enctype="multipart/form-data">
<div class="product-variants">
<select id="product-select" name="id" class="form-control input-lg">
<option value="870031835" selected="selected">Personal / Nonprofit License</option>
<option value="870031839">Commercial License</option>
<option value="870031843">WebFont License</option>
</select>
<button type="button" class="btn btn-lg btn-cart-popover" data-toggle="popover" data-placement="top" title="License" data-content="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.">?</button>
</div>
<div class="row">
<input min="1" type="number" id="quantity" placeholder="Quantity" name="quantity" value="1" style="display:none;" />
<div class="add-to-cart-button-wrap">
<button type="submit" name="add" value="Add to cart" id="purchase" class="btn btn-primary btn-lg btn-block btn-purchase">Add to Cart</button>
</div>
</div>
</form>
<script>
jQuery(function() {
// option selectors extended with boostrap markup and link options
new Shopify.BootstrapifyOptionSelectors("product-select", { product: {"id":370707543,"title":"Abraham","handle":"abraham","description":"\u003cp\u003e\u003cspan style=\"line-height: 1.2;\"\u003eAbraham is a friendly hand drawn display typeface. The organic letterforms are striking and soft at the same time. Abraham contains ordinals, loads of accented characters and standard ligatures. The OpenType features give you access to many nice extras. Each letter has 4 variations that will cycle automatically when contextual alternates are turned on, creating a more organic hand drawn effect. Discretionary ligatures will enable the retro interlocking letterforms.\u003c\/span\u003e\u003cspan style=\"color: #ff0000;\"\u003e\u003cstrong\u003e\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eAbraham is very versatile and feels at home in contemporary design, or in a retro application without becoming cheesy. Setting words in Abraham may result in instant logofication.\u003cspan style=\"color: #ff0000;\"\u003e\u003cstrong\u003e \u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eUppercase \u0026amp; lowercase\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eNumbers \u0026amp; punctuation marks\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eInternational characters (Latin Extended A and more)\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003e4 alternate characters for each letter\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003e50 standard and interlocking ligatures\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eOTF file\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eDesigned by \u003ca href=\"http:\/\/tendollarfonts.com\/collections\/designer-zeptonn\"\u003e\u003cspan style=\"text-decoration: underline;\"\u003eJan Willem Wennekes aka Zeptonn\u003c\/span\u003e\u003c\/a\u003e\u003c\/strong\u003e\u003c\/li\u003e\n\u003c\/ul\u003e","published_at":"2014-09-30T20:28:00+13:00","created_at":"2014-09-30T20:28:37+13:00","vendor":"Zeptonn","type":"Font","tags":[],"price":1000,"price_min":1000,"price_max":2000,"available":true,"price_varies":true,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":870031835,"title":"Personal \/ Nonprofit License","options":["Personal \/ Nonprofit License"],"option1":"Personal \/ Nonprofit License","option2":null,"option3":null,"price":1000,"weight":0,"compare_at_price":null,"inventory_quantity":-24,"inventory_management":null,"inventory_policy":"deny","available":true,"sku":"ABR1","requires_shipping":false,"taxable":false,"barcode":null,"featured_image":null},{"id":870031839,"title":"Commercial License","options":["Commercial License"],"option1":"Commercial License","option2":null,"option3":null,"price":2000,"weight":0,"compare_at_price":null,"inventory_quantity":-23,"inventory_management":null,"inventory_policy":"deny","available":true,"sku":"ABR2","requires_shipping":false,"taxable":false,"barcode":null,"featured_image":null},{"id":870031843,"title":"WebFont License","options":["WebFont License"],"option1":"WebFont License","option2":null,"option3":null,"price":2000,"weight":0,"compare_at_price":null,"inventory_quantity":0,"inventory_management":null,"inventory_policy":"deny","available":true,"sku":"ABR3","requires_shipping":false,"taxable":false,"barcode":"","featured_image":null}],"images":["\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/ZonaPro2.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/1Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/2Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/4Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/5Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/7Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/8Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/9Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/10Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/3Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/11Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/6Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/12Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/13Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/14Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/15Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/17Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/16Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/20Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/18Abraham.png?v=1427070474","\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/19Abraham.png?v=1427070474"],"featured_image":"\/\/cdn.shopify.com\/s\/files\/1\/0656\/7817\/products\/ZonaPro2.png?v=1427070474","options":["License Type"],"content":"\u003cp\u003e\u003cspan style=\"line-height: 1.2;\"\u003eAbraham is a friendly hand drawn display typeface. The organic letterforms are striking and soft at the same time. Abraham contains ordinals, loads of accented characters and standard ligatures. The OpenType features give you access to many nice extras. Each letter has 4 variations that will cycle automatically when contextual alternates are turned on, creating a more organic hand drawn effect. Discretionary ligatures will enable the retro interlocking letterforms.\u003c\/span\u003e\u003cspan style=\"color: #ff0000;\"\u003e\u003cstrong\u003e\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003eAbraham is very versatile and feels at home in contemporary design, or in a retro application without becoming cheesy. Setting words in Abraham may result in instant logofication.\u003cspan style=\"color: #ff0000;\"\u003e\u003cstrong\u003e \u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eUppercase \u0026amp; lowercase\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eNumbers \u0026amp; punctuation marks\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eInternational characters (Latin Extended A and more)\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003e4 alternate characters for each letter\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003e50 standard and interlocking ligatures\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eOTF file\u003c\/strong\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cstrong\u003eDesigned by \u003ca href=\"http:\/\/tendollarfonts.com\/collections\/designer-zeptonn\"\u003e\u003cspan style=\"text-decoration: underline;\"\u003eJan Willem Wennekes aka Zeptonn\u003c\/span\u003e\u003c\/a\u003e\u003c\/strong\u003e\u003c\/li\u003e\n\u003c\/ul\u003e"}, onVariantSelected: selectCallback, enableHistoryState: true});
});
</script>
<div class="product-price text-center" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
<span class="price-field"><span class="money" itemprop="price"></span>
</span>
<span class="price-license">Per User</span>
<del class="compare-at-price-field text-muted"></del>
<span class="sale-label" style="display: none;">On Sale</span>
<meta itemprop="currency" content="NZD" />
<meta itemprop="identifier" content="sku:ABR1" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<!-- New Dependencies -->
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://zachleat.github.io/BigText/dist/bigtext.js"></script>
<!-- Call The Type Tester -->
<section class="typeTester" font="atc_timberline" text="ATC Timberline" align="center" weight="400" weightoptions="true" tracking="0" trackingoptions="siq" italic="yup" italicoptions="ok" singlelineoptions="true" size="90" sizeoptions="cool" opt="dlig" optoptions="dlig, hlig" singleline="true" alignoptions="true"></section>
<section class='typeTester' font="atc_timberline" weight="800" weightselection="Light:100, wonka do:400, Black:800"></section>
<section class='typeTester'></section>
<!-- Call Type Tester Function -->
<script src="build/js/typeTester.js"></script>
<ul class="brand-circles list-inline">
<li class="brand-circle"></li>
<li class="brand-circle" data-circle-text="Pairs well with:">
</div>
</ul>
<section id="product-list" class="product-related">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 " data-variants="personal-nonprofit-license commercial-license webfont-license " data-alpha="Abraham" data-price="1000">
<div class="product-thumbnail">
<div class="thumbnail-image">
<a href="/products/abraham" title=""><img src="//cdn.shopify.com/s/files/1/0656/7817/products/ZonaPro2_grande.png?v=1427070474" alt="Abraham" class="img-responsive" /></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 " data-variants="personal-nonprofit-license commercial-license " data-alpha="Allure" data-price="1000">
<div class="product-thumbnail">
<div class="thumbnail-image">
<a href="/products/allure" title=""><img src="//cdn.shopify.com/s/files/1/0656/7817/products/1Allure_grande.png?v=1412062098" alt="Allure" class="img-responsive" /></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 " data-variants="personal-nonprofit-license commercial-license " data-alpha="Alpine" data-price="1000">
<div class="product-thumbnail">
<div class="thumbnail-image">
<a href="/products/alpine" title=""><img src="//cdn.shopify.com/s/files/1/0656/7817/products/1Alpine_grande.png?v=1412062088" alt="Alpine" class="img-responsive" /></a>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3 " data-variants="personal-nonprofit-license commercial-license " data-alpha="Arnold" data-price="1000">
<div class="product-thumbnail">
<div class="thumbnail-image">
<a href="/products/arnold" title=""><img src="//cdn.shopify.com/s/files/1/0656/7817/products/1Arnold_grande.png?v=1412062078" alt="Arnold" class="img-responsive" /></a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer-main">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-md-4">
<ul class="footer-list list-unstyled">
<li><strong>TDF</strong></li>
<li>46 Designers</li>
<li>93 Font Families</li>
</ul>
</div>
<div class="col-md-4">
<ul class="footer-list list-unstyled">
<li> </li>
<li><a href="">@TDFoundry</a></li>
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
<div class="col-md-4">
<div class="footer-subscribe">
<form action="http://tendollarfonts.createsend.com/t/j/s/avhr/" method="post" id="subForm">
<span>Bi-weekly Newsletter / Discounts</span>
<input type="text" class="form-control footer-subscribe-input" name="cm-avhr-avhr" id="avhr-avhr">
</form>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<ul class="footer-bottom-list list-inline pull-left">
<li><a href="/pages/about-us" title="Privacy Policy">Privacy Policy</a></li>
<li><a href="/pages/about-us" title="EULA">EULA</a></li>
<li><a href="/pages/about-us" title="Site Map">Site Map</a></li>
</ul>
<ul class="footer-bottom-list list-inline pull-right">
<li><span>Copyright 2015</span></li>
</ul>
</div>
</div>
</footer>
<script>
var selectCallback = function(variant, selector){
// get the current product
var $productWrap = $('#'+selector.existingSelectorId).closest('.product-wrap');
// set vars so we dont need to call the elements repeatedly
var purchaseButton = $productWrap.find('.purchase-btn');
var priceField = $productWrap.find('.price-field');
var quantityWrap = $productWrap.find('.quantity-wrap');
var addToCartButtonWrap = $productWrap.find('.add-to-cart-button-wrap');
var saleField = $productWrap.find('.sale-label');
var compareAtPriceField = $productWrap.find('.compare-at-price-field');
var $notifyForm = $productWrap.find('.notify-me-wrapper'); // Show/hide notify form
var unavailableStr = 'Unavailable';
var addToCartStr = 'Add to cart';
var soldOutStr = 'Sold out';
// disable purchase button
purchaseButton.removeClass('btn-primary').addClass('disabled').attr('disabled', 'disabled').val(unavailableStr);
priceField.addClass('text-muted');
saleField.hide();
compareAtPriceField.html('').hide();
if(variant){
// we have a variant so update the price
var moneyFormat = "${{amount}}"; // we still need the correct money format if the currency converter is off
var formattedMoney = Shopify.formatMoney(variant.price, moneyFormat);
priceField.html('<span class="money">'+formattedMoney+'</span>'); // we need to refresh the the money span to invoke the currency converter if it is on
if(variant.compare_at_price > 0){
// variant is on sale
var compareAtFormattedMoney = Shopify.formatMoney(variant.compare_at_price, moneyFormat);
compareAtPriceField.html('<span class="money">'+compareAtFormattedMoney+'</span>').show();
saleField.show();
}
if(variant.available){
// the variant is available for purchase so enable the button
purchaseButton.removeAttr('disabled').removeClass('disabled').addClass('btn-primary').val(addToCartStr);
priceField.removeClass('text-muted');
$notifyForm.hide();
} else {
// sold out
purchaseButton.val(soldOutStr);
$notifyForm.fadeIn();
}
if(variant.inventory_quantity <= 1 && variant.inventory_management == 'shopify' && variant.inventory_policy == 'deny'){
quantityWrap.hide();
//addToCartButtonWrap.removeClass('col-sm-8').addClass('col-sm-12');
}
else {
quantityWrap.show();
//addToCartButtonWrap.addClass('col-sm-8').removeClass('col-sm-12');
}
if(variant.featured_image){
// variant image switcher
var $mainImageWrapper = $productWrap.find('.product-main-image');
var mainImageElement = $mainImageWrapper.find('img')[0];
Shopify.Image.switchImage(variant.featured_image, mainImageElement, function(new_image_src, original_image, element){
switchImage($mainImageWrapper, new_image_src);
});
}
}
};
</script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/_base.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/jquery.ajax-cart.min.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/jquery.uniform_thumbnails.min.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/jquery.orderly.min.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/transition.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/button.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/carousel.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/collapse.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/dropdown.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/modal.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/tab.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/tooltip.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/popover.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/typeahead.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/jquery.tinysort.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/walkway.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/mixitup.js?623234287277647484" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0656/7817/t/2/assets/background-check.min.js?623234287277647484" type="text/javascript"></script>
<script type="text/javascript">
$('.handle_abraham').parents('.collapse').addClass('in');
$(document).ready(function(){
// BackgroundCheck.init({
// targets: '.top-bar',
// threshold: 80,
// classes: {
// dark: 'background-dark',
// light: 'background-light',
// complex: 'background-complex'
// }
// });
$('.carousel').on('slid.bs.carousel', function () {
// BackgroundCheck.refresh();
})
$('[data-toggle="popover"]').popover();
$('.search-bar').typeahead({
name: 'Products',
local: ["Abraham","Allure","Alpine","Arnold","ATC Krueger","ATC Overlook","ATC Rosemary","ATC Timberline","Atelier Neue","Avanth","Awning Display","Bojo Print"]
}).on('typeahead:selected', function (object, datum) {
$(this).closest('form').submit();
});
// Product menu scroll
$("[data-section]").on('click', function() {
$("#section-specimen").animatescroll();
});
$('#collections-list').mixItUp({