Advertisement
inmyb0nes

#08 Currents

Aug 2nd, 2013
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.81 KB | None | 0 0
  1. <script type="text/javascript"
  2. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  3.  
  4.  
  5. <meta name="color:background" content="#1d1d1d"/>
  6. <meta name="color:Sidebar" content="#ffffff"/>
  7. <meta name="color:link" content="#006eff"/>
  8. <meta name="color:text" content="#777"/>
  9. <meta name="color:title" content="#006eff"/>
  10. <meta name="color:hover" content="#a3a3a0"/>
  11. <meta name="color:border" content="#818181"/>
  12. <meta name="color:sidebg" content="#3c3b3b"/>
  13. <meta name="color:posts" content="#ffffff"/>
  14. <meta name="color:Navigation" content="#ffffff"/>
  15. <meta name="color:Nagivation Text" content="#006eff"/>
  16. <meta name="color:Navigation Hover" content="#000000"/>
  17. <meta name="color:Navigation Text Hover" content="#000000"/>
  18.  
  19. <meta name="image:sidebar" content="1"/>
  20. <meta name="image:Sidebar Background" content="1" />
  21. <meta name="image:background" content="1"/>
  22.  
  23. <meta name="text:Blog Title" content="C<br>U<br>R<br>R<br>E<br>N<br>T<br>S">
  24. <meta name="text:Stats" content="put stats/pageviews/etc here"/>
  25. <meta name="text:popup" content="put whatever you want in here it could be an about me or links or whatever yeah"/>
  26. <meta name="text:Popup Title" content="" />
  27. <meta name="text:Link 2" content="" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 3" content="" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 4" content="" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 5" content="" />
  34. <meta name="text:Link 5 URL" content="" />
  35. <meta name="text:Link 6" content="" />
  36. <meta name="text:Link 6 URL" content="" />
  37.  
  38. <script type="text/javascript"
  39. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  40. <script>
  41. $(document).ready(function() {
  42. //
  43. $('a.poplight[href^=#]').click(function() {
  44. var popID = $(this).attr('rel'); //Get Popup Name
  45. var popURL = $(this).attr('href'); //Get Popup href to define size
  46. var query= popURL.split('?');
  47. var dim= query[1].split('&');
  48. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  49. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://png.findicons.com/files/icons/1714/dropline_neu/24/dialog_close.png" class="btn_close" title="Close" alt="Close" /></a>');
  50. var popMargTop = ($('#' + popID).height() + 80) / 2;
  51. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  52. //Apply Margin to Popup
  53. $('#' + popID).css({
  54. 'margin-top' : -popMargTop,
  55. 'margin-left' : -popMargLeft
  56. });
  57. $('body').append('<div id="fade"></div>');
  58. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  59. return false;
  60. });
  61. $('a.close, #fade').live('click', function() {
  62. $('#fade , .popup_block').fadeOut(function() {
  63. $('#fade, a.close').remove(); //fade them both out
  64. });
  65. return false;
  66. });
  67. });
  68. </script>
  69.  
  70. <style type="text/css">
  71.  
  72. #fade { /*--Transparent background layer--*/
  73. display: none; /*--hidden by default--*/
  74. position: fixed; left: 0; top: 0;
  75. width: 100%; height: 100%;
  76. opacity: .80;
  77. z-index: 9999;
  78. }
  79. .popup_block{
  80. display: none; /*--hidden by default--*/
  81. background: #fff;
  82. padding: 20px;
  83. border: 2px dashed {color:borders};
  84. float: left;
  85. font-size:12px;
  86. font-family:arial;
  87. position: fixed;
  88. top: 50%; left: 50%;
  89. z-index: 99999;
  90. /*--CSS3 Box Shadows--*/
  91. -webkit-box-shadow: 0px 0px 20px #000;
  92. -moz-box-shadow: 0px 0px 20px #000;
  93. box-shadow: 0px 0px 20px #000;
  94. /*--CSS3 Rounded Corners--*/
  95. -webkit-border-radius: 10px;
  96. -moz-border-radius: 10px;
  97. border-radius: 10px;
  98. }
  99.  
  100. .popup_block2{
  101. display: none; /*--hidden by default--*/
  102. background: #fff;
  103. padding: 20px;
  104. border: 2px dashed {color:borders};
  105. float: left;
  106. font-size:17px;
  107. line-height:25px;
  108. font-family:"Hand of Sean";
  109. position: fixed;
  110. top: 50%; left: 50%;
  111. z-index: 99999;
  112. /*--CSS3 Box Shadows--*/
  113. -webkit-box-shadow: 0px 0px 20px #000;
  114. -moz-box-shadow: 0px 0px 20px #000;
  115. box-shadow: 0px 0px 20px #000;
  116. /*--CSS3 Rounded Corners--*/
  117. -webkit-border-radius: 10px;
  118. -moz-border-radius: 10px;
  119. border-radius: 10px;
  120. }
  121. img.btn_close {
  122. float: right;
  123. margin: -5px -5px 0 0;
  124. }
  125. /*--Making IE6 Understand Fixed Positioning--*/
  126. *html #fade {
  127. position: absolute;
  128. }
  129. *html .popup_block {
  130. position: absolute;
  131. }
  132.  
  133.  
  134. ::-webkit-scrollbar {width: 9px; height: 3px; background: #FFFFFF;}
  135.  
  136. ::-webkit-scrollbar-thumb {background-color:{color:background} ; border: 0px solid #f8f8f8;}
  137.  
  138.  
  139.  
  140.  
  141. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.05;-webkit-transition: all 0.8s ease-out;-moz-
  142.  
  143. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  144.  
  145. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  146.  
  147. p {
  148. margin:0px;
  149. margin-top:0px;
  150. }
  151.  
  152.  
  153. body {
  154. padding:10px;
  155. margin: 1px;
  156. color:{color:text};
  157. font-family: new york;
  158. line-height:10px;
  159. font-size:10px;
  160. background-color: {color:Background};
  161. background-image:url({image:Background});
  162. background-attachment: fixed;
  163. background-repeat: repeat;
  164. }
  165.  
  166.  
  167.  
  168.  
  169.  
  170. a:link, a:active, a:visited{
  171. text-decoration: none;
  172. -webkit-transition: color 0.3s ease-out;
  173. -moz-transition: color 0.3s ease-out;
  174. transition: color 0.3s ease-out;
  175. color:{color:link};
  176. }
  177.  
  178. a:hover {
  179. text-decoration: none;
  180. font-style:;
  181. color: {color:Hover};
  182. }
  183.  
  184. div#center{
  185. margin:auto;
  186. position:relative;
  187. width:1340px;
  188. overflow:auto;
  189. overflow-y:hidden;
  190. }
  191.  
  192.  
  193. .entry {
  194. padding:3px;
  195. border-radius:2px;
  196. border:3px double {color:border};
  197. font-family:trebuchet ms;
  198. float:left;
  199. margin:2px;
  200. overflow:hidden;
  201. width:235px;
  202. {block:PermalinkPage}
  203. width:450px;
  204. text-align:left;
  205. line-height:10px;
  206. {/block:PermalinkPage}
  207. background:{color:posts};
  208. -moz-border-radius:6px;
  209. -webkit-border-radius:6px;
  210. border-radius:6px;
  211. }
  212.  
  213.  
  214. #posts {
  215. width:900px;
  216. margin-top:10px;
  217. margin-left:200px;
  218. right:auto;
  219. background:transparent;
  220. margin-right:auto;
  221. overflow-y: hidden;
  222. position:inherit;
  223. }
  224.  
  225.  
  226. #sidebar {
  227. z-index:99999;
  228. margin-left:1030px;
  229. margin-top:110px;
  230. position:fixed;
  231. background:{color:Sidebar};
  232. padding:8px;
  233. width:250px;
  234. height:300px;
  235. border:3px solid #000000;
  236. -moz-border-radius: 7px;
  237. -webkit-border-radius: 7px;
  238. border-radius: 7px;
  239. }
  240.  
  241. #sidebar img {
  242. position:fixed;
  243. width:250px;
  244. height:300px;
  245. margin-top:-313px;
  246. margin-left:-129px;
  247. border:1px dashed {color:border};
  248. background:{color:Sidebar};
  249. padding:3px;
  250. opacity:1;
  251. -moz-border-radius:7px;
  252. -webkit-border-radius:7px;
  253. border-radius:7px;
  254. }
  255.  
  256.  
  257. #title{
  258. z-index:999999999999999999999999999999999999999;
  259. margin-top:-10px;
  260. margin-left:-40px;
  261. font-family:"Color of Autumn";
  262. font-size:30px;
  263. line-height:40px;
  264. color:white;
  265. }
  266.  
  267. @font-face{font-family:"Celeste Hand";src:url('http://static.tumblr.com/9wzbixa/UBpmj2h2i/celeste_hand.ttf');}
  268. @font-face{font-family:"Hand of Sean";src:url('http://static.tumblr.com/9wzbixa/RxLmj2j5g/handsean.ttf');}
  269. @font-face{font-family:"Lemons Can Fly"; src: url('http://static.tumblr.com/9wzbixa/9Bsmj3k8e/lemons_can_fly.ttf');}
  270. @font-face{font-family:"Color of Autumn"; src: url('http://static.tumblr.com/9wzbixa/XDxmj2h3a/colors_of_autumn.ttf');}
  271.  
  272. #SidebarBG1 {
  273. border-right:3px solid #E8E8E8;
  274. position:fixed;
  275. margin-top:-10px;
  276. margin-left:-10px;
  277. background-image:url({image:Sidebar Background});
  278. width:200px;
  279. height:100%;
  280. -moz-box-shadow: 4px 4px 15px #181818;
  281. -webkit-box-shadow: 4px 4px 15px #181818;
  282. box-shadow: 4px 4px 15px #181818;
  283. }
  284.  
  285. #SidebarBG2 {
  286. border-left:3px solid #E8E8E8;
  287. position:fixed;
  288. margin-top:-10px;
  289. margin-left:960px;
  290. background-image:url({image:Sidebar Background});
  291. width:700px;
  292. height:100%;
  293. -moz-box-shadow: 4px 0 2px #181818, -4px 0 12px #181818;
  294. -webkit-box-shadow: 4px 0 2px #181818, -4px 0 12px #181818;
  295. box-shadow: 4px 0 2px #181818, -4px 0 12px #181818;
  296. }
  297.  
  298. #menu{
  299. position:fixed;
  300. width:auto;
  301. padding-top:0px;
  302. padding-bottom:30px;
  303. padding-left:10px;
  304. padding-right:5px;
  305. margin-top:-330px;
  306. margin-left:-1000px;
  307. }
  308.  
  309. .menu1{
  310. z-index:999999999;
  311. width:60px;
  312. display:block;
  313. height:17px;
  314. margin-top:15px;
  315. margin-left:-10px;
  316. margin-bottom:10px;
  317. text-align:center;
  318. background-color: {color:Navigation};
  319. padding-bottom:10px;
  320. padding-top:6px;
  321. padding-right:10px;
  322. padding-left:10px;
  323. text-decoration:none;
  324. color:{color:Navigation text};
  325. font-family:"Celeste Hand";
  326. font-size:20px;
  327. line-height:20px;
  328. text-transform:uppercase;
  329. letter-spacing:2px;
  330. border:1px solid #000000;
  331. -moz-border-radius:7px;
  332. -webkit-border-radius:7px;
  333. border-radius:7px;
  334. }
  335.  
  336. .menu1:hover{
  337. background-color: {color:Navigation hover};
  338. color:{color:Navigation text hover};
  339. letter-spacing:1px
  340. -webkit-transition: all 0.7s ease;
  341. -moz-transition: all 0.7s ease;
  342. -o-transition: all 0.7s ease;
  343. }
  344.  
  345. .menu2{
  346. width:60px;
  347. display:block;
  348. height:17px;
  349. margin-top:15px;
  350. margin-left:5px;
  351. margin-bottom:10px;
  352. text-align:center;
  353. background-color: {color:Navigation};
  354. padding-bottom:10px;
  355. padding-top:6px;
  356. padding-right:10px;
  357. padding-left:10px;
  358. text-decoration:none;
  359. color:{color:Navigation text};
  360. font-family:"Celeste Hand";
  361. font-size:20px;
  362. line-height:20px;
  363. text-transform:uppercase;
  364. letter-spacing:2px;
  365. border:1px solid #000000;
  366. -moz-border-radius:7px;
  367. -webkit-border-radius:7px;
  368. border-radius:7px;
  369. }
  370.  
  371. .menu2:hover{
  372. background-color: {color:Navigation hover};
  373. color:{color:Navigation text hover};
  374. letter-spacing:1px
  375. -webkit-transition: all 0.7s ease;
  376. -moz-transition: all 0.7s ease;
  377. -o-transition: all 0.7s ease;
  378. }
  379.  
  380. .desc {
  381. position:fixed;
  382. padding:5px;
  383. margin-top:20px;
  384. margin-left:5px;
  385. text-align:justify;
  386. font-size:27px;
  387. font-family:"Lemons Can Fly";
  388. width:230px;
  389. height:auto;
  390. color:{color:text};
  391. letter-spacing:0px;
  392. background-color:{color:Sidebar};
  393. opacity:1;
  394. border:1px dashed {color:Border};
  395. -moz-border-radius:7px;
  396. -webkit-border-radius:7px;
  397. border-radius:7px;
  398. }
  399.  
  400. #stats {
  401. z-index:999999999999999999;
  402. position:fixed;
  403. padding:6px;
  404. padding-bottom:8px;
  405. margin-top:380px;
  406. margin-left:1040px;
  407. font-size:15px;
  408. font-family:"Hand of Sean";
  409. width:242px;
  410. height:auto;
  411. color:{color:Link};
  412. background-color:{color:Sidebar};
  413. border-top:1px dashed {color:Border};
  414. border-bottom:1px dashed {color:Border};
  415. opacity:0.8;
  416. }
  417.  
  418.  
  419. .title{
  420. line-height: 12px;
  421. color:{color:Title};
  422. font-weight: normal;
  423. }
  424.  
  425.  
  426. .permalink {
  427. color:black;
  428. font-size:12px;
  429. opacity: 0;
  430. width:235px;
  431. height:15px;
  432. padding-bottom:0px;
  433. padding-left:5px;
  434. padding-top:5px;
  435. background-color: #fff;
  436. position: absolute;
  437. top:10px;
  438. text-align:center;
  439. text-transform:uppercase;
  440. font-family:calibri;
  441. letter-spacing:0px;
  442. line-height:12px;
  443. border-top:3px double {color:border};
  444. border-bottom: double {color:border};
  445. display:block;
  446. -webkit-transition-duration: .75s;
  447. }
  448.  
  449. .entry:hover .permalink {
  450. position: absolute;
  451. width:235px;
  452. opacity:0.8;
  453. z-index:99;
  454. padding-top:5px;
  455. padding-bottom:0px;
  456. -moz-transition-duration:0.7s;
  457. -webkit-transition-duration:0.7s;
  458. -o-transition-duration:0.7s;
  459. }
  460.  
  461.  
  462.  
  463.  
  464. /* SCROLLBAR */
  465.  
  466. #infscr-loading{
  467. bottom: -70px;
  468. position: absolute;
  469. left: 50%;
  470. margin-left:-8px;
  471. width:16px;
  472. height:11px;
  473. overflow:hidden;
  474. margin-bottom: 50px;
  475. }
  476.  
  477. /* BLOCKQUOTES AND STUFF */
  478.  
  479. #postnotes{
  480. text-align: justify;}
  481.  
  482. #postnotes blockquote{
  483. border: 1px;}
  484.  
  485. blockquote{
  486. padding:0px 0px 2px 5px;
  487. margin:0px 0px 2px 5px;
  488. border-left: 1px solid {color:border};
  489. }
  490.  
  491. blockquote p, ul{
  492. margin:0px;
  493. padding:0px;
  494. }
  495.  
  496. a img{border: 0px;}
  497.  
  498.  
  499. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  500.  
  501. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  502. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  503.  
  504. .notes img{width:10px; position:relative; top:3px;}
  505. <--ses-->
  506. small{font-size: 90%;}
  507.  
  508. /* --- EDIT CREDIT HERE ---*/
  509.  
  510. #credit{
  511. font-size: 10px;
  512. font-style:none;
  513. letter-spacing: 0px;
  514. float: center;
  515. position: fixed;
  516. bottom: 10px;
  517. right: 10px;
  518. text-transform:none;
  519. font-family:new york;
  520. -moz-transition-duration:0.7s;
  521. -webkit-transition-duration:0.7s;
  522. -o-transition-duration:0.7s;
  523. }
  524.  
  525. #credit a{
  526. color: #fff;
  527. background:{color:border};
  528. padding:5px;
  529. -moz-transition-duration:0.7s;
  530. -webkit-transition-duration:0.7s;
  531. -o-transition-duration:0.7s;
  532. }
  533.  
  534. #credit a:hover{
  535. color:{color:border};
  536. background:{color:background};
  537. -moz-transition-duration:0.7s;
  538. -webkit-transition-duration:0.7s;
  539. -o-transition-duration:0.7s;
  540. }
  541.  
  542. {CustomCSS}
  543.  
  544. </style>
  545.  
  546. <!-- INFINITE SCROLL THING -->
  547.  
  548. {block:IndexPage}
  549. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  550. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  551.  
  552. <script type="text/javascript">
  553. $(window).load(function(){
  554. var $wall = $('#posts');
  555. $wall.imagesLoaded(function(){
  556. $wall.masonry({
  557. itemSelector: '.entry, .entry_photo',
  558. isAnimated : false
  559. });
  560. });
  561.  
  562. $wall.infinitescroll({
  563. navSelector : '#pagination',
  564. nextSelector : '#pagination a',
  565. itemSelector : '.entry, .entry_photo',
  566. bufferPx : 2000,
  567. debug : false,
  568. errorCallback: function() {
  569. $('#infscr-loading').fadeOut('normal');
  570. }},
  571. function( newElements ) {
  572. var $newElems = $( newElements );
  573. $newElems.hide();
  574. $newElems.imagesLoaded(function(){
  575. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  576. });
  577. }); $('#posts').show(500);
  578. });
  579. </script>
  580.  
  581.  
  582. {/block:IndexPage}
  583.  
  584.  
  585. <title>{title}</title>
  586.  
  587. <link rel="shortcut icon" href="{Favicon}" />
  588. <meta name="viewport" content="width=820" />
  589.  
  590.  
  591.  
  592. </head>
  593.  
  594. <body>
  595. <BODY onselectstart="return false;" ondragstart="return false;">
  596. <div class="wrapper">
  597. <div class="header">
  598. </div>
  599. <div id="cage">
  600. <div id="center">
  601.  
  602. <!--SIDEBAR STUFF--> <!--REMOVE <div class="sidetitle">{text:sidetitle}</div> IF YOU DON'T WANT A TITLE-->
  603.  
  604. <div id="sidebar"><div id="title">{text:Blog Title}</div>
  605. <center>
  606. <a href="/"><img src="{image:sidebar}" width=10%></a>
  607.  
  608. <div id="menu">
  609. <a href="/" class="menu1">home</a>
  610. <a href="/ask" class="menu2">ask</a>
  611. <div class="menu1"><a href="#?w=500" rel="03" class="poplight">theme</a></div>
  612. {block:IfPopup}<div class="menu2"><a href="#?w=500" rel="02" class="poplight">{text:Popup Title}</a></div>{/block:IfPopup}
  613. {block:IfLink2}<a href="{text:Link 2 URL}" class="menu1">{text:Link 2}</a>{/block:IfLink2}
  614. {block:IfLink3}<a href="{text:Link 3 URL}" class="menu2">{text:Link 3}</a>{/block:IfLink3}
  615. {block:IfLink4}<a href="{text:Link 4 URL}" class="menu1">{text:Link 4}</a>{/block:IfLink4}
  616. {block:IfLink5}<a href="{text:Link 5 URL}" class="menu2">{text:Link 5}</a>{/block:IfLink5}
  617. {block:IfLink6}<a href="{text:Link 6 URL}" class="menu1">{text:Link 6}</a>{/block:IfLink6}
  618. </div>
  619.  
  620. <div class="desc">
  621. {Description}
  622. </center>
  623. </div>
  624.  
  625. <div id="stats">
  626. <center>{text:Stats}</center>
  627. </div>
  628.  
  629. <div id="SidebarBG1"></div>
  630. <div id="SidebarBG2"></div>
  631.  
  632. <div class="left">
  633. <div id="posts">
  634. {block:Posts}
  635. <div class="entry">
  636.  
  637. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right>
  638. <!--EDIT THE PERMALINK STUFF ON TEXT POSTS-->
  639. <center><a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes - </a><a href="{ReblogURL}" target="_blank"> reblog </a></center>
  640. {/block:Text}
  641.  
  642. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  643. class="permalink"><a href="{Permalink}"><a href="{Permalink}"></a> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth}</a><a href="{Permalink}">{NoteCount} notes {notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  644.  
  645.  
  646. <!--EDIT THE PERMALINK STUFF ON PHOTOS-->
  647. {block:Photo}
  648. {block:IndexPage}
  649. <center>
  650. <div class="permalink">
  651. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes </a><a href="{ReblogURL}" target="_blank"> - reblog </a> </div>
  652. <div class="photo"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  653. {/block:IndexPage}
  654. {block:PermalinkPage}
  655. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  656.  
  657. {LinkCloseTag}
  658. {/block:PermalinkPage}
  659. {/block:Photo}
  660. {block:Photoset}
  661. {block:IndexPage}
  662. <center>
  663. <!--EDIT THE PERMALINK STUFF ON PHOTOSETS-->
  664. <div class="permalink">
  665. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes -</a><a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  666. {Photoset-250}</center>
  667. {/block:IndexPage}
  668. {block:PermalinkPage}
  669. <center>
  670. {/block:PermalinkPage}
  671. {/block:Photoset}
  672.  
  673. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right>
  674. <!--EDIT THE PERMALINK STUFF ON QUOTES-->
  675. <center><a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes-</a><a href="{ReblogURL}" target="_blank"> reblog </a></center>
  676. </span>{/block:Quote}
  677.  
  678. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  679. <ul class="chat">
  680. {block:Lines}
  681. <li class="user_{UserNumber}">
  682. {block:Label}
  683. <span class="label">{Label}</span>
  684. <div class="permalink">
  685. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes - </a><a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  686. {/block:Label}
  687.  
  688. {Line}
  689. </li>
  690. {/block:Lines}
  691. <!--EDIT THE PERMALINK STUFF ON CHATS-->
  692. <div class="permalink">
  693. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes -</a><a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  694. {/block:Chat}
  695.  
  696. {block:Audio}
  697. <div style="width:200px; height:30px;">
  698. {AudioPlayerBlack}
  699. </div>
  700. <!--EDIT THE PERMALINK STUFF ON AUDIO POSTS-->
  701. <div class="permalink">
  702. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes -</a><a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  703. {/block:Audio}
  704.  
  705. {block:Video}
  706. {block:IndexPage}
  707. <center>
  708. <!--EDIT THE PERMALINK STUFF ON VIDEO POSTS-->
  709. <div class="permalink">
  710. <a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} - </a><a href="{Permalink}">{NoteCount} notes -</a><a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  711. {Video-250}</center>
  712. {/block:IndexPage}
  713. {block:PermalinkPage}
  714. <center>
  715. {Video-400}</center>
  716. {/block:PermalinkPage}
  717. {block:Video}
  718.  
  719. <!--EDIT QUESTIONS AND ANSWERS ONLY HERE-->
  720. {block:Answer}
  721. <img src="{AskerPortraitURL-30}" align="left" style="margin-right:3px; border: 1px solid {color:border};"/>
  722. <div style="font-family:Color of Autumn; font-size:17px; margin-top:5px; font-style:none;"> <b>{Asker} </div>
  723. <p><div style="margin-top:10px; margin-left:35px; font-family:trebuchet ms; font-style:italic; border:1px dashed {color:border};">- {Question}</b> </div>
  724. <br>
  725. <div style="font-family:new york; text-transform:none;">{Answer} </div>
  726. {/block:Answer}
  727.  
  728.  
  729. {block:PostNotes}<div align="middle">{caption}</div>
  730. <center>
  731.  
  732. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  733.  
  734. {block:HasTags}
  735. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  736. {block:RebloggedFrom}
  737. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  738. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  739.  
  740. {/block:RebloggedFrom}
  741. </center></span>
  742. <br>
  743. <div id="postnotes">{PostNotes}</div><br>
  744.  
  745. <center>{block:ContentSource}
  746. <br><a href="{SourceURL}">
  747. {lang:Source}:
  748. {block:SourceLogo}
  749. <img src="{BlackLogoURL}" width="{LogoWidth}"
  750. height="{LogoHeight}" alt="{SourceTitle}" />
  751. {/block:SourceLogo}
  752. {block:NoSourceLogo}
  753. {SourceLink}
  754. {/block:NoSourceLogo}
  755. </a>
  756. {/block:ContentSource}</center>
  757.  
  758. {/block:PostNotes}
  759. </div>
  760. {/block:Posts}
  761. </div></div>
  762.  
  763.  
  764.  
  765. {block:IndexPage}
  766. {block:Pagination}
  767. <div id="pagination">
  768. {block:NextPage}
  769. <a id="nextPage" href="{NextPage}"></a>
  770. {/block:NextPage}
  771. {block:PreviousPage}
  772. <a href="{PreviousPage}"></a>
  773. {/block:PreviousPage}
  774. </div>
  775. {/block:Pagination}
  776. {/block:IndexPage}
  777.  
  778.  
  779. </body>
  780. <div id="02" class="popup_block">
  781. {text:popup}
  782. </div></div></div></div></div></div>
  783.  
  784. <div id="03" class="popup_block2">
  785. <a href="http://safebeneaththesmoke.tumblr.com/">THEME</a>
  786. <p><a href="http://nathesykes.tumblr.com/">BASE CODE</a>
  787. </div></div></div></div></div></div>
  788. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement