Hi!

I have a tumblr blog where some of the posts have more than one thousand "notes", like this one: http://alexandreandco.tumblr.com/post/92007371114

Basically thoses thousands of notes consist of three types of notes:
1 - "XXX likes this"
2 - "XXX reblogged this from XXX"
3 - "XXX reblogged this from XXX and added: ...(comment)…"
Some of theses comments are really nice and in a thousands of notes there are maybe 15 comments like this… It's hard to keep track of theses comments because there are lost in one thousand notes.

So in my posts, just before the usual notes, I would like to find a way to integrate first that little list of ONLY that third type of note: "XXX reblogged this from XXX and added: ...(comment)…"

So a list like this:

"XXX reblogged this from XXX and added:
...(comment)…"
"XXX reblogged this from XXX and added:
...(comment)…"
"XXX reblogged this from XXX and added:
...(comment)…"
"XXX reblogged this from XXX and added:
...(comment)…"
"XXX reblogged this from XXX and added:
...(comment)…"


(And then under that first list, then there would be the normal one thousand notes list… (all notes together))

Is there a way i could do that in my tumblr theme html editor? with html? or else? or another way?

I do a bit of coding, but i'm pretty dump with html stuff and so…
(i already modified the avatar size of the people notes in it, and added the number of notes, but i cannot do much more.)

Thanks a lot by advance,
Regards,
Alexandre

P.S: A way to control the font size/colour of the comment itself separately from the sentence "XXX reblogged this from XXX and added", would be amazing.


Here is the html code of my theme (Fixie tumblr theme by Precrafted):
------------

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<!doctype html>

<html class="no-js" lang="en">

<head>




   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

   FIXIE Premium Tumblr Theme by PRECRAFTED
   
   Visit http://precrafted.com for information, support, and more themes!

   Version 4.3

   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

   <meta name="tumblr-theme" content="37056" />


   <!-- Basic Page Settings -->

   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

   <title>{Title}{block:PostSummary} - {PostSummary}{/block:PostSummary}</title>

   <meta name="author" content="{Title}">

   {block:Description}
   <meta name="description" content="{MetaDescription}" />
   {/block:Description}

   <link rel="shortcut icon" href="{Favicon}">
   <link rel="apple-touch-icon" href="{PortraitURL-128}">
   <link rel="alternate" type="application/rss+xml" href="{RSS}">




   <!-- Main Style Settings -->

   <meta name="viewport" content="width=device-width, initial-scale=1">

   {block:IfFontEmbedCode}
   {text:Font Embed Code}
   {/block:IfFontEmbedCode}
   {block:IfNotFontEmbedCode}
   <link href='http://fonts.googleapis.com/css?family=Lato:400,600' rel='stylesheet' type='text/css'>
   {/block:IfNotFontEmbedCode}

   <script src="http://static.tumblr.com/e6lc7yi/hRfmidqdw/modernizr.js"></script>

   <link rel="stylesheet" href="http://static.tumblr.com/e6lc7yi/Wswn0wj9c/precrafted-social.css">
   <link rel="stylesheet" href="http://static.tumblr.com/e6lc7yi/4mgn0zcdl/fixie-styles.css">




   <!-- Custom Options -->


   <!-- Custom Colors -->
   <meta name="color:Background" content="#f5f5f5"/>
   <meta name="color:Blog Title" content="#2c3e50"/>
   <meta name="color:Description" content="#7f8c8d"/>
   
   <meta name="color:Post Background" content="#ffffff"/>
   <meta name="color:Post Titles" content="#2c3e50"/>
   <meta name="color:Text" content="#7f8c8d"/>
   <meta name="color:Link" content="#f5ac5d"/>
   <meta name="color:Link Hover" content="#2c3e50"/>

   
   <!-- Custom Images -->
   <meta name="image:Background" content=""/>
   <meta name="image:Logo" content=""/>
   <meta name="image:Avatar" content=""/>


   <!-- Custom Text -->
   <meta name="text:Load More" content="Load More Posts"/>
   <meta name="text:Load More Loading" content="Loading..."/>
   <meta name="text:Load More End" content="No More Posts"/>
   <meta name="text:Footer Text" content="Your custom footer message"/>
   <meta name="text:Single Column Width" content=""/>

   <meta name="text:Google Analytics Code" content=""/>
   <meta name="text:Disqus Shortname" content=""/>

   <meta name="text:Font Embed Code" content=""/>
   <meta name="text:Font Family Logo" content=""/>
   <meta name="text:Font Family Titles" content=""/>
   <meta name="text:Font Family Body" content=""/>

   <meta name="text:URL Twitter" content=""/>
   <meta name="text:URL Facebook" content=""/>
   <meta name="text:URL Tumblr" content=""/>
   <meta name="text:URL Website" content=""/>
   <meta name="text:URL Google" content=""/>
   <meta name="text:URL Linkedin" content=""/>
   <meta name="text:URL Foursquare" content=""/>
   <meta name="text:URL Skype" content=""/>
   <meta name="text:URL Email" content=""/>
   <meta name="text:URL Instagram" content=""/>
   <meta name="text:URL Flickr" content=""/>
   <meta name="text:URL 500px" content=""/>
   <meta name="text:URL Camera" content=""/>
   <meta name="text:URL Eye" content=""/>
   <meta name="text:URL Pinterest" content=""/>
   <meta name="text:URL Heart" content=""/>
   <meta name="text:URL Youtube" content=""/>
   <meta name="text:URL Vimeo" content=""/>
   <meta name="text:URL Ebay" content=""/>
   <meta name="text:URL Store" content=""/>
   <meta name="text:URL Apple" content=""/>
   <meta name="text:URL Googleplay" content=""/>
   <meta name="text:URL Dribbble" content=""/>
   <meta name="text:URL Behance" content=""/>
   <meta name="text:URL Github" content=""/>
   <meta name="text:URL Forrst" content=""/>
   <meta name="text:URL Quora" content=""/>
   <meta name="text:URL Travel" content=""/>
   <meta name="text:URL Lastfm" content=""/>
   <meta name="text:URL Rdio" content=""/>
   <meta name="text:URL Spotify" content=""/>
   <meta name="text:URL Soundcloud" content=""/>
   <meta name="text:URL RSS" content=""/>


   <!-- Custom Choices -->
   <meta name="if:Tile Background" content="0">
   
   <meta name="if:Show Description" content="1"/>
   <meta name="if:Circle Avatar" content="1"/>
   <meta name="if:Hide Avatar" content="0"/>
   <meta name="if:Show Archive Link" content="1"/>

   <meta name="if:Focus Mode" content="0"/>
   <meta name="if:Single Column Layout" content="0"/>
   <meta name="if:Sidebar On Right" content="0"/>

   <meta name="if:White Icons" content="0"/>
   <meta name="if:Show Meta On Home" content="0">
   <meta name="if:Show Group Author" content="0">
   <meta name="if:Photos Link To Permalink" content="1">

   <meta name="select:Pagination" content="pagination_load-more" title="Load More">
   <meta name="select:Pagination" content="pagination_standard" title="Standard">
   <meta name="select:Pagination" content="pagination_infinite-scroll" title="Infinite Scroll">




   <!-- Custom CSS -->

   <style type="text/css">

		body {
			background: {color:Background};
			color: {color:Text};
		}

		{block:IfBackgroundImage}
		body {
			background: url('{image:Background}') center center no-repeat;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
			background-attachment: fixed;
		}
		{/block:IfBackgroundImage}

		{block:IfTileBackground}
		body {
			-webkit-background-size: auto;
			-moz-background-size: auto;
			-o-background-size: auto;
			background-size: auto;
			background-repeat: repeat;
			background-attachment: scroll;
			background-position: top left;
			background-attachment: fixed;
		}
		{/block:IfTileBackground}

		header .logo h1 {
			color: {color:Blog Title};
			border-color: {color:Blog Title};
		}

		header .logo h1 a {
			color: {color:Blog Title};
		}

		header .description {
			color: {color:Description}
		}

		article .article-content {
			background: {color:Post Background};
		}

		h1, h2, h3, h4, h5, article.type_quote .quote {
			color: {color:Post Titles};
		}

		a {
			color: {color:Link};
		}

		a:hover {
			color: {color:Link Hover};
		}

		nav ul li a,
		footer .type_pagination .load-more,
		footer .type_pagination .scroll-top,
		footer .type_pagination .pagination a,
		footer .post-nav a {
			background: {color:Post Background};
			color: {color:Link};
		}

		nav ul li a:hover,
		footer .type_pagination .load-more:hover,
		footer .type_pagination .scroll-top:hover,
		footer .type_pagination .pagination a:hover,
		footer .post-nav a:hover {
			background: {color:Link};
			color: {color:Post Background};
		}

		article blockquote, article.type_chat .line, article.type_answer .answer-person {
			border-color: {color:Background};
		}

		article.type_link .the-link {
			background: {color:Link};
			color: {color:Post Background};
		}

		article.type_link .the-link:hover {
			background: {color:Link Hover};
		}

		::-moz-selection { background: {color:Link}; color: {color:Post Background}; text-shadow: none; }
		::selection { background: {color:Link}; color: {color:Post Background}; text-shadow: none; }

		{block:IfFontEmbedCode}

		{block:IfFontFamilyBody}
		body {
			font-family: '{text:Font Family Body}';
		}
		{/block:IfFontFamilyBody}

		{block:IfFontFamilyLogo}
		header .logo h1 {
			font-family: '{text:Font Family Logo}';
		}
		{/block:IfFontFamilyLogo}

		{block:IfFontFamilyTitles}
		article h2, article.type_quote .quote, article.type_link .the-link {
			font-family: '{text:Font Family Titles}';
		}
		{/block:IfFontFamilyTitles}

		{/block:IfFontEmbedCode}

		{block:IfSingleColumnLayout}
		.posts-holder article { width: 100%; }
		{block:IfSingleColumnWidth}
		.posts-holder { max-width: {text:Single Column Width}px; }
		{/block:IfSingleColumnWidth}
		{/block:IfSingleColumnLayout}

   </style>

   <style type="text/css">

	  {CustomCSS}

   </style>



   {block:IfGoogleAnalyticsCode}
   <script type="text/javascript">

	  var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', '{text:Google Analytics Code}']);
	  _gaq.push(['_trackPageview']);

	  (function() {
		 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	  })();

   </script>
   {/block:IfGoogleAnalyticsCode}


</head>


<body{block:IfSidebarOnRight} class="sidebar-on-right"{/block:IfSidebarOnRight}>

<!-- Tumblr Theme #37056 -->


<header{block:PermalinkPage} class="permalink"{/block:PermalinkPage}>

	<div class="center">

		<div class="centered">

			<div class="avatar">

				{block:IfNotHideAvatar}
				<a href="/" title="{Title}" class="avatar{block:IfCircleAvatar} circle{/block:IfCircleAvatar}">
					{block:IfAvatarImage}
					<img src="{image:Avatar}" alt="{Title}"/>
					{/block:IfAvatarImage}
					{block:IfNotAvatarImage}
					<img src="{PortraitURL-128}" alt="{Title}" class="default"/>
					{/block:IfNotAvatarImage}
				</a>
				{/block:IfNotHideAvatar}

			</div>

			<div class="logo">

				{block:IfLogoImage}
				<a href="/" title="{Title}"><img src="{image:Logo}" alt="{Title}"/></a>
				{/block:IfLogoImage}
				
				{block:IfNotLogoImage}
				<h1><a href="/" title="{Title}">{Title}</a></h1>
				{/block:IfNotLogoImage}

			</div>

			{block:IfShowDescription}
			<p class="description">{Description}</p>
			{/block:IfShowDescription}


			<nav>

				<ul>
					{block:HasPages}
					{block:Pages}
					<li><a href="{URL}" title="{Label}">{Label}</a></li>
					{/block:Pages}
					{/block:HasPages}
					{block:AskEnabled}
					<li><a href="/ask" title="{AskLabel}">{AskLabel}</a></li>
					{/block:AskEnabled}
					{block:SubmissionsEnabled}
					<li><a href="/submit" title="{SubmitLabel}">{SubmitLabel}</a></li>
					{/block:SubmissionsEnabled}
					{block:IfShowArchiveLink}
					<li><a href="/archive" title="Archive">{lang:Archive}</a></li>
					{/block:IfShowArchiveLink}
				</ul>

				<ul class="social-menu">
					{block:IfURLTwitter}
						<li><a href="{text:URL Twitter}" target="_blank" title="Twitter"><i class="social-tweets"></i></a></li>
					{/block:IfURLTwitter}
					{block:IfURLFacebook}
						<li><a href="{text:URL Facebook}" target="_blank" title="Facebook"><i class="social-facebook"></i></a></li>
					{/block:IfURLFacebook}
					{block:IfURLTumblr}
						<li><a href="{text:URL Tumblr}" target="_blank" title="Tumblr"><i class="social-tumblr"></i></a></li>
					{/block:IfURLTumblr}
					{block:IfURLWebsite}
						<li><a href="{text:URL Website}" target="_blank" title="Website"><i class="social-monitor"></i></a></li>
					{/block:IfURLWebsite}
					{block:IfURLGoogle}
						<li><a href="{text:URL Google}" target="_blank" title="Google"><i class="social-gplus"></i></a></li>
					{/block:IfURLGoogle}
					{block:IfURLLinkedin}
						<li><a href="{text:URL Linkedin}" target="_blank" title="Linkedin"><i class="social-linkedin"></i></a></li>
					{/block:IfURLLinkedin}
					{block:IfURLFoursquare}
						<li><a href="{text:URL Foursquare}" target="_blank" title="Foursquare"><i class="social-foursquare"></i></a></li>
					{/block:IfURLFoursquare}
					{block:IfURLSkype}
						<li><a href="{text:URL Skype}" target="_blank" title="Skype"><i class="social-skype"></i></a></li>
					{/block:IfURLSkype}
					{block:IfURLEmail}
						<li><a href="mailto:{text:URL Email}" target="_blank" title="Email"><i class="social-mail"></i></a></li>
					{/block:IfURLEmail}
					{block:IfURLInstagram}
						<li><a href="{text:URL Instagram}" target="_blank" title="Instagram"><i class="social-instagram"></i></a></li>
					{/block:IfURLInstagram}
					{block:IfURLFlickr}
						<li><a href="{text:URL Flickr}" target="_blank" title="Flickr"><i class="social-flickr"></i></a></li>
					{/block:IfURLFlickr}
					{block:IfURL500px}
						<li><a href="{text:URL 500px}" target="_blank" title="500px"><i class="social-fivehundredpx"></i></a></li> 	 	 	   
					{/block:IfURL500px}
					{block:IfURLCamera}
						<li><a href="{text:URL Camera}" target="_blank" title=""><i class="social-camera"></i></a></li>
					{/block:IfURLCamera}
					{block:IfURLEye}
						<li><a href="{text:URL Eye}" target="_blank" title=""><i class="social-eye"></i></a></li>
					{/block:IfURLEye}
					{block:IfURLPinterest}
						<li><a href="{text:URL Pinterest}" target="_blank" title="Pinterest"><i class="social-pinterest"></i></a></li>
					{/block:IfURLPinterest}
					{block:IfURLHeart}
						<li><a href="{text:URL Heart}" target="_blank" title=""><i class="social-heart"></i></a></li>
					{/block:IfURLHeart}
					{block:IfURLYoutube}
						<li><a href="{text:URL Youtube}" target="_blank" title="Youtube"><i class="social-youtube"></i></a></li>
					{/block:IfURLYoutube}
					{block:IfURLVimeo}
						<li><a href="{text:URL Vimeo}" target="_blank" title="Vimeo"><i class="social-vimeo"></i></a></li>
					{/block:IfURLVimeo}
					{block:IfURLEbay}
						<li><a href="{text:URL Ebay}" target="_blank" title="Ebay"><i class="social-ebay"></i></a></li>
					{/block:IfURLEbay}
					{block:IfURLStore}
						<li><a href="{text:URL Store}" target="_blank" title="Store"><i class="social-basket"></i></a></li>
					{/block:IfURLStore}
					{block:IfURLApple}
						<li><a href="{text:URL Apple}" target="_blank" title="Apple"><i class="social-apple"></i></a></li>
					{/block:IfURLApple}
					{block:IfURLGoogleplay}
						<li><a href="{text:URL Googleplay}" target="_blank" title="Google Play"><i class="social-googleplay"></i></a></li>
					{/block:IfURLGoogleplay}
					{block:IfURLDribbble}
						<li><a href="{text:URL Dribbble}" target="_blank" title="Dribbble"><i class="social-dribbble"></i></a></li>
					{/block:IfURLDribbble}
					{block:IfURLBehance}
						<li><a href="{text:URL Behance}" target="_blank" title="Behance"><i class="social-behance"></i></a></li>
					{/block:IfURLBehance}
					{block:IfURLGithub}
						<li><a href="{text:URL Github}" target="_blank" title="Github"><i class="social-github"></i></a></li>
					{/block:IfURLGithub}
					{block:IfURLForrst}
						<li><a href="{text:URL Forrst}" target="_blank" title="Forrst"><i class="social-forrst"></i></a></li>
					{/block:IfURLForrst}
					{block:IfURLQuora}
						<li><a href="{text:URL Quora}" target="_blank" title="Quora"><i class="social-quora"></i></a></li>
					{/block:IfURLQuora}
					{block:IfURLTravel}
						<li><a href="{text:URL Travel}" target="_blank" title=""><i class="social-suitcase"></i></a></li>
					{/block:IfURLTravel}
					{block:IfURLLastfm}
						<li><a href="{text:URL Lastfm}" target="_blank" title="Lastfm"><i class="social-lastfm"></i></a></li>
					{/block:IfURLLastfm}
					{block:IfURLRdio}
						<li><a href="{text:URL Rdio}" target="_blank" title="Rdio"><i class="social-rdio"></i></a></li>
					{/block:IfURLRdio}
					{block:IfURLSpotify}
						<li><a href="{text:URL Spotify}" target="_blank" title="Spotify"><i class="social-spotify"></i></a></li>
					{/block:IfURLSpotify}
					{block:IfURLSoundcloud}
						<li><a href="{text:URL Soundcloud}" target="_blank" title="Soundcloud"><i class="social-soundcloud"></i></a></li>
					{/block:IfURLSoundcloud}
					{block:IfURLRSS}
						<li><a href="{text:URL RSS}" target="_blank" title="RSS"><i class="social-rss"></i></a></li>
					{/block:IfURLRSS}
				</ul>

			</nav>

		</div> 	 	 	   

	</div>


</header>


<section class="the-posts{block:IndexPage} index{/block:IndexPage}{block:PermalinkPage} single-post{/block:PermalinkPage}">

	<div class="posts-holder
	{block:IndexPage} posts-grid
	{block:IfFocusMode}focus-mode{/block:IfFocusMode}
	{/block:IndexPage}">


		{block:IndexPage}<div class="grid-sizer"></div>{/block:IndexPage}
   

		{block:Posts}

		<article id="{PostID}" class="type_{PostType} {TagsAsClasses}" rel="{ReblogURL}">

			<div class="article-content">



			 
			{block:Text}

			<!-- Text Post -->

			{block:Title}
			<h2>{block:IndexPage}<a href="{Permalink}" title="{Title}">{/block:IndexPage}{Title}{block:IndexPage}</a>{/block:IndexPage}</h2>
			{/block:Title}

			{Body}

			{/block:Text}



			 
			{block:Photo}

			<!-- Photo Post -->

			{block:IndexPage}

			{block:IfPhotosLinkToPermalink}
			<a href="{Permalink}" title="{Title}">
				{block:IfSingleColumnLayout}
				<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfSingleColumnLayout}
				{block:IfNotSingleColumnLayout}
				<img src="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfNotSingleColumnLayout}
			</a>
			{/block:IfPhotosLinkToPermalink}

			{block:IfNotPhotosLinkToPermalink}
			{LinkOpenTag}
				{block:IfSingleColumnLayout}
				<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfSingleColumnLayout}
				{block:IfNotSingleColumnLayout}
				<img src="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfNotSingleColumnLayout}
			{LinkCloseTag}
			{/block:IfNotPhotosLinkToPermalink}

			{/block:IndexPage}

			{block:PermalinkPage}
			{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />{LinkCloseTag}
			{/block:PermalinkPage}

			{block:Caption}
			<div class="caption">
				{Caption}
			</div>
			{/block:Caption}

			{/block:Photo}




			{block:Panorama}

			<!-- Panorama Post -->

			{LinkOpenTag}
				{block:IfSingleColumnLayout}
				<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfSingleColumnLayout}
				{block:IfNotSingleColumnLayout}
				<img src="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
				{/block:IfNotSingleColumnLayout}
			{LinkCloseTag}

			{block:Caption}
			<div class="caption">
				{Caption}
			</div>
			{/block:Caption}

			{/block:Panorama}



			 
			{block:Photoset}

			<!-- Photoset Post -->

			<div class="photoset-grid" data-layout="{PhotosetLayout}" data-id="photoset{PostID}">
				{block:Photos}
				<img src="{PhotoURL-500}"
					{block:HighRes}data-highres="{PhotoURL-HighRes}"{/block:HighRes}
					{block:Caption}alt="{Caption}"{/block:caption}
					data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"/>
				{/block:Photos}
			</div>

			{block:Caption}
			<div class="caption">
				{Caption}
			</div>
			{/block:caption}

			{/block:Photoset}




			{block:Video}

			<!-- Video Post -->

			<div class="video-container" id="{postID}">
				{VideoEmbed-700}
			</div> 	 	 	   

			{block:Caption}
			<div class="caption">
				{Caption}
			</div>
			{/block:Caption}

			{/block:Video}




			{block:Audio}

			<!-- Audio Post -->

			{block:AudioEmbed}
				<div class="audio-player">
					{AudioEmbed}
				</div>
			{/block:AudioEmbed}

			{block:ExternalAudio}
				<a href="{ExternalAudioURL}">{lang:Download}</a>
			{/block:ExternalAudio}

			{block:Caption}
			<div class="caption">
				{Caption}
			</div>
			{/block:Caption}

			{/block:Audio}




			{block:Quote}

			<!-- Quote Post -->

			<div class="quote {Length}">
				{Quote}
			</div> 	 	 	   

			{block:Source}
				<div class="quote-author">- {Source}</div>
			{/block:Source}

			{/block:Quote}




			{block:Answer}
			 
			<!-- Answer Post -->
			 
			<div class="answer-wrap">
				<div class="answer-image{block:IfCircleAvatar} circle{/block:IfCircleAvatar}"><img src="{AskerPortraitURL-64}"></div>
				<div class="answer-person">{Asker} asked:</div>
				<div class="answer-text">{Question}</div>
			</div>

			<hr>

			{block:Answerer}
			<div class="answer-wrap">
				<div class="answer-image{block:IfCircleAvatar} circle{/block:IfCircleAvatar}"><img src="{AnswererPortraitURL-64}" alt="{Title}"/></div>
				<div class="answer-person">{Answerer} answered:</div>
				<div class="answer-text">{Answer}</div>
			</div>
			<hr>
			{/block:Answerer}

			<div class="answer-wrap">
				{Replies}
			</div>

			{/block:Answer}




			{block:Chat}

			<!-- Chat Post -->

			{block:Title}
			<h2>{block:IndexPage}<a href="{Permalink}" title="{Title}">{/block:IndexPage}{Title}{block:IndexPage}</a>{/block:IndexPage}</h2>
			{/block:Title}

			{block:Lines}
				<div class="line {Alt}">{block:Label}<strong>{Label}</strong>{/block:Label} {Line}</div>
			{/block:Lines}

			{/block:Chat}




			{block:Link}

			<!-- Link Post -->

			<a href="{URL}" class="the-link" {Target}>{Name} &raquo;<span>{URL}</span></a>

			{block:Description}
			<div class="caption">
				{Description}
			</div> 	 	 	   
			{/block:Description}

			{/block:Link}



			{block:Date}
			
		

			<ul class="icons">
			   {block:IfWhiteIcons}
			   <li><a href="{Permalink}" class="permalink">
					<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="14px" height="14px" fill="#fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
					<polygon points="100,37.5 62.5,37.5 62.5,0 37.5,0 37.5,37.5 0,37.5 0,62.5 37.5,62.5 37.5,100 62.5,100   62.5,62.5 100,62.5 "/>
					</svg>
			   </a></li>
			   <li>{LikeButton color="white" size="16"}</li>
			   <li class="sharer white">
					<i class="social-export"></i>
					<i class="reblog-icon">{ReblogButton color="white" size="16"}</i>
					<a href="https://twitter.com/intent/tweet?url={URLEncodedPermalink}" class="social-tweets" target="_blank"></a>
					<a href="http://www.facebook.com/sharer.php?u={Permalink}" class="social-facebook" target="_blank"></a>
				</li>
			   {/block:IfWhiteIcons}
			   {block:IfNotWhiteIcons}
			   <li><a href="{Permalink}" class="permalink">
					<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="14px" height="14px" fill="#000" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
					<polygon points="100,37.5 62.5,37.5 62.5,0 37.5,0 37.5,37.5 0,37.5 0,62.5 37.5,62.5 37.5,100 62.5,100   62.5,62.5 100,62.5 "/>
					</svg>
			   </a></li>
			   <li>{LikeButton color="black" size="16"}</li>
				<li class="sharer">
					<i class="social-export"></i>
					<i class="reblog-icon">{ReblogButton color="black" size="16"}</i>
					<a href="https://twitter.com/intent/tweet?url={URLEncodedPermalink}" class="social-tweets" target="_blank"></a>
					<a href="http://www.facebook.com/sharer.php?u={Permalink}" class="social-facebook" target="_blank"></a>
				</li> 	 	 	   
			   {/block:IfNotWhiteIcons}
			   
			</ul>



			{block:IfShowMetaOnHome}
			{block:IndexPage}
			<div class="post-meta">
				<a href="{Permalink}">{TimeAgo}</a> &nbsp;&nbsp; {block:RebloggedFrom}<a class="reblogged" href="{ReblogParentURL}" title="{ReblogParentTitle}">Reblogged from {ReblogParentTitle}</a>{/block:RebloggedFrom} &nbsp;&nbsp; {block:NoteCount}<a href="{Permalink}#notes">{NoteCountWithLabel}</a>{/block:NoteCount}
			</div> 	 	 	   
			{block:HasTags}
			<div class="tagged">
				{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}
			</div>
			{/block:HasTags}
			{/block:IndexPage}
			{/block:IfShowMetaOnHome}

			{block:IfDisqusShortname}
			{block:IndexPage}
			<a class="dsq-comment-count" href="{Permalink}#disqus_thread">Comments</a>
			<script type="text/javascript">
				var disqus_shortname = '{text:Disqus Shortname}';
				(function () {
					var s = document.createElement('script'); s.async = true;
					s.type = 'text/javascript';
					s.src = '//' + disqus_shortname + '.disqus.com/count.js';
					(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
				}());
			</script> 	 	 	   
			{/block:IndexPage}
			{/block:IfDisqusShortname}



			{block:PermalinkPage}


			{block:GroupMembers}
			{block:IfShowGroupAuthor}
			<div class="group-author">
				<a href="{PostAuthorURL}" title="{PostAuthorTitle}"><img src="{PostAuthorPortraitURL-30}" alt="{PostAuthorTitle}"{block:IfCircleAvatar} class="circle"{/block:IfCircleAvatar}>Posted by {PostAuthorTitle}</a>
			</div>
			{/block:IfShowGroupAuthor}
			{/block:GroupMembers}


			<div class="post-meta">
				{TimeAgo}<br />
				{block:ContentSource}
				Source: {SourceLink}<br />
				{/block:ContentSource}
				{block:RebloggedFrom}
				<a class="reblogged" href="{ReblogParentURL}" title="{ReblogParentTitle}">Reblogged from {ReblogParentTitle}</a>
				{/block:RebloggedFrom}
			</div>

			{block:HasTags}
			<div class="tagged">
				{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}
			</div>
			{/block:HasTags}

			{block:IfDisqusShortname}
			<div id="disqus_thread" class="disqus"></div>
			<script type="text/javascript">
				var disqus_shortname = '{text:Disqus Shortname}';
				(function() {
					var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
					dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
					(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
				})();
			</script>
			<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
			<a href="http://disqus.com" class="dsq-brlink">Comments powered by <span class="logo-disqus">Disqus</span></a>
			{/block:IfDisqusShortname}


	
			{block:PostNotes}
			
				{block:NoteCount} {NoteCountWithLabel} {/block:NoteCount}
				
			<div id="notes" class="post-notes{block:IfCircleAvatar} square{/block:IfCircleAvatar}">
				{PostNotes-64}
			</div>
			{/block:PostNotes}

			{/block:PermalinkPage}

			{/block:Date}




			</div> 	 	 	   

		</article>

		{/block:Posts}

	</div>

</section>



<footer{block:PermalinkPage} class="individual-footer"{/block:PermalinkPage}>

	{block:IndexPage}
	<div class="type_pagination {select:Pagination}">
		{block:Pagination}
		<div class="pagination">
			{block:PreviousPage}<a href="{PreviousPage}" class="prev"><i class="social-left"></i>&nbsp;&nbsp; {lang:Previous page}</a>{/block:PreviousPage}
			{block:NextPage}<a href="{NextPage}" class="next">{lang:Next page} &nbsp;&nbsp;<i class="social-right"></i></a>{/block:NextPage}
		</div>
		{/block:Pagination}
		{block:NextPage}
		<div class="load-more">
			{block:IfLoadMoreLoading}<span class="load-more-loading">{text:Load More Loading}</span>{block:IfLoadMoreLoading}
			{block:IfLoadMoreEnd}<span class="load-more-end">{text:Load More End}</span>{block:IfLoadMoreEnd}
			{block:IfLoadMore}<span class="load-more-text">{text:Load More}</span>{block:IfLoadMore}
		</div>
		{/block:NextPage}
		
	</div>
	{/block:IndexPage}

	{block:PermalinkPagination}
	<div class="post-nav">
		{block:NextPost}<a href="{NextPost}" class="next" title="{lang:Next post}"><i class="social-left"></i></a>{/block:NextPost}
		{block:PreviousPost}<a href="{PreviousPost}" class="prev" title="{lang:Previous post}"><i class="social-right"></i></a>{/block:PreviousPost}
	</div>
	{/block:PermalinkPagination}

	<div class="footer-border">

		{block:IfFooterText}<span>{text:Footer Text}</span>{/block:IfFooterText}
		<span>&copy; {Title} {CopyrightYears}</span>

		<div class="credit">
			<a href="http://precrafted.com" title="Precrafted" target="_blank">FIXIE Tumblr Theme by Precrafted</a>
		</div>

	</div>

</footer>




<!-- Javascript Assets -->

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>

<script src="http://static.tumblr.com/e6lc7yi/tKwmx84hd/fixie-plugins.js"></script>

<script src="http://static.tumblr.com/e6lc7yi/U42n0zcee/fixie-app.js"></script>



</body>
<!--
    This Tumblr Theme and all of its CSS, Javascript,
    and media assets are subject to Tumblr's Terms of Service:

    http://www.tumblr.com/terms_of_service
-->
</html>