View difference between Paste ID: 3vWdZrtP and jx7YwL6q
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE html>
2
<html>
3
    
4
    <head>
5
    
6
7
<!-----------------------------------------------------------------------
8
 
9
***PLEASE READ THIS AS IT CONTAINS IMPORTANT INFO***
10
 
11
Feline Themes Presents: The Edge
12
 
13
You may make as many cosmetic changes as you'd like to this theme such as changing fonts, colors, and simple stuff like that. Just please don't make this theme look like an entirely new theme, okay? :)
14
 
15
Do not use as a base code! And do not reupload this theme as your own, no matter how much you edit it, and keep both credit links intact.
16
 
17
You may look at my coding to see how I did certain things, but please don't copy and paste and of the CSS/HTML.
18
 
19
 
20
 
21
*FONTS USED*
22
 
23
All fonts are from Google Fonts, I did not make any of them!
24
 
25
-Julius Sans One [Title and headers]
26
-Six Caps [Links Posts]
27
-Khula [Main body]
28
 
29
 
30
 
31
*OTHER INFO*
32
 
33
-I have tested the following post types: Text, Photos/Photosets, Quotes, Asks, Videos, Chats. I didn't really touch the audio posts as I don't see them used often.
34
 
35
-Popup script not included to keep out unneeded coding. If you want popups just add in the code. :)
36
 
37
 
38
Enjoy and let me know if you use it so I can see! :)
39
 
40
 
41
© Feline Themes 2016
42
 
43
------------------------------------------------------------------------>      
44
45
    <meta name="color:Background" content="#ffffff"/>
46
    <meta name="color:Posts" content="#ffffff"/>
47
    <meta name="color:Color 1" content="#6d808f"/>
48
    <meta name="color:Color 2" content="#cccccc"/>
49
    
50
    <meta name="color:Font Color" content="#000000"/>
51
    <meta name="text:Font Size" content="11px"/>
52
    <meta name="text:Title Font Size" content="30px"/>
53
    
54
    <meta name="text:Quote" content="Put a cute quote or extra info about your blog here!"/>
55
    
56
    <meta name="text:Link 3 URL" content="/linkthree"/>
57
    <meta name="text:Link 3" content="Link Three"/>    
58
    <meta name="text:Link 4 URL" content="/linkfour"/>
59
    <meta name="text:Link 4" content="Link Four"/>
60
61
    <!------------ start of styled tooltips script ------------->
62
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
63
64
<script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
65
66
<script>
67
(function($){
68
$(document).ready(function(){
69
$("a[title]").style_my_tooltips({
70
tip_follows_cursor:true,
71
tip_delay_time:90,
72
tip_fade_speed:600,
73
attribute:"title"
74
});
75
});
76
})(jQuery);
77
</script>
78
    <!-------------- end of styled tooltip scripts -------------->
79
    
80
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <!--font awesome icons-->
81
82
<link href="https://fonts.googleapis.com/css?family=Julius+Sans+One|Khula:300|Six+Caps" rel="stylesheet"> 
83
        
84
        <style type="text/css">
85
86
/*----------------------------------------------------------------------*/
87
        
88
#sidebar{
89
    position:fixed;
90
    display:inline;
91
    z-index:100;
92
    top:100px;
93
    left:6%;
94
    width:200px;
95
    height:200px;
96
    padding:15px;
97
    background-color:{color:Background};
98
    text-align:center;
99
}
100
101
.sidebar{
102
    width:180px;
103
    height:180px;
104
    padding:10px;
105
    background-color:{color:Color 1};
106
    color:{color:Posts};
107
}
108
109
#sbtop, #sbright, #sbbottom, #sbleft{
110
    position:absolute;
111
    background:{color:Color 1};
112
        -webkit-transition: all .5s ease;
113
    -moz-transition: all .5s ease;
114
    -o-transition: all .5s ease;
115
    transition: all .5s ease; 
116
    -webkit-transition-delay: .9s; /* Safari */
117
    transition-delay: .9s;       
118
}
119
120
#sbtop{
121
    top:0px;
122
    right:0px;
123
    width:80px;
124
    height:2px;
125
}
126
127
#sbright{
128
    top:0px;
129
    right:0px;
130
    width:2px;
131
    height:80px;
132
}
133
134
#sbbottom{
135
    bottom:0px;
136
    left:0px;
137
    width:80px;
138
    height:2px;
139
}
140
141
#sbleft{
142
    bottom:0px;
143
    left:0px;
144
    width:2px;
145
    height:80px;
146
}
147
148
#sidebar:hover #sbtop{
149
    width:100%;
150
    -webkit-transition-delay: 0s; /* Safari */
151
    transition-delay: 0s;       
152
}
153
154
#sidebar:hover #sbbottom{
155
    width:100%;
156
    -webkit-transition-delay: 0s; /* Safari */
157
    transition-delay: 0s;       
158
}
159
160
#sidebar:hover #sbleft{
161
    height:100%;
162
    -webkit-transition-delay: 0s; /* Safari */
163
    transition-delay: 0s;       
164
}
165
166
#sidebar:hover #sbright{
167
    height:100%;
168
    -webkit-transition-delay: 0s; /* Safari */
169
    transition-delay: 0s;       
170
}
171
172
#blogtitle{
173
    margin-top:5px;
174
    font-family: 'Julius Sans One', sans-serif;   
175
    font-size:{text:Title Font Size};
176
}
177
178
#description{
179
    position:absolute;
180
    top:70px;
181
    bottom:70px;
182
    left:25px;
183
    right:25px;
184
    padding:10px;
185
    border-top:1px solid {color:Posts};
186
    border-bottom:1px solid {color:Posts};
187
    display: flex;
188
        align-items: center;
189
        justify-content: center;    
190
    font-size:10px;
191
}
192
193
#quote{
194
    position:absolute;
195
    bottom:25px;
196
    left:25px;
197
    right:25px;
198
    height:45px;
199
    display: flex;
200
        align-items: center;
201
        justify-content: center; 
202
    font-size:10px;    
203
}
204
205
#links{
206
    position:absolute;
207
    left:0px;
208
    right:0px;
209
    bottom:-45px;
210
    margin-top:5px;
211
    padding-top:5px;
212
    opacity:0;
213
        -webkit-transition: all .9s ease;
214
    -moz-transition: all .9s ease;
215
    -o-transition: all .9s ease;
216
    transition: all .9s ease;   
217
}
218
219
#sidebar:hover #links{
220
    opacity:1;
221
    -webkit-transition-delay: .9s; /* Safari */
222
    transition-delay: .9s;       
223
}
224
225
.links{
226
    width:30px;
227
    height:30px;     
228
    background-color:{color:Color 1};
229
    border:3px double {color:Posts}; 
230
    display: flex;
231
        align-items: center;
232
        justify-content: center;     
233
    font-size:20px;  
234
    color:{color:Posts}; 
235
        -webkit-transition: all .9s ease;
236
    -moz-transition: all .9s ease;
237
    -o-transition: all .9s ease;
238
    transition: all .9s ease;       
239
}
240
241
.links:hover{
242
    background-color:{color:Posts};
243
    border:3px double {color:Color 1};
244
    color:{color:Color 1};
245
}
246
247
248
/*----------------------------------------------------------------------*/
249
250
#container{
251
    position:absolute;
252
    top:25px;
253
    left:30%;
254
    width:650px;
255
}
256
257
.entry{
258
    position:relative;
259
    float:left;
260
{block:IndexPage}
261
    width:250px;
262
{/block:IndexPage}
263
{block:PermalinkPage}
264
    width:500px;
265
{/block:PermalinkPage}
266
    margin:15px;
267
    padding:20px;
268
    border:1px solid #cccccc;
269
    background-color:{color:Posts};
270
    box-shadow:4px 4px 0px {color:Color 1};
271
}
272
273
274
/*--Makes text posts look a little nicer--*/
275
#textpostbody{
276
    padding:10px;
277
    max-height:300px;
278
    overflow-y:auto;
279
    border:1px solid {color:Color 2};
280
    background-color:{color:Posts};
281
}
282
/*--Makes text posts look a little nicer--*/
283
284
/*--Post permalinks--*/
285
286
#posteddate{
287
    margin-top:5px;
288
    margin-bottom:5px;
289
    padding:3px;
290
    text-align:center;
291
    background-color:{color:Color 1};
292
    font-size:11px;
293
    color:{color:Posts};
294
}
295
296
#textpermalinks{
297
    max-height:0px;
298
    padding-top:0px;
299
    overflow:hidden;
300
    text-align:center;
301
    font-family: 'Julius Sans One', sans-serif;  
302
    font-size:12px;
303
    color:{color:Color 1};
304
        -webkit-transition: max-height .9s ease, padding-top:.5s;
305
    -moz-transition: max-height .9s ease, padding-top .5s;
306
    -o-transition: max-height .9s ease, padding-top .5s;
307
    transition: max-height .9s ease, padding-top .5s;        
308
}
309
310
.entry:hover #textpermalinks{
311
    padding-top:5px;
312
    max-height:50px;
313
        -webkit-transition: max-height .9s ease, padding-top:0s;
314
    -moz-transition: max-height .9s ease, padding-top 0s;
315
    -o-transition: max-height .9s ease, padding-top 0s;
316
    transition: max-height .9s ease, padding-top 0s;       
317
}
318
319
#textpermalinks a{
320
    margin-left:5px;
321
    margin-right:5px;
322
}
323
324
/*--Post permalinks--*/
325
326
/*--Permalinks on photo posts--*/
327
328
#photopermalinks{
329
{block:PermalinkPage}
330
    display:none;
331
{/block:PermalinkPage}
332
    position:absolute;
333
    z-index:2;
334
    width:200px;
335
    bottom:35px;
336
    right:37px;
337
    opacity:0;
338
    text-align:right;
339
        -webkit-transition: all 1s ease;
340
    -moz-transition: all 1s ease;
341
    -o-transition: all 1s ease;
342
    transition: all 1s ease;    
343
}
344
345
.entry:hover #photopermalinks{
346
    opacity:1;
347
    -webkit-transition-delay: .8s; /* Safari */
348
    transition-delay: .8s;      
349
}
350
351
.photopermalinks{
352
    margin:5px;
353
    font-family: 'Julius Sans One', sans-serif;    
354
    font-size:18px;
355
    color:{color:Posts};
356
        -webkit-transition: all 1s ease;
357
    -moz-transition: all 1s ease;
358
    -o-transition: all 1s ease;
359
    transition: all 1s ease;      
360
}
361
362
.photopermalinks:hover{
363
    color:{color:Color 2};
364
}
365
366
/*--Permalinks on photo posts--*/
367
368
/*--For hover effect on photo posts--*/
369
370
#photoposts{
371
    position:relative;
372
    overflow:hidden;
373
}
374
375
#photoposts img{
376
    -webkit-filter: grayscale(20%); /* Safari 6.0 - 9.0 */
377
    filter: grayscale(20%);     
378
        -webkit-transition: all 1s ease;
379
    -moz-transition: all 1s ease;
380
    -o-transition: all 1s ease;
381
    transition: all 1s ease;       
382
}
383
384
.entry:hover #photoposts img{
385
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
386
    filter: grayscale(100%);    
387
  -moz-transform: scale(1.4);
388
  -webkit-transform: scale(1.4);
389
  transform: scale(1.4);    
390
}
391
392
.photohovereffect{
393
    position:absolute;
394
    z-index:1;
395
    top:0px;
396
    bottom:0px;
397
    left:0px;
398
    right:0px;
399
    opacity:0;
400
    background-color:{color:Color 1};
401
        -webkit-transition: all .4s ease;
402
    -moz-transition: all .4s ease;
403
    -o-transition: all .4s ease;
404
    transition: all .4s ease;
405
    -webkit-transition-delay: .8s; /* Safari */
406
    transition-delay: .8s;        
407
}
408
409
.entry:hover .photohovereffect{
410
    opacity:0.9;
411
    -webkit-transition-delay: 0s; /* Safari */
412
    transition-delay: 0s;     
413
}
414
415
.phototop, .photoleft, .photobottom, .photoright{
416
    position:absolute;
417
    z-index:2;
418
    background-color:{color:Posts};
419
        -webkit-transition: all 1s ease;
420
    -moz-transition: all 1s ease;
421
    -o-transition: all 1s ease;
422
    transition: all 1s ease;        
423
}
424
425
.phototop{
426
    top:15px;
427
    left:15px;
428
    width:0px;
429
    height:1px;
430
}
431
432
.photoleft{
433
    top:15px;
434
    left:15px;
435
    width:1px;
436
    height:0px;
437
}
438
439
.photobottom{
440
    bottom:15px;
441
    right:15px;
442
    width:0px;
443
    height:1px;
444
}
445
446
.photoright{
447
    bottom:15px;
448
    right:15px;
449
    width:1px;
450
    height:0px;
451
}
452
453
.entry:hover .phototop{
454
    width:180px;
455
}
456
457
.entry:hover .photobottom{
458
    width:180px;
459
}
460
461
.entry:hover .photoleft{
462
    height:180px;
463
}
464
465
.entry:hover .photoright{
466
    height:180px;
467
}
468
469
/*--For hover effects on photo posts--*/
470
471
/*--For quote posts--*/
472
473
blockquote{
474
    margin:0px;
475
    text-align:left;
476
    font-family: 'Julius Sans One', sans-serif;        
477
    font-size:20px;
478
}
479
480
#source{
481
    padding-top:5px;
482
    text-align:right;
483
    font-size:8px;
484
}
485
486
/*--For quote posts--*/
487
488
/*--For the link in link posts--*/
489
490
#link{
491
    padding:10px;
492
    border:1px solid {color:Color 2};
493
    background-color:{color:Posts};
494
    font-family:'Six Caps';
495
    font-size:25px;
496
    color:{color:Color 2};
497
        -webkit-transition: all 1s ease;
498
    -moz-transition: all 1s ease;
499
    -o-transition: all 1s ease;
500
    transition: all 1s ease;     
501
}
502
503
#link i{
504
    margin-right:5px;
505
}
506
507
#link:hover{
508
    border:1px solid {color:Color 1};    
509
    background-color:{color:Color 1};
510
    color:{color:Posts};
511
}
512
513
/*--For the link in link posts--*/
514
515
/*--For the lines of chat posts--*/
516
517
.odd{
518
    margin-top:2px;
519
    margin-bottom:2px;    
520
    padding-top:5px;
521
    padding-bottom:5px;
522
    padding-left:15px;
523
    padding-right:15px;
524
    border:1px solid {color:Color 2};
525
    background-color:{color:Posts};
526
}
527
528
.odd b{
529
    color:{color:Color 1};
530
}
531
532
.even{
533
    margin-top:2px;
534
    margin-bottom:2px;
535
    padding-top:5px;
536
    padding-bottom:5px;
537
    padding-left:15px;
538
    padding-right:15px;
539
    border:1px solid {color:Color 2};
540
    background-color:{color:Posts};
541
}
542
543
.even b{
544
    color:{color:Color 2};
545
}
546
547
/*--For the lines of chat posts--*/
548
549
/*--The question part of answer posts--*/
550
551
.question{
552
    padding:10px;
553
    background-color:{color:Color 1};
554
}
555
556
.question a{
557
    color:{color:Color 2};
558
}
559
560
.theasker{
561
    padding-bottom:5px;
562
    border-bottom:1px solid {color:Color 1};
563
    font-size:15px;
564
    color:{color:Posts};  
565
}
566
567
.theasker img{
568
    border:3px double {color:Posts};
569
    width:36px;
570
    height:36px;
571
}
572
573
.asked{
574
    padding:10px;
575
    border:3px double {color:Color 1};
576
    background-color:{color:Posts};
577
    color:{color:Color 1};
578
}
579
580
/*--The question part of answer posts--*/
581
582
/*--The answer part of answer posts--*/
583
584
.replies{
585
    margin-top:5px;
586
    padding:5px 20px 5px 20px;
587
    background-color:{color:Color 2};
588
    color:{color:Posts};
589
}
590
591
/*--The answer part of answer posts--*/
592
593
/*--Permalink page--*/
594
595
.caption{
596
    margin-top:10px;
597
    padding:10px;
598
    border:1px solid {color:Color 2};
599
    max-height:300px;
600
    overflow-y:auto;
601
    background-color:{color:Background};
602
}
603
604
ol.notes{
605
    height:300px;
606
    padding:5px;
607
    overflow-y:auto;
608
    list-style-type:none;    
609
    border:1px solid {color:Color 2};
610
    background-color:{color:Background};
611
}
612
613
ol.notes li{
614
    margin:2px;
615
}
616
617
ol.notes blockquote{
618
    font-size:{text:Font Size};
619
}
620
621
ol.notes img.avatar {
622
    margin-right:5px;
623
    width:16px;
624
    height:16px;
625
}
626
627
/*--Permalink Page--*/
628
629
.tumblr_audio_player { 
630
    {block:IndexPage}
631
    width: 250px; 
632
    {/block:IndexPage}
633
    {block:PermalinkPage}
634
    width:500px;
635
    {/block:PermalinkPage}
636
    height: 100px; 
637
    overflow: hidden; 
638
    position: relative;
639
    z-index: 1000; 
640
}
641
642
/*makes images in texts posts stay in the box*/
643
iframe, img, embed, object, video {
644
    max-width: 100%;
645
}
646
647
img {
648
    vertical-align:middle;
649
    height: auto;
650
    width: auto;
651
}
652
653
/*----------------------------------------------------------------------*/
654
655
656
#top, #left, #bottom, #right{
657
    position:fixed;
658
    background-color:{color:Color 2};
659
}
660
661
#top, #left{
662
    top:5px;
663
    left:5px;
664
}
665
666
#bottom, #right{
667
    bottom:5px;
668
    right:2px;
669
}
670
671
#top, #bottom{
672
    height:3px;
673
    width:230px;
674
}
675
676
#left, #right{
677
    height:230px;
678
    width:3px;
679
}
680
681
/*----------------------------------------------------------------------*/
682
683
#s-m-t-tooltip {
684
    max-width:150px; 
685
    background-color:{color:Color 1}; 
686
    font-size:12px;
687
    color:{color:Posts};
688
    letter-spacing:1px; 
689
    padding:2px; 
690
    margin:15px 0px 0px 10px;
691
    z-index:99999999999999999999999999999999999;   
692
}
693
694
body{
695
    text-align:justify;
696
    background-color:{color:Background};
697
    font-family: 'Khula', sans-serif;
698
    font-size:{text:Font Size};
699
    color:{color:Font Color};
700
} 
701
702
h1{
703
    margin:0px 0px 3px 0px;
704
    padding:4px;
705
    background-color:{color:Color 1};
706
    text-align:center;
707
    font-family: 'Julius Sans One', sans-serif;         
708
    font-size:25px;
709
    color:{color:Posts};
710
}
711
712
h2{
713
    margin-top:5px;
714
    margin-bottom:5px;
715
    text-align:center;
716
    font-family: 'Julius Sans One', sans-serif;             
717
    font-size:20px;
718
    color:{color:Color 2};
719
}
720
721
hr{
722
    border:none;
723
    height:1px;
724
    background-color:{color:Color 2};
725
}
726
727
ul{
728
    font-family: 'Khula', sans-serif;    
729
    font-size:{text:Font Size};
730
}
731
732
p{
733
    font-family: 'Khula', sans-serif;    
734
    text-align:justify;    
735
    font-size:{text:Font Size};
736
}
737
738
a{
739
    text-decoration:none;
740
    color:{color:Color 1};
741
        webkit-transition: all 1s ease;
742
    -moz-transition: all 1s ease;
743
    -o-transition: all 1s ease;
744
    transition:all 1s ease;    /*smooth transitions*/       
745
}
746
747
a:hover{
748
    color:{color:Color 2};
749
}
750
751
/*--Change the color of the highlights--*/
752
::-moz-selection { /* Code for Firefox */
753
    background:{color:Color 1};
754
    color:{color:Posts};
755
}
756
::selection{
757
    background:{color:Color 2};
758
    color:{color:Posts};
759
}
760
761
/*Cred to html tutorials*/
762
::-webkit-scrollbar-thumb:vertical {
763
    width:3px; /*width of the slider*/
764
    opacity:1;
765
    background-color:{color:Color 1}; /*color of main scrollbar*/
766
    border-top:5px solid {color:Background};
767
    border-bottom:5px solid {color:Background};
768
    border-left:1px solid {color:Background};
769
    border-right:1px solid {color:Background};
770
}
771
::-webkit-scrollbar {
772
    background-color:{color:Background}; /*color of the slider*/
773
    width:3px;
774
    opacity:1;
775
}
776
777
::-webkit-scrollbar-corner{
778
    background-color:#ffffff;
779
    opacity:0;
780
}
781
782
#infscr-loading {
783
    display: none !important;
784
}
785
786
.tmblr-iframe{
787
    position:fixed;
788
    margin-top:0px;
789
    margin-right:0px;
790
    opacity:0.4;
791
    z-index:10000 !important;
792
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
793
    filter: grayscale(100%);  
794
}
795
796
/*----------------------------------------------------------------------*/            
797
        </style>
798
        
799
    </head>
800
801
802
<!-------------------What Appears On The Browser Tab---------------------->
803
    
804
    <title>{Title}</title>
805
        
806
    <link href="{Favicon}" rel="icon" type="image/x-icon" />
807
<!---------You can customize this to something differant from your profile pic by putting the url to your desired icon in place of {Favicon}------->
808
809
    <link rel="alternate" type="application/rss+xml" href="{RSS}">
810
        {block:Description}
811
        
812
    <meta name="description" content="{MetaDescription}" />
813
        {/block:Description}
814
        
815
<!------------------------------------------------------------------------>
816
        
817
818
819
<!------------------------Masonry Infinite Scroll------------------------->
820
821
{block:indexpage}
822
{block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>
823
{/block:NextPage}
824
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
825
<script type="text/javascript" src="http://static.tumblr.com/bswe8t6/UFVlryaq2/jquerymsnryv2.js"></script>
826
<script type="text/javascript">
827
$(window).load(function(){
828
var $wall = $('#container');
829
$wall.imagesLoaded(function(){
830
$wall.masonry({
831
itemSelector: '.entry, .entry_photo',
832
isAnimated : true
833
});
834
});
835
 
836
$wall.infinitescroll({
837
navSelector : '#page-nav',
838
nextSelector : '#page-nav a',
839
itemSelector : '.entry, .entry_photo',
840
bufferPx : 2000,
841
debug : false,
842
errorCallback: function() {
843
$('#infscr-loading').fadeOut('normal');
844
}},
845
function( newElements ) {
846
var $newElems = $( newElements );
847
$newElems.hide();
848
$newElems.imagesLoaded(function(){
849
$wall.masonry( 'appended', $newElems,{isAnimated: true}, function(){$newElems.fadeIn('slow');} );
850
});
851
}); $('#content').hide(500);
852
});
853
</script>
854
{/block:indexpage}
855
 
856
<!----------------------------------End----------------------------------->
857
 
858
    
859
    <body>
860
861
862
863
<!-----------------------------------------------------------------------> 
864
<div id="sidebar">
865
<div class="sidebar"> 
866
867
    <div id="sbtop"></div>
868
    <div id="sbright"></div>
869
    <div id="sbbottom"></div>
870
    <div id="sbleft"></div>
871
872
    <div id="blogtitle">{Title}</div> 
873
    <div id="description">{Description}</div>
874
    <div id="quote">{text:Quote}</div>
875
    
876
    <div id="links">
877
    <center>
878
    <table>
879
    <tr>
880
<td><a href="/"><div class="links"><i class="fa fa-home"></i></div></a></td>
881
882
<td><a href="/ask" title="Ask"><div class="links"><i class="fa fa-send-o"></i></div></a></td>
883
884
<td><a href="{text:Link 3 URL}" title="{text:Link 3}"><div class="links"><i class="fa fa-user-o"></i></div></a></td>
885
886
<td><a href="{text:Link 4 URL}" title="{text:Link 4}"><div class="links"><i class="fa fa-folder-o"></i></div></a></td>
887
888
<td><a href="http://katting.tk" title="Credit"><div class="links"><i class="fa fa-code"></i></div></a></td>   
889
    </tr>    
890
    </table>    
891
    </div>
892
    </center>
893
</div>    
894
</div> 
895
896
<!----------------------------------------------------------------------->
897
898
<div id="container">
899
900
{block:Posts}
901
<div class="entry">
902
903
    <!--------------------------------------------------------------->
904
    {block:Text}
905
    <div class="post text">
906
    
907
     {block:Title}<h1>{Title}</h1>{/block:Title}
908
     <div id="textpostbody">{Body}</div>
909
     
910
     <div id="posteddate">
911
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
912
     </div>
913
        
914
    </div>
915
    
916
    
917
     {block:IndexPage}
918
     <div id="textpermalinks">
919
     <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
920
921
     <a href="{ReblogURL}"title="Reblog">Reblog</a>       
922
     </div>
923
     {/block:IndexPage}
924
    
925
    {block:Text}
926
     <!--------------------------------------------------------------->
927
     
928
     
929
     <!--------------------------------------------------------------->
930
     {block:Photo}
931
     <div class="post photo">
932
     
933
      {block:IndexPage}
934
      <div id="photoposts">
935
      
936
      <div class="phototop"></div>
937
      <div class="photoleft"></div>
938
      <div class="photobottom"></div>
939
      <div class="photoright"></div>      
940
      
941
      <div class="photohovereffect"></div>
942
      <img src="{PhotoURL-250}" alt="{PhotoAlt}"/>     
943
      </div>
944
     
945
      <div id="photopermalinks">
946
      <a href="{Permalink}"><div class="photopermalinks">{NoteCountWithLabel} <i class="fa fa-heart-o"></i></div></a>         
947
      
948
      <a href="{Permalink}"><div class="photopermalinks">{TimeAgo} <i class="fa fa-clock-o"></i></div></a>      
949
     
950
      <a href="{ReblogURL}"><div class="photopermalinks">Reblog <i class="fa fa-retweet"></i></div></a>
951
      </div>
952
      {block:IndexPage}
953
     
954
      {block:PermalinkPage}
955
      <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
956
      {/block:PermalinkPage}
957
         
958
     </div>
959
     
960
     {/block:Photo}
961
     <!--------------------------------------------------------------->   
962
963
    
964
     <!---------------------------------------------------------------> 
965
     {block:Panorama}
966
     <div class="post panorama">
967
     {LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
968
     {LinkCloseTag} 
969
     
970
     <div id="posteddate">
971
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
972
     </div>     
973
     
974
     </div>
975
976
977
     {block:IndexPage}
978
     <div id="textpermalinks">
979
     <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
980
981
     <a href="{ReblogURL}"title="Reblog">Reblog</a>       
982
     </div>
983
     {/block:IndexPage}     
984
     {/block:Panorama}
985
     <!---------------------------------------------------------------> 
986
     
987
     
988
     <!--------------------------------------------------------------->
989
     {block:Photoset}
990
      <div class="post photoset">
991
      
992
      {block:IndexPage}
993
      {Photoset-250}
994
      {/block:IndexPage}
995
      
996
      {block:PermalinkPage}
997
      {Photoset-500}
998
      {/block:PermalinkPage}
999
      
1000
     <div id="posteddate">
1001
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1002
     </div>      
1003
      
1004
      </div>
1005
      
1006
      
1007
      {block:IndexPage}
1008
      <div id="textpermalinks">
1009
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1010
1011
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1012
      </div>
1013
      {/block:IndexPage}      
1014
     {/block:Photoset}
1015
     <!--------------------------------------------------------------->
1016
     
1017
     
1018
     <!---------------------------------------------------------------> 
1019
     {block:Quote}
1020
     <div id="post quote">
1021
         <div id="textpostbody">
1022
         <blockquote>"{Quote}"</blockquote>
1023
         <div id="source">{Source}</div>            
1024
         </div>
1025
         
1026
     <div id="posteddate">
1027
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1028
     </div>         
1029
         
1030
     </div>
1031
1032
     
1033
      {block:IndexPage}
1034
      <div id="textpermalinks">
1035
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1036
1037
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1038
      </div>
1039
      {/block:IndexPage}      
1040
     {/block:Quote}
1041
     <!--------------------------------------------------------------->
1042
     
1043
     
1044
     <!--------------------------------------------------------------->
1045
     {block:Link}
1046
     <div class="post link">
1047
         <a href="{URL}" class="link" {Target} target="blank"><div id="link"><i class="fa fa-external-link"></i> {Name}</div></a>
1048
         
1049
     <div id="posteddate">
1050
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1051
     </div>         
1052
         
1053
     </div>
1054
     
1055
     
1056
      {block:IndexPage}
1057
      <div id="textpermalinks">
1058
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1059
1060
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1061
      </div>
1062
      {/block:IndexPage}       
1063
     {/block:Link}
1064
     <!--------------------------------------------------------------->   
1065
     
1066
     
1067
     <!--------------------------------------------------------------->
1068
     {block:Chat}
1069
     <div class="post chat">
1070
     
1071
         {block:Title}<h1>{Title}</h1>{/block:Title}
1072
         
1073
         <div class="chat">
1074
         {block:Lines}
1075
         <div class="{Alt} user_{UserNumber}">
1076
         {block:Label}<b>{Label}</b>{/block:Label}
1077
         {Line} 
1078
         </div>
1079
         {block:Lines}             
1080
         </div>     
1081
1082
     <div id="posteddate">
1083
     Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1084
     </div>
1085
         
1086
     </div>
1087
     
1088
     
1089
       {block:IndexPage}
1090
      <div id="textpermalinks">
1091
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1092
1093
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1094
      </div>
1095
      {/block:IndexPage}    
1096
     {/block:Chat}
1097
     <!--------------------------------------------------------------->   
1098
     
1099
     
1100
     <!--------------------------------------------------------------->
1101
     {block:Video}
1102
     <div class="post video">
1103
      {block:IndexPage}{Video-250}{/block:IndexPage}     
1104
      {block:PermalinkPage}{Video-500}{/block:PermalinkPage}  
1105
     
1106
      <div id="posteddate">
1107
      Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1108
      </div>     
1109
      </div>
1110
 
1111
      {block:IndexPage}
1112
      <div id="textpermalinks">
1113
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1114
1115
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1116
      </div>
1117
      {/block:IndexPage}      
1118
     {/block:Video}
1119
     <!--------------------------------------------------------------->
1120
1121
1122
     <!--------------------------------------------------------------->
1123
     {block:Audio}
1124
     <div class="post audio">
1125
         
1126
         
1127
     </div>
1128
     
1129
     
1130
     {/block:Audio}
1131
     <!--------------------------------------------------------------->
1132
     
1133
     
1134
     <!--------------------------------------------------------------->
1135
     {block:Answer}
1136
     
1137
     <div class="question">
1138
        <div class="theasker">
1139
        <table>
1140
        <tr>
1141
        <td><img src="{AskerPortraitURL-64}"></td>
1142
        <td>{Asker} asked:</td>
1143
        </tr>
1144
        </table>    
1145
        </div>
1146
        <div class="asked">{Question}</div>
1147
     </div>
1148
     
1149
     <div class="replies">
1150
     {Answer}
1151
     </div>
1152
 
1153
      <div id="posteddate">
1154
      Posted on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
1155
      </div>  
1156
      
1157
      
1158
      {block:IndexPage}
1159
      <div id="textpermalinks">
1160
      <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
1161
1162
      <a href="{ReblogURL}"title="Reblog">Reblog</a>       
1163
      </div>
1164
      {/block:IndexPage}      
1165
     {/block:Answer}
1166
     <!--------------------------------------------------------------->
1167
     
1168
     
1169
     <!---------------------------------------------------------------> 
1170
     {block:PermalinkPagination}
1171
      {block:PermalinkPage}
1172
       
1173
    {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
1174
    
1175
    {block:PostNotes}{PostNotes-16}{/block:PostNotes}    
1176
    
1177
      {/block:PermalinkPage}
1178
     {/block:PermalinkPagination}
1179
     <!--------------------------------------------------------------->
1180
</div>
1181
{block:Posts}
1182
    
1183
</div>
1184
1185
<style>
1186
    #cred{
1187
        position:fixed;
1188
        z-index:9000;
1189
        bottom:10px;
1190
        right:8px;
1191
        width:15px;
1192
        height:15px;
1193
        padding:5px;
1194
        border-radius:90px;
1195
        background-color:{color:Color 1};
1196
    display: flex;
1197
        align-items: center;
1198
        justify-content: center;            
1199
        text-align:center;
1200
        font-size:14px;
1201
        color:#ffffff;
1202
        webkit-transition: all 1s ease;
1203
    -moz-transition: all 1s ease;
1204
    -o-transition: all 1s ease;
1205
    transition:all 1s ease;    /*smooth transitions*/        
1206
    }
1207
    #cred:hover{
1208
        background-color:{color:Color 2};
1209
    }
1210
    </style>
1211
<a href="http://felinethemes.tumblr.com" title="Feline Themes" target="blank"><div id="cred"><i class="fa fa-paw"></i></div></a>
1212
 
1213
<!---------------------------------------------------------------------->
1214
1215
<!----------------------------------------------------------------------->
1216
<div id="top"></div>
1217
<div id="bottom"></div>
1218
<div id="left"></div>
1219
<div id="right"></div>
1220
<!----------------------------------------------------------------------->
1221
        
1222
    </body>
1223
    
1224
</html>