Ministry

Urtheme

Nov 8th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.65 KB | None | 0 0
  1. <html lang="en">
  2.  
  3. <!----
  4. striife theme 4
  5. by http://exx0.tumblr.com
  6. ----->
  7.  
  8. <style> body, a, a:hover { cursor:url('http://www.dolliehost.com/dolliecrave/cursors/cursors-all/finger01.gif'), auto }</style>
  9.  
  10. <head>
  11. <script type="text/javascript">
  12. function tb8_makeArray(n){
  13. this.length = n;
  14. return this.length;
  15. }
  16. tb8_messages = new tb8_makeArray(3);
  17. tb8_messages[0] = "Welcome to my world.";
  18. tb8_messages[1] = "Welcome to my world.";
  19. tb8_messages[2] = "Welcome to my world.";
  20. tb8_rptType = 'infinite';
  21. tb8_rptNbr = 5;
  22. tb8_speed = 100;
  23. tb8_delay = 2000;
  24. var tb8_counter=1;
  25. var tb8_currMsg=0;
  26. var tb8_tekst ="";
  27. var tb8_i=0;
  28. var tb8_TID = null;
  29. function tb8_pisi(){
  30. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  31. document.title = tb8_tekst;
  32. tb8_sp=tb8_speed;
  33. tb8_i++;
  34. if (tb8_i==tb8_messages[tb8_currMsg].length){
  35. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  36. }
  37. if (tb8_currMsg == tb8_messages.length){
  38. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  39. clearTimeout(tb8_TID);
  40. return;
  41. }
  42. tb8_counter++;
  43. tb8_currMsg = 0;
  44. }
  45. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  46. }
  47. tb8_pisi()
  48. </script>
  49. <noframes></noframes><noscript></noscript><!-- --><script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type='text/javascript'>
  50. //<![CDATA[
  51. var rate = 20;
  52. if (document.getElementById)
  53. window.onerror=new Function("return true")
  54. var objActive; // The object which event occured in
  55. var act = 0; // Flag during the action
  56. var elmH = 0; // Hue
  57. var elmS = 128; // Saturation
  58. var elmV = 255; // Value
  59. var clrOrg; // A color before the change
  60. var TimerID; // Timer ID
  61. if (document.all) {
  62. document.onmouseover = doRainbowAnchor;
  63. document.onmouseout = stopRainbowAnchor;
  64. }
  65. else if (document.getElementById) {
  66. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  67. document.onmouseover = Mozilla_doRainbowAnchor;
  68. document.onmouseout = Mozilla_stopRainbowAnchor;
  69. }
  70. function doRainbow(obj)
  71. {
  72. if (act == 0) {
  73. act = 1;
  74. if (obj)
  75. objActive = obj;
  76. else
  77. objActive = event.srcElement;
  78. clrOrg = objActive.style.color;
  79. TimerID = setInterval("ChangeColor()",100);
  80. }
  81. }
  82. function stopRainbow()
  83. {
  84. if (act) {
  85. objActive.style.color = clrOrg;
  86. clearInterval(TimerID);
  87. act = 0;
  88. }
  89. }
  90. function doRainbowAnchor()
  91. {
  92. if (act == 0) {
  93. var obj = event.srcElement;
  94. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  95. obj = obj.parentElement;
  96. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  97. break;
  98. }
  99. if (obj.tagName == 'A' && obj.href != '') {
  100. objActive = obj;
  101. act = 1;
  102. clrOrg = objActive.style.color;
  103. TimerID = setInterval("ChangeColor()",100);
  104. }
  105. }
  106. }
  107. function stopRainbowAnchor()
  108. {
  109. if (act) {
  110. if (objActive.tagName == 'A') {
  111. objActive.style.color = clrOrg;
  112. clearInterval(TimerID);
  113. act = 0;
  114. }
  115. }
  116. }
  117. function Mozilla_doRainbowAnchor(e)
  118. { if (act == 0) {
  119. obj = e.target;
  120. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  121. obj = obj.parentNode;
  122. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  123. break;
  124. }
  125. if (obj.nodeName == 'A' && obj.href != '') {
  126. objActive = obj;
  127. act = 1;
  128. clrOrg = obj.style.color;
  129. TimerID = setInterval("ChangeColor()",100);
  130. }
  131. }
  132. }
  133. function Mozilla_stopRainbowAnchor(e)
  134. {
  135. if (act) {
  136. if (objActive.nodeName == 'A') {
  137. objActive.style.color = clrOrg;
  138. clearInterval(TimerID);
  139. act = 0;
  140. }
  141. }
  142. }
  143. function ChangeColor()
  144. {
  145. objActive.style.color = makeColor();
  146. }
  147. function makeColor()
  148. {
  149. // Don't you think Color Gamut to look like Rainbow?
  150. // HSVtoRGB
  151. if (elmS == 0) {
  152. elmR = elmV; elmG = elmV; elmB = elmV;
  153. }
  154. else {
  155. t1 = elmV;
  156. t2 = (255 - elmS) * elmV / 255;
  157. t3 = elmH % 60;
  158. t3 = (t1 - t2) * t3 / 60;
  159. if (elmH < 60) {
  160. elmR = t1; elmB = t2; elmG = t2 + t3;
  161. }
  162. else if (elmH < 120) {
  163. elmG = t1; elmB = t2; elmR = t1 - t3;
  164. }
  165. else if (elmH < 180) {
  166. elmG = t1; elmR = t2; elmB = t2 + t3;
  167. }
  168. else if (elmH < 240) {
  169. elmB = t1; elmR = t2; elmG = t1 - t3;
  170. }
  171. else if (elmH < 300) {
  172. elmB = t1; elmG = t2; elmR = t2 + t3;
  173. }
  174. else if (elmH < 360) {
  175. elmR = t1; elmG = t2; elmB = t1 - t3;
  176. }
  177. else {
  178. elmR = 0; elmG = 0; elmB = 0;
  179. }
  180. }
  181. elmR = Math.floor(elmR).toString(16);
  182. elmG = Math.floor(elmG).toString(16);
  183. elmB = Math.floor(elmB).toString(16);
  184. if (elmR.length == 1) elmR = "0" + elmR;
  185. if (elmG.length == 1) elmG = "0" + elmG;
  186. if (elmB.length == 1) elmB = "0" + elmB;
  187. elmH = elmH + rate;
  188. if (elmH >= 360)
  189. elmH = 0;
  190. return '#' + elmR + elmG + elmB;
  191. }
  192. //]]>
  193. </script>
  194.  
  195.  
  196. <link href='http://fonts.googleapis.com/css?family=Meddon' rel='stylesheet' type='text/css'>
  197.  
  198. <link href='http://fonts.googleapis.com/css?family=Kotta+One|Bad+Script|Oleo+Script|Bilbo|Waiting+for+the+Sunrise|Just+Me+Again+Down+Here|Shadows+Into+Light+Two|Architects+Daughter|Annie+Use+Your+Telescope|Handlee|Loved+by+the+King|Kaushan+Script|Devonshire' rel='stylesheet' type='text/css'>
  199.  
  200. <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah|Share' rel='stylesheet' type='text/css'>
  201.  
  202. <title>{title}</title>
  203. <link rel="icon" href="{Favicon}"/>
  204. <link href='http://fonts.googleapis.com/css?family=Delius+Unicase' rel='stylesheet' type='text/css'>
  205.  
  206.  
  207.  
  208.  
  209. <meta name="color:Background" content="#e6e6e6"/>
  210. <meta name="color:Post Box" content="#F5F5F5"/>
  211. <meta name="color:Title" content="#292929"/>
  212. <meta name="color:Text" content="#363636"/>
  213. <meta name="color:Link" content="#5c5c5c"/>
  214. <meta name="color:Hover" content="#FFF"/>
  215. <meta name="color:scrollbar" content="#999"/>
  216.  
  217. <meta name="image:Background" content=""/>
  218. <meta name="image:Sidebar" content=""/>
  219. <meta name="image:Banner" content="">
  220.  
  221. <meta name="text:Font Size" content="10" />
  222. <meta name="text:Line Height" content="10" />
  223. <meta name="if:Show Blogtitle" content="0"/>
  224. <meta name="if:Post Shadows" content="0" />
  225. <meta name="if:Banner" content="0"/>
  226. <meta name="if:Top Banner" content="0" />
  227. <meta name="if:Reblog On Hover" content="0" />
  228. <meta name="if:Show sidebar image" content="1"/>
  229. <meta name="if:Sidebar Left" content="0">
  230. <meta name="if:Photo Hover 1" content="0" />
  231. <meta name="if:Black and White" content "0" />
  232. <meta name="if:Sepia" content="0" />
  233. <meta name="if:Blur" content="0" />
  234. <meta name="if:Reverse Black and White" content "0" />
  235. <meta name="if:Reverse Sepia" content="0" />
  236. <meta name="if:Reverse Blur" content="0" />
  237. <meta name="if:Invert" content="0" />
  238. <meta name="if:Hue Rotate" content="0" />
  239. <meta name="if:Faded Images" content="0" />
  240. <meta name="if:360 Spin" content="0" />
  241. <meta name="if:360 Spin 1" content="0" />
  242. <meta name="if:Sidebar Image Shadow" content="1"/>
  243. <meta name="if:Title 1" content="1" />
  244. <meta name="if:Title 2" content="0" />
  245. <meta name="if:Title 3" content="0" />
  246. <meta name="if:Title 4" content="0" />
  247. <meta name="if:One Column" content="0" />
  248. <meta name="if:Two Columns Smaller" content="1" />
  249. <meta name="if:Two Columns Bigger" content="0" />
  250. <meta name="if:Three Columns" content="0" />
  251. <meta name="if:Four Columns" content="0" />
  252.  
  253. <meta name="text:Link One" content="" />
  254. <meta name="text:Link One Title" content="" />
  255. <meta name="text:Link Two" content="" />
  256. <meta name="text:Link Two Title" content="" />
  257. <meta name="text:Link Three" content="" />
  258. <meta name="text:Link Three Title" content="" />
  259. <meta name="text:Link Four" content="" />
  260. <meta name="text:link Four Title" content="" />
  261. <meta name="text:link Five" content="" />
  262. <meta name="text:link Five Title" content="" />
  263. <meta name="text:link Six" content="" />
  264. <meta name="text:link Six Title" content="" />
  265.  
  266.  
  267. <script type="text/javascript"
  268. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  269. <script>
  270. $(document).ready(function() {
  271. //
  272. $('a.poplight[href^=#]').click(function() {
  273. var popID = $(this).attr('rel'); //Get Popup Name
  274. var popURL = $(this).attr('href'); //Get Popup href to define size
  275. var query= popURL.split('?');
  276. var dim= query[1].split('&');
  277. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  278. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close" alt="Close" /></a>');
  279. var popMargTop = ($('#' + popID).height() + 80) / 2;
  280. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  281. //Apply Margin to Popup
  282. $('#' + popID).css({
  283. 'margin-top' : -popMargTop,
  284. 'margin-left' : -popMargLeft
  285. });
  286. $('body').append('<div id="fade"></div>');
  287. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  288. return false;
  289. });
  290. $('a.close, #fade').live('click', function() {
  291. $('#fade , .popup_block').fadeOut(function() {
  292. $('#fade, a.close').remove(); //fade them both out
  293. });
  294. return false;
  295. });
  296. });
  297. </script>
  298.  
  299.  
  300. <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
  301. <script type="text/javascript">
  302. $(document).ready(function () {
  303. $('li.drawer div:nth-child(2)').hide();
  304. $('li.drawer h4').click(function () {
  305. if ($(this).hasClass('open')) {
  306. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
  307. else {
  308. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
  309. $(this).next().slideDown();
  310. $(this).addClass('open');}
  311. });
  312. });
  313. </script>
  314. <style type="text/css">
  315. .links_list { margin:0px; padding:0px; width:100%;}
  316. .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
  317. .links_body { padding:10px; text-align:left; display:none;}
  318. </style>
  319. <style type="text/css">
  320.  
  321.  
  322. #fade { /*--Transparent background layer--*/
  323. display: none; /*--hidden by default--*/
  324. background: #000;
  325. position: fixed; left: 0; top: 0;
  326. width: 100%; height: 100%;
  327. opacity: .80;
  328. z-index: 9999;
  329. }
  330. .popup_block{
  331. display: none; /*--hidden by default--*/
  332. background: #fff;
  333. padding: 20px;
  334. border:0px solid #ddd;
  335. float: left;
  336. font-size: 1.2em;
  337. position: fixed;
  338. top: 50%; left: 50%;
  339. z-index: 99999;
  340. /*--CSS3 Box Shadows--*/
  341. -webkit-box-shadow: 0px 0px 20px #000;
  342. -moz-box-shadow: 0px 0px 20px #000;
  343. box-shadow: 0px 0px 20px #000;
  344. }
  345. img.btn_close {
  346. float: right;
  347. margin: -5px -5px 0 0;
  348. }
  349. /*--Making IE6 Understand Fixed Positioning--*/
  350. *html #fade {
  351. position: absolute;
  352. }
  353. *html .popup_block {
  354. position: absolute;
  355. }
  356.  
  357. iframe#tumblr_controls {top: 1px !important;margin: 0 0 0 0;right:4px !important;position:fixed !important; position:absolute;z-index:9999999999;}
  358.  
  359. body{
  360. margin:0px;
  361. background-color: {color:Background};
  362. background-image:url({image:Background});
  363. background-attachment: fixed;
  364. background-repeat: repeat;
  365. font-size: {text:font size}px;
  366. font-family:Trebuchet MS;
  367. line-height:{text:line height}px;
  368. color:{color:Text};
  369. }
  370.  
  371. {block:ifSmallscrollbar}
  372. ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:auto;}
  373. ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar};height:10px !important;}
  374. ::-webkit-scrollbar {height:7px; width:7px; background-color: {color:background}; background-image:url({image:Background});}
  375. {/block:ifSmallscrollbar}
  376.  
  377. a:link, a:active, a:visited{
  378. color: {color:Link};
  379. text-decoration: none;
  380. -webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;-o-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
  381. }
  382.  
  383. a:hover{
  384. color:{color:Hover};
  385. text-decoration: none;
  386. -webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
  387. }
  388.  
  389. .sidelink{font-style:italic;
  390. font-family: Trebuchet MS;
  391. font-color: {color:Text};
  392.  
  393. text-align: left;
  394. padding-left:5px;
  395.  
  396. font-size:9px; display:block;
  397. margin:-5px;width:auto;
  398. -webkit-transition: all 1.5s linear; -moz-transition: all 1.5s linear; transition: all 1.5s linear;}
  399.  
  400. .sidelink:hover{background-color:rgba(0,0,0,0);
  401. style: italic;
  402. color:{color:Hover};
  403. padding-left:5px;
  404. margin:-5px;width:auto;
  405. -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
  406. .sidelink a:hover{color: {color:Link};
  407. -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
  408.  
  409. #post{{block:iftwocolumns}width:400px;{/block:iftwocolumns}{block:ifthreecolumns}width:400px;{/block:ifthreecolumns}{block:iffourcolumns}width:300px;{/block:iffourcolumns}{block:ifonecolumn}width:500px;{/block:ifonecolumn} height:auto;}
  410. {block:PermalinkPage}float: left; right: 500; margin-right:153px; width: 500px;{/block:PermalinkPage}
  411. {block:ifRoundedEdges}
  412. -moz-border-radius: 3px;
  413. border-radius: 3px;
  414. {/block:ifRoundedEdges}
  415. }
  416.  
  417.  
  418. #sidee{
  419. text-align:center;
  420. padding-top:3px;
  421. padding-bottom:3px;
  422. position:fixed !important;
  423. width:00px;
  424. height:207px;
  425. {block:ifshowbox}
  426. background-color:transparent;
  427. text-align:center;
  428. {/block:ifshowbox}
  429. {block:PermalinkPage}
  430. text-align:left;
  431. margin-left:-140px;
  432. width:0px;
  433. height:207px;
  434. {/block:PermalinkPage}
  435. {block:ifRoundedEdges}
  436. text-align:left;
  437. -moz-border-radius: 3px;
  438. border-radius: 3px;
  439. {/block:ifRoundedEdges}
  440. }
  441.  
  442. .perma{
  443. background-color:rgba(0,0,0,0.6);
  444. font-size:10px;
  445. width:auto;
  446. height:auto;
  447. padding:0px 0px 0px 0px;
  448. -moz-border-radius:0px; border-radius:0px;}
  449. #entry .otherpostsnotes{
  450. opacity:0;
  451. width:auto;
  452. height:12px;
  453.  
  454. font-family:trebuchet ms;
  455. font-size: 10px;
  456. text-align:right;
  457. overflow:hidden;
  458. -webkit-transition: all .5s linear; -moz-transition: all .5s linear; transition: all 0.5s linear;}
  459. #entry:hover .otherpostsnotes{
  460. opacity:1;
  461. color:{color:Permalink};
  462. height:12px;
  463. margin-right:10px;
  464. overflow:hidden;
  465. -webkit-transition: all .3s linear; -moz-transition: all .3s linear; transition: all 0.3s linear; }
  466.  
  467. {block:ifnottopbanner}
  468. {block:ifnottwocolumnssmaller}
  469. {block:ifnottwocolumnsbigger}
  470. {block:ifnotonecolumn}
  471. #musictab1 {font-family:trebuchet ms;text-shadow: 0 1px 0 #F1f1f1;height:20px;padding: 0 0 8px 0;background:#f1f1f1;text-align:center;margin-left:47.5%;margin-top:0px;border-bottom-left-radius: 5px;-moz-border-radius-bottomleft: 5px;-webkit-border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;width: 50px;position:fixed;z-index:999999999999;}
  472. {/block:ifnotonecolumn}
  473. {/block:ifnottwocolumnsbigger}
  474. {/block:ifnottwocolumnssmaller}
  475. {/block:ifnottopbanner}
  476.  
  477. {block:ifnottopbanner}
  478. {block:ifnotfourcolumns}
  479. {block:ifnotthreecolumns}
  480. #side{
  481. {block:IfPostShadows}-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0);
  482. -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0);
  483. box-shadow: 0px 0px 12px rgba(0, 0, 0,0);{/block:IfPostShadows}
  484. z-index:999999999999999;
  485. position:absolute !important;
  486. position:fixed !important;
  487. top:200px;
  488.  
  489. {block:ifonecolumn}
  490. margin-left: 500px;
  491. {block:ifsidebarleft}
  492. left:-400px;
  493. {/block:ifsidebarleft}
  494. {/block:ifonecolumn}
  495. {block:iftwocolumnssmaller}
  496. margin-left:790px;
  497. {block:ifsidebarleft}
  498. margin-left:-400px;
  499. {/block:ifsidebarleft}
  500. {/block:iftwocolumnssmaller}
  501. {block:iftwocolumnsbigger}
  502. margin-left:920px;
  503. {block:ifsidebarleft}
  504. margin-left:-330px;
  505. {/block:ifsidebarleft}
  506. {/block:iftwocolumnsbigger}
  507. width:200px;
  508. background-color: transparent;
  509. text-align:left;
  510. {block:permalinkpage}
  511. margin-left:505px;
  512. {block:ifsidebarleft}
  513. margin-left:-400px;
  514. {/block:ifsidebarleft}
  515. {/block:permalinkpage}
  516. }{/block:ifnotthreecolumns}{/block:ifnotfourcolumns}{/block:ifnottopbanner}
  517.  
  518.  
  519.  
  520.  
  521. #content{
  522. margin:auto;
  523. top:10px;
  524. padding-top:15px;
  525. padding-left:110px;
  526. position:absolute;
  527. {block:indexpage}
  528. {block:iftwocolumnssmaller}
  529. width:730px;
  530. {block:ifsidebarleft}
  531. margin-left:350px;
  532. {/block:ifsidebarleft}
  533. {block:iftopbanner}
  534. margin-top:-20px;
  535. margin-left:200px;
  536. {/block:iftopbanner}
  537. top:20px;
  538. left:40px;
  539. {/block:iftwocolumnssmaller}
  540. {block:iftwocolumnsbigger}
  541. width:900px;
  542. {block:ifsidebarleft}
  543. margin-left:250px;
  544. {/block:ifsidebarleft}
  545. {block:iftopbanner}
  546. margin-top:-20px;
  547. margin-left:135px;
  548. {/block:iftopbanner}
  549. {/block:iftwocolumnsbigger}
  550. {block:ifthreecolumns}
  551. width:1140px;
  552. {block:iftopbanner}
  553. margin-top:-40px;
  554. {/block:iftopbanner}
  555. top:30px;
  556. left:30px;
  557. {/block:ifthreecolumns}
  558. {block:iffourcolumns}
  559. width:1140px;
  560. {block:iftopbanner}
  561. margin-top:-40px;
  562. {/block:iftopbanner}
  563. left:25px;
  564. top:30px;
  565. {/block:iffourcolumns}
  566. {block:ifonecolumn}
  567. {block:iftopbanner}
  568. margin-top:-20px;
  569. margin-left:30px;
  570. {/block:iftopbanner}
  571. width:405px;
  572. left:370px;
  573. {block:ifsidebarleft}
  574. left:450px;
  575. {/block:ifsidebarleft}
  576. {/block:ifonecolumn}
  577. {/block:indexpage}
  578. {block:permalinkpage}
  579. width:680px;
  580. left:205px;
  581. top:20px;
  582. {/block:iftopbanner}
  583. {block:ifsidebarleft}
  584. left:400px;
  585. {/block:ifsidebarleft}
  586. {/block:permalinkpage}
  587. overflow:auto;
  588. overflow-y:auto;
  589. }
  590.  
  591. #posts{
  592. float:left;
  593. {block:indexpage}
  594. {block:iftwocolumnssmaller}
  595. width:832px;
  596. {/block:iftwocolumnssmaller}
  597. {block:iftwocolumnsbigger}
  598. width:1005px;
  599. {/block:iftwocolumnsbigger}
  600. {block:ifthreecolumns}
  601. width:1242px;
  602. {/block:ifthreecolumns}
  603. {block:iffourcolumns}
  604. width:1240px;
  605. {/block:iffourcolumns}
  606. {block:ifonecolumn}
  607. width:100px;
  608. {/block:ifonecolumn}
  609. {/block:indexpage}
  610. {block:permalinkpage}
  611. width:550px;
  612. {/block:permalinkpage}
  613. margin-left:-105px;
  614. }
  615.  
  616. #entry:hover #reblog1{
  617. {block:IndexPage}
  618. z-index:999999;
  619. opacity:1;-webkit-transition: all 0.6s ease-out;
  620. -moz-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
  621. {/block:IndexPage}
  622. z-index:999999;
  623. }
  624.  
  625. #reblog1{
  626. width:250px;
  627. margin-left: 50px;
  628. margin-top: 15%;
  629. opacity:0;
  630. float:left;
  631. z-index:999999;
  632. position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
  633. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  634.  
  635. #entry:hover #reblog2{
  636. {block:IndexPage}
  637. opacity:1;-webkit-transition: all 0.3s ease-out;
  638. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
  639. {/block:IndexPage}
  640. }
  641.  
  642. #reblog2{
  643. z-index:99999999999;
  644. width:22px;
  645. float:right;
  646. margin-left:10px;
  647. margin-top:8px;
  648. position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
  649. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  650.  
  651.  
  652.  
  653.  
  654. #permalink1 {
  655. position: absolute;
  656. margin-top: 11px;
  657. margin-left: 50px;
  658. opacity: 0;
  659. z-index:999999;
  660. -webkit-transition: all .3s ease;
  661. -moz-transition: all .3s ease;
  662. -o-transition: all .3s ease;
  663. transition: all .3s ease;
  664. }
  665.  
  666. #entry:hover #permalink1 {
  667. width:11px;
  668. margin-top: 11px;
  669. margin-left: 57px;
  670. opacity: 1;
  671. z-index:999999;
  672. }
  673.  
  674. .countreblog {
  675. color: #FFFFFF;
  676. letter-spacing:1px;
  677. font-family:10px arial;
  678. font-size:;
  679. line-height:14px;
  680. margin: 2px;
  681. background-image:url(http://static.tumblr.com/8jq17g7/CH8lofvyp/dark-transparent.png);
  682. background-repeat:repeat;
  683. border:1px solid rgba(0,0,0,0.1);
  684. padding:3px 5px;
  685. -webkit-border-radius:2px;
  686. moz-border-radius:2px;
  687. -o-border-radius:2px;
  688. border-radius:2px;
  689. z-index:999999;
  690. }
  691. .countreblog a { color: #fff; }
  692.  
  693. #entry:hover #reblog{
  694. {block:IndexPage}
  695. z-index:999999;
  696. opacity:1;-webkit-transition: all 0.3s ease-out;
  697. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
  698. {/block:IndexPage}
  699. }
  700. #reblog{
  701. width:24px;
  702. float:right;
  703. opacity:.8;
  704. z-index:999999;
  705. margin-left:5px;
  706. margin-top:11px;
  707. position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
  708. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  709.  
  710. #entry:hover #reblog{
  711. {block:IndexPage}
  712. z-index:999999;
  713. opacity:1;-webkit-transition: all 0.3s ease-out;
  714. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
  715. {/block:IndexPage}
  716.  
  717. }
  718. #reblog{
  719. width:24px;
  720. float:right;
  721. opacity:.8;
  722. z-index:999999;
  723. margin-left:5px;
  724. margin-top:11px;
  725. position:absolute;opacity:0;-webkit-transition: all 0.3s ease-out;
  726. -moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  727.  
  728. #permalink2 {
  729. position: absolute;
  730. margin-top: 12px;
  731. margin-left: 50px;
  732. opacity: 0;
  733. -webkit-transition: all .3s ease;
  734. -moz-transition: all .3s ease;
  735. -o-transition: all .3s ease;
  736. transition: all .3s ease;
  737. z-index:999999;
  738. }
  739.  
  740. #entry:hover #permalink2 {
  741. width:11px;
  742. margin-top: 12px;
  743. right: 15px;
  744. opacity: 1;
  745. z-index:999999;
  746. }
  747.  
  748. #entry #likep {
  749. width: 21px;
  750. height: 20px;
  751. overflow: hidden;
  752. z-index: 9999999;
  753. display: inline-block;
  754. margin-top:-4px;
  755. margin-right:10px;
  756. z-index:999999;
  757. }
  758.  
  759. #entry #likep a:hover {
  760. background-position: 0px 0px;
  761. }
  762.  
  763. #entry #likep a {
  764. background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
  765. background-position: 0px 0px;
  766. display: block;
  767. z-index: 9999999;
  768.  
  769.  
  770. }
  771.  
  772. #entry #likep img {
  773. width: 21px;
  774. height: 20px;
  775. z-index:999999;
  776. }
  777.  
  778.  
  779.  
  780.  
  781.  
  782. #entry{
  783. z-index:9; float: left;{block:iftwocolumnssmaller}width:400px;{/block:iftwocolumnssmaller}{block:iftwocolumnsbigger}width:500px;{/block:iftwocolumnsbigger}{block:ifthreecolumns}width:400px;{/block:ifthreecolumns}{block:iffourcolumns}width:300px;{/block:iffourcolumns}{block:ifonecolumn}width:500px;{/block:ifonecolumn}height: 281px; /* M1nistry */ padding: 4px;
  784. {block:ifpostshadows}
  785. -moz-box-shadow: 0 0 10px #000; -webkit-box-shadow: 0 0 10px #000;
  786. box-shadow: 0 0 10px #000000;{/block:ifpostshadows}
  787. {block:PermalinkPage}
  788. width: 500px;
  789. {/block:PermalinkPage}
  790. right:500px;
  791. line-height:{text:line height}px;
  792. background-color:{color:Post Box};
  793. padding:0px;
  794. padding-bottom: 1px;
  795. margin-right:2px;
  796. overflow:hidden;
  797. margin-bottom:0px;
  798. {block:ifpostshadows}
  799. padding:2px;
  800. margin-right:5px;
  801. overflow:hidden;
  802. margin-bottom:5px;{/block:ifpostshadows}}
  803.  
  804. #perma1{
  805. text-align:right;
  806. margin-top:-5px;
  807. }
  808.  
  809. #permapage{
  810. font-family: Trebuchet MS;
  811. font-size: 9px;
  812. text-align: left;
  813. padding-bottom:10px;
  814. margin-bottom: 8px;
  815. z-index:9999;}
  816.  
  817. #notes{
  818. {block:permalinkpage}
  819. display:block;
  820. width:700px;
  821. left:-50px;
  822. float: left;
  823. padding:10px;
  824. overflow:visible;
  825. z-index:9999999;
  826. margin-top: 10px;
  827. outline:1px solid rgba(0, 0, 0, .1);
  828. border:2px solid rgba(0, 0, 0, .05);
  829. text-align: left;{/block:permalinkpage}
  830. }
  831.  
  832. iframe#tumblr_controls{position:fixed !important;
  833. }
  834.  
  835. .title{
  836. font-family: Trebuchet MS;
  837. font-size: 12px;
  838. line-height: 12px;
  839. color: {color:Title};
  840. font-weight: normal;
  841. letter-spacing: 0px;
  842. -webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;-o-transition: all 0.6s ease-out;transition: all 0.6s ease-out;
  843. }
  844.  
  845. .answer_portrait {width:25px;height:25px;}
  846. .answer_portrait img{width:25px;height:25px;display: block;}
  847. .padd {margin-left:5px;}
  848. .answer {margin-left:-35px;border-top:1px solid rgba(0,0,0,0.1);padding-top:-10px;margin-top:10px;}
  849.  
  850. .blogtitle {
  851. {block:iftitle1}
  852. font-family: 'kaushan script';
  853. {/block:iftitle1}
  854.  
  855. {block:iftitle2}
  856. font-family: 'bad script';
  857. {/block:iftitle2}
  858.  
  859. {block:iftitle3}
  860. font-family: 'shadows into light two';
  861. {/block:iftitle3}
  862.  
  863. {block:iftitle4}
  864. font-family: 'gloria hallelujah';
  865. {/block:iftitle4}
  866.  
  867. margin-top:0px;
  868. font-weight:40;
  869. font-style:none;
  870. color:{color:Title};
  871. font-size:50px;
  872. {block:ifShowsidebarimage}font-size:50px;{/block:ifShowsidebarimage}
  873. line-height:10px;
  874. -webkit-transition: 0.5s ease-in;
  875. -webkit-text-stroke: 15px transparent;
  876. line-height:5px;
  877. text-align:left;
  878. text-decoration:none;
  879. letter-spacing:-3px;
  880. text-transform:normal;
  881. margin-bottom:10px;
  882. text-align:center;
  883. width:{text:Width}px;
  884. margin-top:20px;
  885. background-color:transparent;}
  886.  
  887. .cred {
  888. background:{color:Post Box};
  889. color: {color:Text};
  890. z-index: 555;
  891. padding: 8px;
  892. -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
  893. -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
  894. box-shadow: 0px 0px 8px rgba(0, 0, 0, .2);
  895. }
  896.  
  897. .cred a{
  898. background: {color:Post Box};
  899. color: {color:Link};
  900. z-index: 555;
  901. }
  902.  
  903. #topbanner{
  904. margin-top:30px;
  905. margin-left:31%;
  906. width:300px;
  907. {block:ifonecolumn}
  908. margin-left:-20px;
  909. {/block:ifonecolumn}
  910. {block:iftwocolumnssmaller}
  911. margin-left:150px;
  912. {/block:iftwocolumnssmaller}
  913. {block:iftwocolumnsbigger}
  914. margin-left:250px;
  915. {/block:iftwocolumnsbigger}
  916. {block:permalinkpage}
  917. {block:ifnotonecolumn}
  918. margin-left:-20px;
  919. {/block:ifnotonecolumn}
  920. {/block:permalinkpage}
  921. }
  922.  
  923.  
  924. .title:hover{
  925. color:{color:Hover};
  926. -webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;
  927. }
  928.  
  929.  
  930. .permalinktext{
  931. font-family: Trebuchet MS;
  932. padding: 5px;
  933. position: absolute;
  934. text-align: left;
  935. width: 200px;
  936. -moz-transition: 0.3s ease-out;
  937. -webkit-transition: 0.3s ease-out;
  938. transition: 0.3s ease-out;
  939. opacity:0;
  940. }
  941.  
  942. .permalinktext a{color:{color:links};
  943. }
  944.  
  945. .entry:hover .permalinktext {
  946. -moz-transition: 0.3s ease-out;
  947. -webkit-transition: 0.3s ease-out;
  948. transition: 0.3s ease-out;
  949. width:200px;
  950. text-decoration:line-through;
  951. height:auto;
  952. display: block;
  953. opacity: 1;
  954. }
  955.  
  956.  
  957. {block:ifblackandwhite}
  958. {block:indexpage}
  959. #entry img{
  960. -webkit-filter: grayscale(0);
  961. -webkit-transition: all 0.4s linear;
  962. -webkit-transition: all 0.4s linear;
  963. -moz-transition: all 0.2s linear;
  964. transition: all 0.2s linear;}
  965.  
  966. #entry img:hover{
  967. -webkit-filter: grayscale(0.7);
  968. -webkit-transition: all 0.4s linear;
  969. -webkit-transition: all 0.4s linear;
  970. -moz-transition: all 0.2s linear;
  971. transition: all 0.2s linear;}
  972. {/block:indexpage}
  973. {/block:ifblackandwhite}
  974.  
  975. {block:ifreverseblackandwhite}
  976. {block:indexpage}
  977. #entry img{
  978. -webkit-filter: grayscale(0.7);
  979. -webkit-transition: all 0.4s linear;
  980. -webkit-transition: all 0.4s linear;
  981. -moz-transition: all 0.2s linear;
  982. transition: all 0.2s linear;}
  983.  
  984. #entry img:hover{
  985. -webkit-filter: grayscale(0);
  986. -webkit-transition: all 0.4s linear;
  987. -webkit-transition: all 0.4s linear;
  988. -moz-transition: all 0.2s linear;
  989. transition: all 0.2s linear;}
  990. {/block:indexpage}
  991. {/block:ifreverseblackandwhite}
  992.  
  993. {block:ifsepia}
  994. {block:indexpage}
  995. #entry img{
  996. -webkit-filter: sepia(0);
  997. -webkit-transition: all 0.4s linear;
  998. -webkit-transition: all 0.4s linear;
  999. -moz-transition: all 0.2s linear;
  1000. transition: all 0.2s linear;}
  1001.  
  1002. #entry img:hover{
  1003. -webkit-filter: sepia(0.7);
  1004. -webkit-transition: all 0.4s linear;
  1005. -webkit-transition: all 0.4s linear;
  1006. -moz-transition: all 0.2s linear;
  1007. transition: all 0.2s linear;}
  1008. {/block:indexpage}
  1009. {/block:ifsepia}
  1010.  
  1011. {block:ifreversesepia}
  1012. {block:indexpage}
  1013. #entry img{
  1014. -webkit-filter: sepia(0.7);
  1015. -webkit-transition: all 0.4s linear;
  1016. -webkit-transition: all 0.4s linear;
  1017. -moz-transition: all 0.2s linear;
  1018. transition: all 0.2s linear;}
  1019.  
  1020. #entry img:hover{
  1021. -webkit-filter: sepia(0);
  1022. -webkit-transition: all 0.4s linear;
  1023. -webkit-transition: all 0.4s linear;
  1024. -moz-transition: all 0.2s linear;
  1025. transition: all 0.2s linear;}
  1026. {/block:indexpage}
  1027. {/block:ifreversesepia}
  1028.  
  1029. {block:ifblur}
  1030. {block:indexpage}
  1031. #entry img{
  1032. -webkit-filter: blur(0);
  1033. -webkit-transition: all 0.4s linear;
  1034. -webkit-transition: all 0.4s linear;
  1035. -moz-transition: all 0.2s linear;
  1036. transition: all 0.2s linear;}
  1037.  
  1038. #entry img:hover{
  1039. -webkit-filter: blur(1.5px);
  1040. -webkit-transition: all 0.4s linear;
  1041. -webkit-transition: all 0.4s linear;
  1042. -moz-transition: all 0.2s linear;
  1043. transition: all 0.2s linear;}
  1044. {/block:indexpage}
  1045. {/block:ifblur}
  1046.  
  1047. {block:ifreverseblur}
  1048. {block:indexpage}
  1049. #entry img{
  1050. -webkit-filter: blur(1px);
  1051. -webkit-transition: all 0.4s linear;
  1052. -webkit-transition: all 0.4s linear;
  1053. -moz-transition: all 0.2s linear;
  1054. transition: all 0.2s linear;}
  1055.  
  1056. #entry img:hover{
  1057. -webkit-filter: blur(0px);
  1058. -webkit-transition: all 0.4s linear;
  1059. -webkit-transition: all 0.4s linear;
  1060. -moz-transition: all 0.2s linear;
  1061. transition: all 0.2s linear;}
  1062. {/block:indexpage}
  1063. {/block:ifreverseblur}
  1064.  
  1065. {block:iffadedimages}
  1066. {block:indexpage}
  1067. #entry img{
  1068. -webkit-filter: opacity(1);
  1069. -webkit-transition: all 0.4s linear;
  1070. -webkit-transition: all 0.4s linear;
  1071. -moz-transition: all 0.2s linear;
  1072. transition: all 0.2s linear;}
  1073.  
  1074. #entry img:hover{
  1075. -webkit-filter: opacity(0.7);
  1076. -webkit-transition: all 0.4s linear;
  1077. -webkit-transition: all 0.4s linear;
  1078. -moz-transition: all 0.2s linear;
  1079. transition: all 0.2s linear;}
  1080. {/block:indexpage}
  1081. {/block:iffadedimages}
  1082.  
  1083. {block:ifreversefadedimages}
  1084. {block:indexpage}
  1085. #entry img{
  1086. -webkit-filter: opacity(0.7);
  1087. -webkit-transition: all 0.4s linear;
  1088. -webkit-transition: all 0.4s linear;
  1089. -moz-transition: all 0.2s linear;
  1090. transition: all 0.2s linear;}
  1091.  
  1092. #entry img:hover{
  1093. -webkit-filter: opacity(1);
  1094. -webkit-transition: all 0.4s linear;
  1095. -webkit-transition: all 0.4s linear;
  1096. -moz-transition: all 0.2s linear;
  1097. transition: all 0.2s linear;}
  1098. {/block:indexpage}
  1099. {/block:ifreversefadedimages}
  1100.  
  1101. {block:ifhuerotate}
  1102. {block:indexpage}
  1103. #entry img{
  1104. -webkit-filter: hue-rotate(0deg);
  1105. -webkit-transition: all 0.4s linear;
  1106. -webkit-transition: all 0.4s linear;
  1107. -moz-transition: all 0.2s linear;
  1108. transition: all 0.2s linear;}
  1109.  
  1110. #entry img:hover{
  1111. -webkit-filter: hue-rotate(360deg);
  1112. -webkit-transition: all 0.4s linear;
  1113. -webkit-transition: all 0.4s linear;
  1114. -moz-transition: all 0.2s linear;
  1115. transition: all 0.2s linear;}
  1116. {/block:indexpage}
  1117. {/block:ifhuerotate}
  1118.  
  1119. {block:ifinvert}
  1120. {block:indexpage}
  1121. #entry img{
  1122. -webkit-filter: invert(0);
  1123. -webkit-transition: all 0.4s linear;
  1124. -webkit-transition: all 0.4s linear;
  1125. -moz-transition: all 0.2s linear;
  1126. transition: all 0.2s linear;}
  1127.  
  1128. #entry img:hover{
  1129. -webkit-filter: invert(1);
  1130. -webkit-transition: all 0.4s linear;
  1131. -webkit-transition: all 0.4s linear;
  1132. -moz-transition: all 0.2s linear;
  1133. transition: all 0.2s linear;}
  1134. {/block:indexpage}
  1135. {/block:ifinvert}
  1136.  
  1137. {block:if360spin}
  1138. {block:indexpage}
  1139. #entry img{
  1140. -webkit-transition: all 0.4s linear;
  1141. -webkit-transition: all 0.4s linear;
  1142. -moz-transition: all 0.2s linear;
  1143. transition: all 0.2s linear;
  1144. }
  1145.  
  1146. #entry img:hover{
  1147. -webkit-transition: all 0.4s linear;
  1148. -webkit-transition: all 0.4s linear;
  1149. -moz-transition: all 0.2s linear;
  1150. transition: all 0.2s linear;
  1151. -webkit-transform: rotate(360deg);
  1152. -moz-transform: rotate(360deg);
  1153. }
  1154. {/block:indexpage}
  1155. {/block:if360spin}
  1156.  
  1157. {block:if360spin1}
  1158. {block:indexpage}
  1159. #entry img{
  1160. -webkit-transition: all 0.4s linear;
  1161. -webkit-transition: all 0.4s linear;
  1162. -moz-transition: all 0.2s linear;
  1163. transition: all 0.2s linear;}
  1164.  
  1165. #entry img:hover{
  1166. -webkit-transition: all 0.4s linear;
  1167. -webkit-transition: all 0.4s linear;
  1168. -moz-transition: all 0.2s linear;
  1169. transition: all 0.2s linear;
  1170. -webkit-transform: rotateY(360deg);;
  1171. -moz-transform: rotateY(360deg);;
  1172. {/block:indexpage}
  1173. {/block:if360spin1}
  1174.  
  1175.  
  1176.  
  1177. blockquote{
  1178. padding:0px 0px 2px 3px;
  1179. margin:0px 0px 2px 1px;
  1180. }
  1181. ul, ol, li{
  1182. list-style:none;
  1183. margin:0px;
  1184. padding:0px;
  1185. }
  1186.  
  1187. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  1188. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:Title};
  1189. }
  1190.  
  1191. a.links {
  1192. font-family: Arial;
  1193. font-size: 10px;
  1194. line-height: 9px;
  1195. text-transform: normal;
  1196. letter-spacing:0px;
  1197. display:block;
  1198. padding: 0px;
  1199. margin-bottom: 0px;
  1200. -moz-border-radius:0px; border-radius:0px;
  1201. }
  1202.  
  1203. a.links:hover {
  1204. font-style: italic;
  1205. text-decoration: underline;
  1206. letter-spacing:10px;
  1207. }
  1208.  
  1209.  
  1210.  
  1211.  
  1212. ul#drawers {width: 100px; list-style: none; margin: 0 auto; padding: 0px; border-top: 0px; color: #000;}
  1213.  
  1214. ul#drawers a {text-decoration: none; color: #000;}
  1215.  
  1216. ul#drawers li h4 {margin: 0; padding: 0px; text-transform: Camelcase; font-size: 10px; text-align: center; background-color: #363835; background: rgba(255, 255, 255, 0.0); -webkit-transition: background-color 0.2s ease-out; -moz-transition: background-color 0.2s ease-out;
  1217. transition: background-color 0.2s ease-out;}
  1218.  
  1219. h4.small {display: table-cell; width: 100px; margin: 0px; height: 100%;}
  1220.  
  1221. li.drawer h4.open {background-color: ; border-top: 0px;}
  1222.  
  1223. li.drawer div {padding: 0px; margin: 0px; line-height: 10px; background-color: #363835; background: rgba(255, 255, 255, 0.0);}
  1224.  
  1225. li.drawer div li {list-style-type: disc;}
  1226.  
  1227. li.drawer div ul {-webkit-padding-start: 12px;}
  1228. </style>
  1229.  
  1230. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  1231. {block:ifBackToTopButton}<script type="text/javascript">
  1232. $(document).ready(function() {
  1233. $('a[href=#top]').click(function(){
  1234. $('html, body').animate({scrollTop:0}, 'slow');
  1235. return false;
  1236. });
  1237. });
  1238. </script>{/block:ifBackToTopButton}
  1239.  
  1240. <link rel="shortcut icon" href="{Favicon}">
  1241. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  1242. <meta name="viewport" content="width=720" />
  1243.  
  1244. <script type="text/javascript">
  1245.  
  1246. var _gaq = _gaq || [];
  1247. _gaq.push(['_setAccount', 'UA-26724983-1']);
  1248. _gaq.push(['_trackPageview']);
  1249.  
  1250. (function() {
  1251. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  1252. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  1253. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  1254. })();
  1255.  
  1256. </script>
  1257.  
  1258. </head>
  1259. <body>
  1260.  
  1261. <script src="path/to/js/jquery.js"></script>
  1262. <script type="text/javascript">
  1263. $(function() {
  1264. $(window).scroll(function() {
  1265. if($(this).scrollTop() != 0) {
  1266. $('#sidebar').fadeIn();
  1267. } else {
  1268. $('#sidebar').fadeOut();
  1269. }
  1270. });
  1271. $('#sidebar').click(function() {
  1272. $('body,html').animate({scrollTop:0},800);
  1273. });
  1274. });
  1275. </script>
  1276.  
  1277. {block:ifnottopbanner}
  1278. {block:ifnotonecolumn}
  1279. {block:ifnottwocolumnssmaller}
  1280. {block:ifnottwocolumnsbigger}
  1281. <div id="musictab1"><br><a href="#?w=500" rel="04" class="poplight">Info</a></div>
  1282. {/block:ifnottwocolumnsbigger}
  1283. {/block:ifnottwocolumnssmaller}
  1284. {/block:ifnotonecolumn}
  1285. {/block:ifnottopbanner}
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291. <div id="content">
  1292.  
  1293. <div id="sidee">
  1294.  
  1295. {block:ifnottopbanner}
  1296. {block:ifnotthreecolumns}
  1297. {block:ifnotfourcolumns}
  1298. <div id="side">
  1299.  
  1300. {block:ifbanner}
  1301. <a href="/"><img src="{image:banner}" width="200px"></a>{/block:ifbanner}
  1302. {block:ifshowblogtitle}
  1303. <div class="blogtitle"><a href="/">{title}</a></div><br><br>{/block:ifshowblogtitle}
  1304. {block:ifshowsidebarimage}
  1305. <a href="/"><img src="{image:sidebar}" width="200px"></a>{/block:ifshowsidebarimage}<br><br>
  1306.  
  1307. <center>{description}<Br><br>
  1308.  
  1309. <a href="{text:link one}">{text:link one title}</a>
  1310.  
  1311.  
  1312. <a href="{text:link two}">{text:link two title}</a>
  1313.  
  1314.  
  1315. <a href="{text:link three}">{text:link three title}</a>
  1316.  
  1317.  
  1318. <a href="{text:link four}">{text:link four title}</a>
  1319.  
  1320.  
  1321. <a href="{text:link five}">{text:link five title}</a>
  1322.  
  1323.  
  1324. <a href="{text:link six}">{text:link six title}</a></center>
  1325. {/block:ifnotfourcolumns}
  1326. {/block:ifnotthreecolumns}
  1327. {/block:ifnottopbanner}
  1328.  
  1329. {block:iftopbanner}
  1330. <div id="topbanner">
  1331. <center>
  1332. {block:ifbanner}
  1333. <a href="/"><img src="{image:banner}" width="300px"></a>{/block:ifbanner}
  1334. {block:ifshowblogtitle}
  1335. <div class="blogtitle"><a href="/">{title}</a></div>{/block:ifshowblogtitle}<Br><Br>
  1336. {description}<Br><br>
  1337. <a href="{text:link one}">{text:link one title}</a>
  1338.  
  1339.  
  1340. <a href="{text:link two}">{text:link two title}</a>
  1341.  
  1342.  
  1343. <a href="{text:link three}">{text:link three title}</a>
  1344.  
  1345.  
  1346. <a href="{text:link four}">{text:link four title}</a>
  1347.  
  1348.  
  1349. <a href="{text:link five}">{text:link five title}</a>
  1350.  
  1351.  
  1352. <a href="{text:link six}">{text:link six title}</a></div><Br>{/block:iftopbanner}
  1353. </center>
  1354.  
  1355.  
  1356.  
  1357.  
  1358. <div style="padding-top:0px; padding-bottom:0px;">
  1359. <div align="center">
  1360. <span style="position: relative;">
  1361. </span></div>
  1362. </div>
  1363. <div style="padding:0px;">
  1364.  
  1365. <center>
  1366. {block:HasPages}{block:Pages}<a href="{URL}" class="nav">{Label}</A>{/block:Pages}{/block:HasPages}
  1367. </center>
  1368.  
  1369. <div id="pages">
  1370.  
  1371. <div align="center">
  1372. {block:ifNotInfiniteScroll}{block:PreviousPage}<a class="jump_page" href="{PreviousPage}">&laquo;</a>{/block:PreviousPage}
  1373. {block:JumpPagination length="5"}
  1374. {block:CurrentPage}<span class="current_page"><i>{PageNumber}</i></span>{/block:CurrentPage}
  1375. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  1376. {/block:JumpPagination}
  1377. {block:NextPage}<a class="jump_page" href="{NextPage}">&raquo;</a>{/block:NextPage}{/block:ifNotInfiniteScroll}
  1378. </div></div>
  1379. </div></div>
  1380.  
  1381. {block:ifBackToTopButton}<div class="top">
  1382. <a href="#top">Top</a></div>{/block:ifBackToTopButton}
  1383.  
  1384.  
  1385. <div align="left">
  1386.  
  1387. <div id="posts">
  1388.  
  1389. {block:Posts}
  1390. <div id="entry">
  1391.  
  1392. {block:Photo}
  1393. {block:IndexPage}
  1394. {block:ifreblogonhover}
  1395. <div id="reblog2"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/wwdkx8w/cH6lsbsa3/reblogbutton.png" width="22px"/></a></div>
  1396. {/block:ifreblogonhover}
  1397. {block:ifphotohover1}
  1398. <div id="reblog"><span class="countreblog"><a href="{reblogurl}" target="_blank">Reblog</a></span></div>
  1399. <div id="permalink1">
  1400. <span class="countreblog"><a href="{Permalink}">{NoteCount}</a></span></div>
  1401. <div id="permalink2">
  1402. <div id="likep">
  1403. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a>
  1404. </div></div>
  1405. {/block:ifphotohover1}
  1406. {/block:IndexPage}
  1407. {block:IndexPage}{LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" style="height: 300px; padding-bottom: 1px;" {block:iftwocolumnssmaller}width=400px;{/block:iftwocolumnssmaller}{block:iftwocolumnsbigger}width=500px;{/block:iftwocolumnsbigger}{block:ifthreecolumns}width=400px;{/block:ifthreecolumns}{block:iffourcolumns}width=300px;{/block:iffourcolumns}{block:ifonecolumn}width=500px;{/block:ifonecolumn}/></a>{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{/block:PermalinkPage}{/block:Photo}
  1408.  
  1409. {block:Photoset}
  1410. {block:indexpage}{block:ifonecolumn}{photoset-500}{/block:indexpage}{/block:ifonecolumn}
  1411. {block:iftwocolumnssmaller}{block:indexpage}{photoset-400}{/block:indexpage}{/block:iftwocolumnssmaller}
  1412. {block:iftwocolumnsbigger}{block:indexpage}{photoset-500}{/block:indexpage}{/block:iftwocolumnsbigger}
  1413. {block:ifthreecolumns}{block:indexpage}{photoset-400}{/block:indexpage}{/block:ifthreecolumns}
  1414. <center>{block:iffourcolumns}{block:indexpage}{photoset-250}{/block:indexpage}{/block:iffourcolumns}</center>
  1415. {block:IndexPage}<div class="otherpostsnotes">
  1416. <a href="{Permalink}">{notecountwithlabel}</a>
  1417. {/block:Date}</div>{/block:IndexPage}
  1418. {block:permalinkpage}{photoset-500}{/block:permalinkpage}
  1419. {/block:Photoset}
  1420.  
  1421. {block:Text}
  1422. {block:Title}
  1423. <a href="{permalink}"><span class="title">{Title}</span></a>
  1424. {/block:Title}
  1425. <span class="entrytext" style="line-height:12px;">{Body}</span>
  1426. {block:IndexPage}<div class="otherpostsnotes">
  1427. <a href="{Permalink}">{notecountwithlabel}</a>
  1428. {/block:Date}</div>{/block:IndexPage}
  1429. {/block:Text}
  1430.  
  1431.  
  1432.  
  1433.  
  1434. {block:Link}
  1435. <a href="{URL}" class="title">{Name}</a>
  1436. {block:Description}{Description}{/block:Description}
  1437. {block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}
  1438. {block:BlogDescription}<span class="entrytext" style="line-height:12px;">{Description}</span>{/block:BlogDescription}</a>
  1439. {block:Caption}<a href="{URL}">{Caption}</a>{/block:Caption}<div style="padding-top:0px; padding-bottom:3px;"></a></div>
  1440. {block:IndexPage}<div class="otherpostsnotes">
  1441. <a href="{Permalink}">{notecountwithlabel}</a>
  1442.  
  1443. {/block:Date}</div>{/block:IndexPage}
  1444. {/block:Link}
  1445.  
  1446. {block:Quote}
  1447. <span class="title" style="line-height:16px; font-style: italic;">"{Quote}"</span><br><br>
  1448. <div style="text-align: left; padding-right:0px;"><a href="{Permalink}">{block:Source}
  1449. -{Source}
  1450. {/block:Source}</a>{block:IndexPage}<div class="otherpostsnotes">
  1451. <a href="{Permalink}">{notecountwithlabel}</a>
  1452.  
  1453. {/block:Date}</div>{/block:IndexPage}
  1454. </div>
  1455. {/block:Quote}
  1456.  
  1457. {block:Chat}
  1458. <a href="{permalink}">{block:Title}<span class="title">{Title}</span>{/block:Title}</a>
  1459. <ul class="chat">
  1460. {block:Lines}
  1461. <li class="user_{UserNumber}">
  1462. {block:Label}
  1463. <span class="label" style="line-height:12px;">{Label}</span>
  1464. {/block:Label}
  1465. {Line}
  1466. </li>
  1467. {/block:Lines}
  1468. </ul>
  1469. {block:Caption}{Caption}{/block:Caption}
  1470. {block:IndexPage}<div class="otherpostsnotes">
  1471. <a href="{Permalink}">{notecountwithlabel}</a>
  1472.  
  1473. {/block:Date}{/block:IndexPage}
  1474. </div>
  1475. {/block:Chat}
  1476.  
  1477. {block:Audio}
  1478. <div class="player">{AudioPlayerBlack}</div>
  1479. {block:Caption}{Caption}{/block:Caption}
  1480. {block:IndexPage}<div class="otherpostsnotes">
  1481. <a href="{Permalink}">{notecountwithlabel}</a>
  1482.  
  1483. {/block:Date}</div>{/block:IndexPage}
  1484. {/block:Audio}
  1485.  
  1486. {block:Answer}
  1487. <table width="100%" border="0px" cellpadding="0" cellspacing="0">
  1488. <tbody style="border-spacing: 0px;">
  1489. <td width="30px" style="vertical-align: top; width: 30px; padding: 0px;">
  1490. <span class="answer_portrait"><img class="answer_portrait" src="{AskerPortraitURL-30}"/></span></td><td>
  1491. <div class="padd" width="100%" style="margin-left:;">
  1492. {Asker} asked:<br>
  1493. {Question}<br><div class="answer"><div class="text"><em>{Answer}</em></div></div><br>
  1494. </div></td></tr></tbody></table>
  1495. {block:IndexPage}<div class="otherpostsnotes">
  1496. <a href="{Permalink}">{notecountwithlabel}</a>
  1497.  
  1498. {/block:Date}</div>{/block:IndexPage}
  1499. {/block:Answer}
  1500.  
  1501. {block:Video}
  1502. {block:indexpage}{block:ifonecolumn}{video-500}{/block:indexpage}{/block:ifonecolumn}
  1503. {block:iftwocolumnssmaller}{block:indexpage}{video-400}{/block:indexpage}{/block:iftwocolumnssmaller}
  1504. {block:iftwocolumnsbigger}{block:indexpage}{video-500}{/block:indexpage}{/block:iftwocolumnsbigger}
  1505. {block:ifthreecolumns}{block:indexpage}{video-400}{/block:indexpage}{/block:ifthreecolumns}
  1506. <center>{block:iffourcolumns}{block:indexpage}{video-250}{/block:indexpage}{/block:iffourcolumns}</center>
  1507. {block:IndexPage}<div class="otherpostsnotes">
  1508. <a href="{Permalink}">{notecountwithlabel}</a>
  1509.  
  1510. {/block:Date}</div>{/block:IndexPage}
  1511. {block:permalinkpage}{video-500}{/block:permalinkpage}
  1512. {/block:Video}
  1513.  
  1514. {block:PermalinkPage}
  1515. {block:Date}<div id="post" >
  1516. <div class="permalink">
  1517. {block:Caption}{Caption}<div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:5px;margin-bottom:10px;"></div>{/block:Caption}
  1518. {block:NoteCount}<font color="{color:link}">{NoteCountWithLabel}</font><br>{/block:NoteCount}
  1519. Posted on <font color="{color:link}">{DayOfWeek}, {DayOfMonth} {Month}</font><br>
  1520. {block:RebloggedFrom}
  1521. Via: <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  1522. Posted by: <a href="{ReblogRootURL}">{ReblogRootName}</a><br>
  1523. {/block:RebloggedFrom}
  1524. {block:Source}Source: {Source}<br>{/block:Source}
  1525. <div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:8px;margin-bottom:10px;"></div>
  1526. </div></div>{/block:Date}
  1527. <br><br>
  1528. <div align="left">
  1529. {block:PostNotes}
  1530. {PostNotes}
  1531. {/block:PostNotes}
  1532. </div>
  1533. </div>
  1534. {/block:PermalinkPage}
  1535. </div>
  1536. {/block:Posts}
  1537. </div>
  1538. </div>
  1539. </div>
  1540. </center>
  1541. </div>
  1542. </div>
  1543. {block:indexpage}
  1544. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
  1545. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  1546. <script type="text/javascript" src="http://static.tumblr.com/bswe8t6/UFVlryaq2/jquerymsnryv2.js"></script>
  1547. <script type="text/javascript">
  1548. $(window).load(function(){
  1549. var $wall = $('#posts');
  1550. $wall.imagesLoaded(function(){
  1551. $wall.masonry({
  1552. itemSelector: '#entry, #entry_photo',
  1553. isAnimated : false
  1554. });
  1555. });
  1556.  
  1557. $wall.infinitescroll({
  1558. navSelector : '#page-nav',
  1559. nextSelector : '#page-nav a',
  1560. itemSelector : '#entry, #entry_photo',
  1561. bufferPx : 2000,
  1562. debug : false,
  1563. errorCallback: function() {
  1564. $('#infscr-loading').fadeOut('normal');
  1565. }},
  1566. function( newElements ) {
  1567. var $newElems = $( newElements );
  1568. $newElems.hide();
  1569. $newElems.imagesLoaded(function(){
  1570. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  1571. });
  1572. }); $('#content').show(500);
  1573. });
  1574. </script>
  1575. {/block:indexpage}
  1576.  
  1577. <div style="position:fixed;bottom:0px;right:4px;">
  1578. <a href="http://exx0.tumblr.com">(C)</a></div>
  1579.  
  1580. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/UYAm6i0bc/like.js"></script>
  1581.  
  1582. </body>
  1583.  
  1584. {block:ifnotonecolumn}
  1585. {block:ifnottwocolumnssmaller}
  1586. {block:ifnottwocolumnsbigger}
  1587. <div id="04" class="popup_block"><Center><div class="blogtitle"><a href="/">{title}</a></div><br><br>
  1588. {description}<br><br>
  1589.  
  1590. <a href="{text:link one}">{text:link one title}</a>
  1591.  
  1592.  
  1593. <a href="{text:link two}">{text:link two title}</a>
  1594.  
  1595.  
  1596. <a href="{text:link three}">{text:link three title}</a>
  1597.  
  1598.  
  1599. <a href="{text:link four}">{text:link four title}</a>
  1600.  
  1601.  
  1602. <a href="{text:link five}">{text:link five title}</a>
  1603.  
  1604.  
  1605. <a href="{text:link six}">{text:link six title}</a>
  1606. </center></div></div></div></div></div></div></div></div></div></div></div>
  1607. {/block:ifnottwocolumnsbigger}
  1608. {/block:ifnottwocolumnssmaller}
  1609. {/block:ifonecolumn}
  1610.  
  1611.  
  1612.  
  1613.  
  1614. </html>
Advertisement
Add Comment
Please, Sign In to add comment