Advertisement
vrisky

arachnids 2

Jul 24th, 2012
28,822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.67 KB | None | 0 0
  1. <!--
  2.  
  3. Arachnids v.2 Theme
  4. Created by Modernise (modernise.tumblr.com)
  5. Please leave at least ONE credit link. Do not delete this box.
  6.  
  7. Theme is best viewed on Google Chrome, with a resolution of 1280x800.
  8.  
  9. *~*~HOW TO INSTALL~*~*
  10. 1) Copy this entire code.
  11. 2) Open up the customise.
  12. 3) Click on Edit HTML
  13. 4) Delete the code already in there.
  14. 5) Replace it with this code.
  15. 6) Hit Update Preview, and then Save.
  16. 7) Refresh the page, and press Save again.
  17. 8) If it wont let you paste in the box, or if it still does not work, use classic customize. (http://tumblr.com/customize-classic/)
  18.  
  19. If you are experiencing any problems with this theme, please refer to the FAQ on modernisethemes. (http://modernisethemes.tumblr.com/faq)
  20. Thank you for choosing Modernise Themes <3!
  21.  
  22. -->
  23.  
  24. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  25. <html xmlns="http://www.w3.org/1999/xhtml">
  26. <head>
  27. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  28.  
  29. <meta name="font:Text" content="Lucida Sans"/>
  30. <meta name="text:Font Size" content="9px"/>
  31. <meta name="color:Text" content="#888"/>
  32. <meta name="color:Background" content="#fff"/>
  33. <meta name="color:Post" content="#fff"/>
  34. <meta name="color:Borders" content="#cccccc"/>
  35. <meta name="color:Blockquote" content="#f5f5f5"/>
  36. <meta name="color:Links" content="#005282"/>
  37. <meta name="color:Hover" content="#1b7bb3"/>
  38. <meta name="color:Permalink" content="#000000"/>
  39. <meta name="color:Permalink Background" content="#ffffff">
  40. <meta name="image:Background" content=""/>
  41. <meta name="image:Header" content=""/>
  42. <meta name="if:Title Font" content="1"/>
  43. <meta name="if:Image Fade" content="1"/>
  44. <meta name="if:Image Shadow" content="1"/>
  45. <meta name="if:Pop Up Menu" content="1"/>
  46. <meta name="if:CustomLink1" content="1"/>
  47. <meta name="if:CustomLink2" content="1"/>
  48. <meta name="if:CustomLink3" content="1"/>
  49. <meta name="if:CustomLink4" content="0"/>
  50. <meta name="if:CustomLink5" content="0"/>
  51. <meta name="text:Link 1 Title" content="custom link"/>
  52. <meta name="text:Link 1" content="http://"/>
  53. <meta name="text:Link 2 Title" content="custom link"/>
  54. <meta name="text:Link 2" content="http://"/>
  55. <meta name="text:Link 3 Title" content="custom link"/>
  56. <meta name="text:Link 3" content="http://"/>
  57. <meta name="text:Link 4 Title" content="custom link"/>
  58. <meta name="text:Link 4" content="http://"/>
  59. <meta name="text:Link 5 Title" content="custom link"/>
  60. <meta name="text:Link 5" content="http://"/>
  61. <meta name="if:Animated Post Load" content="1"/>
  62. <meta name="if:Cross Cursor" content="1"/>
  63. <meta name="if:Click Photo To Reblog" content="1"/>
  64. <meta name="if:Infinite Scroll" content="1"/>
  65.  
  66.  
  67. <link rel="shortcut icon" href="{Favicon}">
  68. {block:Description}
  69. <meta name="description" content="{MetaDescription}" />
  70. {/block:Description}
  71.  
  72. <title>{Title}</title>
  73. <script type="text/javascript"
  74. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  75. <script>
  76. $(document).ready(function() {
  77. //
  78. $('a.poplight[href^=#]').click(function() {
  79. var popID = $(this).attr('rel'); //Get Popup Name
  80. var popURL = $(this).attr('href'); //Get Popup href to define size
  81. var query= popURL.split('?');
  82. var dim= query[1].split('&');
  83. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  84. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/iddq6cw/Atplvofrt/tooltip-closebutton.png" class="btn_close" title="Close" alt="Close" /></a>');
  85. var popMargTop = ($('#' + popID).height() + 80) / 2;
  86. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  87. //Apply Margin to Popup
  88. $('#' + popID).css({
  89. 'margin-top' : -popMargTop,
  90. 'margin-left' : -popMargLeft
  91. });
  92. $('body').append('<div id="fade"></div>');
  93. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  94. return false;
  95. });
  96. $('a.close, #fade').live('click', function() {
  97. $('#fade , .popup_block').fadeOut(function() {
  98. $('#fade, a.close').remove(); //fade them both out
  99. });
  100. return false;
  101. });
  102. });
  103. </script>
  104.  
  105. <style type="text/css">
  106.  
  107.  
  108. /* Body Controls */
  109.  
  110. body {
  111. font-family:{font:Text};
  112. font-size:{text:Font Size};
  113. color:{color:Text};
  114. letter-spacing:0px;
  115. background-color:{color:background};
  116. background-image:url('{image:Background}');
  117. background-color:{color:Background};
  118. background-repeat: repeat;
  119. background-position: top center;
  120. background-attachment: fixed;
  121. text-align:justify;
  122. line-height:100%;
  123. {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor}
  124. {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}
  125. }
  126.  
  127.  
  128. @font-face {
  129. font-family:basket;
  130. src: url('http://static.tumblr.com/ejm8w78/luUlvia92/glasket500.ttf');
  131. }
  132.  
  133. a {
  134. color:{color:Links};
  135. text-decoration: none;
  136. -moz-transition-duration:1s;
  137. -o-transition-duration:1s;
  138. transition:1s;
  139. -webkit-transition-duration:1s;
  140. }
  141.  
  142. a:hover {
  143. color:{color:Hover};
  144. text-decoration: none;
  145. transition:1s;
  146. -moz-transition-duration:1s;
  147. -o-transition-duration:1s;
  148. -webkit-transition-duration:1s;
  149. {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor}
  150. {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}
  151.  
  152. }
  153.  
  154. u {
  155. border-bottom: 1px dashed #888;
  156. }
  157.  
  158. b.STRONG {
  159. letter-spacing:2px;
  160. font-size:9px;
  161. font-weight:bold;
  162. }
  163. iframe#tumblr_controls {
  164. right:3px !important;
  165. position: fixed !important;
  166. -webkit-transition: opacity 0.7s linear;
  167. opacity: 0.5;
  168. -webkit-transition: all 0.8s ease-out;
  169. -moz-transition: all 0.8s ease-out;
  170. transition: all 0.8s ease-out;
  171. }
  172.  
  173. iframe#tumblr_controls:hover {
  174. -webkit-transition: opacity 0.7s linear;
  175. opacity: 1;
  176. -webkit-transition: all 0.4s ease-out;
  177. -moz-transition: all 0.4s ease-out;
  178. transition: all 0.4s ease-out;
  179. }
  180.  
  181. ::-webkit-scrollbar-thumb:vertical {
  182. background-color:{color:Links};
  183. height:auto;
  184. -webkit-border-radius:20px;
  185. }
  186.  
  187. ::-webkit-scrollbar-thumb:horizontal {
  188. background-color:{color:Links};
  189. height:6px !important;
  190. -webkit-border-radius:20px;
  191. }
  192.  
  193. ::-webkit-scrollbar {
  194. height:6px;
  195. width:6px;
  196. background-color:{color:Background};
  197. -webkit-border-radius:20px;
  198. }
  199.  
  200. #content {
  201. width:100%;
  202. margin-left:auto;
  203. margin-right:auto;
  204. position: relative;
  205. margin-bottom:-10px;
  206. height:100%;
  207. {block:IfCrossCursor}cursor:crosshair;{/block:IfCrossCursor}
  208. {block:IfNotCrossCursor}cursor:default;{/block:IfNotCrossCursor}
  209. }
  210.  
  211. .karkat {
  212. background-color:{color:Post};
  213. display:block;
  214. {block:IndexPage}
  215. width:1020px;
  216. padding-left:5px;{/block:IndexPage}
  217. {block:PermalinkPage}
  218. width: 505px;
  219. padding-left:5px;
  220. {/block:PermalinkPage}
  221. margin-left:auto;
  222. margin-right:auto;
  223. height:100%;
  224. top:0px;
  225. bottom:0px;
  226. z-index:-1;
  227. }
  228.  
  229. ul {
  230. margin-left:-25px;
  231. }
  232.  
  233.  
  234.  
  235.  
  236. /* Header Controls */
  237.  
  238. .sidebar {
  239. width:{block:IndexPage}
  240. width:500px;{/block:IndexPage}
  241. {block:PermalinkPage}
  242. width: 505px;
  243. padding-right:5px;
  244. {/block:PermalinkPage}500px;
  245. background-color:{color:Post};
  246. z-index:1;
  247. margin-right:auto;
  248. position:relative;
  249. text-align:center;
  250. margin-top:-10px;
  251. padding-bottom:10px;
  252. height:100%;
  253. padding-top:10px;
  254. margin-left:auto;
  255. }
  256.  
  257. .butters a {
  258. font-size:50px;
  259. color:{color:Links};
  260. -webkit-transition-duration:1.5s;
  261. font-family:{block:IfTitleFont}basket{/block:IfTitleFont}
  262. {block:IfNotTitleFont}{font:text}{/block:IfNotTitleFont};
  263. letter-spacing:-1px;
  264. line-height:100%;
  265. max-width:500px;
  266. }
  267.  
  268. .butters a:hover {
  269. font-size:50px;
  270. color:{color:Hover};
  271. font-family:{block:IfTitleFont}basket{/block:IfTitleFont}
  272. {block:IfNotTitleFont}{font:text}{/block:IfNotTitleFont};
  273. letter-spacing:-1px;
  274. max-width:500px;
  275. }
  276.  
  277.  
  278.  
  279.  
  280. /* Post Controls */
  281.  
  282. #content .posts {
  283. {block:IndexPage}
  284. width:1020px;
  285. margin-left:auto;
  286. {/block:IndexPage}
  287. {block:PermalinkPage}
  288. width: 500px;
  289. margin-left:0px;
  290. padding-right:5px;
  291. {/block:PermalinkPage};
  292. right:auto;
  293. margin-top:0px;
  294. margin-right:auto;
  295. position:relative;
  296. background-color:{color:Post};
  297. overflow-y: hidden;
  298. }
  299.  
  300. #content .posts img {
  301. {block:IndexPage}
  302. max-width: 250px;
  303. {/block:IndexPage}
  304. {block:PermalinkPage}
  305. max-width: 500px;
  306. {/block:PermalinkPage}
  307. }
  308.  
  309.  
  310. #content .entry {
  311. {block:IndexPage}
  312. width:250px;
  313. float:left;
  314. position: relative;
  315. {/block:IndexPage}
  316. margin-right:5px;
  317. margin-bottom:2px;
  318. padding:0px;
  319. z-index:1;
  320. {block:PermalinkPage}
  321. width:500px;
  322. margin:auto;
  323. {/block:PermalinkPage}
  324. background-color:transparent;
  325. {block:IfAnimatedPostLoad}
  326. -webkit-transition-duration:2s;
  327. {/block:IfAnimatedPostLoad}
  328. }
  329.  
  330. .heading {
  331. font-family:{font:Text};
  332. font-size:15px;
  333. text-decoration: none;
  334. letter-spacing:0px;
  335. font-weight:none;
  336. line-height:100%;
  337. margin-bottom:0px;
  338. text-align:left;
  339. }
  340.  
  341. .chat ul {
  342. padding:0px 0px 0px 0px;
  343. margin:0px 0px 0px 0px;
  344. }
  345.  
  346. .chat li {
  347. list-style-type: none;
  348. padding-left:0px;
  349. margin-right:0px;
  350. }
  351.  
  352. .chat li.odd {
  353. color: {color:Text};
  354. }
  355.  
  356. .chat li.even {
  357. color: {color:Links};
  358. }
  359.  
  360. .label {
  361. font-weight: bold;
  362. }
  363.  
  364. blockquote {
  365. padding-left:5px;
  366. padding-top:3px;
  367. padding-right:5px;
  368. padding-bottom:3px;
  369. margin-left:5px;
  370. margin-right:5px;
  371. border-left: 2px solid {color:Borders};
  372. border-right: 2px solid {color:Borders};
  373. background-color:{color:Blockquote};
  374. }
  375.  
  376. .stan {
  377. background-color:{color:Blockquote};
  378. }
  379.  
  380. .kyle {
  381. font-style:italic;
  382. line-height:100%;
  383. margin-bottom:0px;
  384. }
  385.  
  386.  
  387. .img {
  388. {block:IfImageFade}
  389. {block:IndexPage}
  390. opacity:0.8;
  391. filter:alpha(opacity=80);
  392. {/block:IndexPage}
  393. {/block:IfImageFade}
  394. -webkit-transition-duration:0.4s;
  395. }
  396.  
  397. .img:hover {
  398. {block:IfImageFade}
  399. opacity:1;
  400. filter:alpha(opacity=100);
  401. {/block:IfImageFade}
  402. }
  403.  
  404.  
  405. .audioplayer {
  406. background-color: #fff;
  407. -moz-box-shadow: 3px 3px 4px #ccc;
  408. -webkit-box-shadow: 3px 3px 4px #ccc;
  409. box-shadow: 3px 3px 4px #ccc;
  410. }
  411.  
  412. .stoley img {
  413. {block:IndexPage}
  414. max-width:300px;
  415. overflow-y:auto;
  416. {/block:IndexPage}
  417. }
  418.  
  419. .kenny {
  420. width:500px;
  421. opacity: 1;
  422. z-index: 10000;
  423. margin-top:0px;
  424. margin-left:auto;
  425. margin-right:0px;
  426. float:right;
  427. text-align:right;
  428. font-family:trebuchet ms;
  429. font-size:7px;
  430. letter-spacing:1px;
  431. text-transform:uppercase;
  432. }
  433.  
  434. .cartman {
  435. margin-top:0;
  436. margin-left:0px;
  437. margin-right:auto;
  438. margin-bottom:0px;
  439. width:500px;
  440. text-align:left;
  441. background-color:transparent;
  442. }
  443.  
  444. .wendy {
  445. text-align:center;
  446. width:500px;
  447. margin-left:auto;
  448. margin-right:auto;
  449. }
  450.  
  451. .video embed, .video object, .video iframe {
  452. {block:IndexPage}
  453. width:250px /**/ !important;
  454. {/block:IndexPage}
  455. {block:PermalinkPage}width:500px !important;
  456. {/block:PermalinkPage}
  457. height:auto !important;
  458. }
  459.  
  460.  
  461. .album-art {
  462. float: left;
  463. width: 100px;
  464. height: 100px;
  465. overflow: hidden;
  466. }
  467.  
  468.  
  469.  
  470.  
  471. /* Permalink Controls */
  472.  
  473. .entry .permalink {
  474. padding-top:0px;
  475. }
  476.  
  477. .tweek a {
  478. font-size:15px;
  479. line-height:100%;
  480. padding:2px;
  481. color:{color:Hover};
  482. -webkit-transition-duration:1s;
  483. z-index:999999;
  484. }
  485.  
  486. .tweek a: hover {
  487. color:{color:Link};
  488. }
  489.  
  490. .craig {
  491. color:{color:Permalink};
  492. font-size:8px;
  493. opacity: 0;
  494. -webkit-transition-duration: 1s;
  495. bottom:{block:IfImageShadow}10px{/block:IfImageShadow}{block:IfNotImageShadow}0px{/block:IfNotImageShadow};
  496. right:0px;
  497. width:25px;
  498. height:20px;
  499. background-color: {color:Permalink Background};
  500. padding-top:5px;
  501. position: absolute;
  502. margin:5px;
  503. text-align:center;
  504. font-family:trebuchet ms;
  505. letter-spacing:1px;
  506. border-bottom-right-radius:50px;
  507. border-top-right-radius:50px;
  508. border-top-left-radius:50px;
  509. border-bottom-left-radius:50px;
  510. display:block;
  511. }
  512.  
  513. .entry:hover .craig {
  514. {block:indexpage}opacity:0.85;
  515. {/block:indexpage}z-index:999999;
  516. }
  517.  
  518. .permalink {
  519. {block:IndexPage}
  520. float:right;
  521. position: absolute;
  522. margin-top:0px;
  523. opacity: 0;
  524. z-index: 1000;
  525. background-color:{color:Permalink Background};
  526. text-align:right;
  527. {/block:IndexPage}
  528. }
  529.  
  530.  
  531. ol.notes {
  532. padding: 0px;
  533. margin: 25px 0px;
  534. list-style-type: none;
  535. border-bottom: solid 1px #ccc;
  536. }
  537.  
  538. ol.notes li.note {
  539. border-top: solid 1px #ccc;
  540. padding: 6px;
  541. }
  542.  
  543.  
  544. /* Pop Up Controls */
  545.  
  546. #fade { /*--Transparent background layer--*/
  547. display: none; /*--hidden by default--*/
  548. background: #000;
  549. position: fixed; left: 0; top: 0;
  550. width: 100%; height: 100%;
  551. opacity: .80;
  552. z-index: 9999;
  553. }
  554. .popup_block {
  555. display: none; /*--hidden by default--*/
  556. background: #fff;
  557. padding: 20px;
  558. border: 10px solid {color:Borders};
  559. float: left;
  560. font-size: 11px;
  561. position: fixed;
  562. top: 30%; left: 50%;
  563. z-index: 99999999;
  564. /*--CSS3 Box Shadows--*/
  565. -webkit-box-shadow: 0px 0px 20px #000;
  566. -moz-box-shadow: 0px 0px 20px #000;
  567. box-shadow: 0px 0px 20px #000;
  568. /*--CSS3 Rounded Corners--*/
  569. -webkit-border-radius: 10px;
  570. -moz-border-radius: 10px;
  571. border-radius: 10px;
  572. }
  573. img.btn_close {
  574. float: right;
  575. margin: -20px -20px 0 0;
  576. }
  577.  
  578. {CustomCSS}
  579.  
  580. </style>
  581.  
  582.  
  583. {block:IndexPage}
  584.  
  585. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  586. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  587. </script>
  588.  
  589. {block:IfInfiniteScroll}
  590. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  591. {/block:IfInfiniteScroll}
  592.  
  593. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  594.  
  595. <script type="text/javascript">
  596.  
  597. $(window).load(function () {
  598. $('.posts').masonry(),
  599. $('.masonryWrap').infinitescroll({
  600. navSelector : "div#navigation",
  601. // selector for the paged navigation (it will be hidden)
  602. nextSelector : "div#navigation a#nextPage",
  603. // selector for the NEXT link (to page 2)
  604. itemSelector : ".entry",
  605. // selector for all items you'll retrieve
  606. bufferPx : 10000,
  607. extraScrollPx: 10,
  608. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  609. loadingText : "<em></em>",
  610. },
  611. // call masonry as a callback.
  612. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  613. );
  614. });
  615. </script>
  616. <script type="text/javascript">
  617. $(window).load(function(){
  618. $("p").remove(":contains('Source:')");
  619. $("p").remove(":contains('via ')");
  620. });
  621. </script>
  622.  
  623. <script type="text/javascript" src="http://static.tumblr.com/twte3d7/BH7lio0yf/jquery.js"></script>
  624. <script type="text/javascript" src="http://static.tumblr.com/twte3d7/RhUlio0y7/lazyload.js"></script>
  625. <script type="text/javascript" charset="utf-8">
  626. var $j = jQuery.noConflict();
  627. $j(function() {
  628. if (navigator.platform == "iPad" || navigator.platform == "iPhone" || navigator.platform == "Android") return;
  629. $j("img").lazyload({
  630. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  631. effect: "fadeIn",
  632. });
  633. });
  634. </script>
  635.  
  636.  
  637. {/block:IndexPage}
  638.  
  639. </head>
  640.  
  641. <body>
  642.  
  643. <div class="karkat">
  644. <div class="sidebar">
  645.  
  646. <div class="butters">
  647. <a href="/"><center>
  648. {block:IfHeaderImage}<img src="{image:Header}" width="500">{/block:IfHeaderImage}{block:IfNotHeaderImage}{Title}{/block:IfNotHeaderImage}
  649. </center></a>
  650. </div><div style="max-width:500px;margin-left:auto;margin-right:auto;">
  651. {Description}<Br>
  652. </div>
  653. {block:IfNotPopupMenu}
  654. <a href="/ask">message</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  655. <a href="/archive">history</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  656. {block:HasPages}
  657. {block:Pages}
  658. <a href="{URL}">{Label}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  659. {/block:Pages}
  660. {/block:HasPages}
  661. {block:IfCustomLink1}
  662. <a href="{text:Link 1}">{text:Link 1 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  663. {/block:IfCustomLink1}
  664. {block:IfCustomLink2}
  665. <a href="{text:Link 2}">{text:Link 2 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  666. {/block:IfCustomLink2}
  667. {block:IfCustomLink3}
  668. <a href="{text:Link 3}">{text:Link 3 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  669. {/block:IfCustomLink3}
  670. {block:IfCustomLink4}
  671. <a href="{text:Link 4}">{text:Link 4 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  672. {/block:IfCustomLink4}
  673. {block:IfCustomLink5}
  674. <a href="{text:Link 5}">{text:Link 5 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  675. {/block:IfCustomLink5}<a href="http://modernise.tumblr.com">theme</a>
  676. {/block:IfNotPopupMenu}
  677. {block:IfPopupMenu}
  678. <a href="#?w=500" rel="links" class="poplight"><span>links</span></a>
  679. {/block:IfPopupMenu}
  680. {block:IndexPage}
  681. <div class="column navigation" id="navigation">
  682. {block:Pagination}
  683. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  684. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  685. </div>
  686. {/block:IndexPage}
  687.  
  688. <br>
  689.  
  690. </div>
  691.  
  692.  
  693. <div id="content">
  694.  
  695. {block:IndexPage}
  696. {block:IfInfiniteScroll}
  697.  
  698. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  699.  
  700. {/block:IfInfiniteScroll}
  701. {/block:IndexPage}
  702.  
  703. <div class="posts">
  704. {block:Posts}
  705. <div class="entry">
  706.  
  707.  
  708. {block:Text}
  709. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  710. <div class="stoley">{Body}</div>
  711.  
  712. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  713. {NoteCountWithLabel}</div>
  714. {/block:IndexPage}
  715.  
  716. {block:PermalinkPage}
  717.  
  718.  
  719. <div class="kenny">
  720. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  721.  
  722. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  723. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  724. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  725. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  726. {/block:PermalinkPage}
  727. {/block:Text}
  728.  
  729. {block:Photo}
  730.  
  731. <div class="img">
  732. {block:IndexPage}{block:IfClickPhotoToReblog}<a href="{ReblogURL}">{/block:IfClickPhotoToReblog}{block:IfNotClickPhotoToReblog}<a href="{Permalink}">{/block:IfNotClickPhotoToReblog}{/block:IndexPage}
  733. {block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}
  734. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="250"{/block:IndexPage}{block:PermalinkPage}width="500"{/block:PermalinkPage}/>{block:IfImageShadow}<img style="width:{block:IndexPage}250px{/block:IndexPage}{block:PermalinkPage}500px{/block:PermalinkPage};opacity:.7;" src="http://28.media.tumblr.com/tumblr_lpn6kseZUG1qm57imo1_500.png"/>{/block:IfImageShadow}
  735. </a>
  736. </div>
  737.  
  738. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  739.  
  740. {block:PermalinkPage}
  741. {block:Caption}{Caption}{/block:Caption}<br>
  742. <div class="kenny">
  743. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  744.  
  745. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  746. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  747. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  748. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  749. {/block:PermalinkPage}
  750.  
  751. {/block:Photo}
  752.  
  753.  
  754. {block:Photoset}
  755.  
  756.  
  757. {block:IndexPage}{Photoset-250}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCount}</div></a></div>{/block:IndexPage}
  758.  
  759. {block:PermalinkPage}
  760. {Photoset-500}<br>{block:Caption}{Caption}<br><br>{/block:Caption}
  761. {/block:PermalinkPage}
  762.  
  763. {block:PermalinkPage}
  764.  
  765.  
  766. <div class="kenny">
  767. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  768.  
  769. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  770. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  771. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  772. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  773. {/block:PermalinkPage}
  774. {/block:Photoset}
  775.  
  776.  
  777. {block:Quote}
  778. <a href="{permalink}"><div class="heading"><i>{Quote}</i></div></a>
  779. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  780.  
  781. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  782. {NoteCountWithLabel}</div>
  783. {/block:IndexPage}
  784.  
  785. {block:PermalinkPage}
  786.  
  787.  
  788. <div class="kenny">
  789. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  790.  
  791. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  792. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  793. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  794. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  795. {/block:PermalinkPage}
  796. {/block:Quote}
  797.  
  798.  
  799. {block:Link}
  800. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  801. {block:Description} {Description}{/block:Description}
  802.  
  803. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  804. {NoteCountWithLabel}</div>
  805. {/block:IndexPage}
  806.  
  807. {block:PermalinkPage}
  808.  
  809.  
  810. <div class="kenny">
  811. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  812.  
  813. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  814. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  815. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  816. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  817. {/block:PermalinkPage}
  818. {/block:Link}
  819.  
  820. {block:Video}
  821. {block:PermalinkPage}<div class="video">{Video-500}
  822. </div>{/block:PermalinkPage}
  823.  
  824. {block:IndexPage}<div class="video" width="250">{Video-250}
  825. </div><div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  826. {NoteCountWithLabel}</div>
  827. {/block:IndexPage}
  828.  
  829. {block:PermalinkPage}
  830.  
  831.  
  832. <div class="kenny">
  833. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  834.  
  835. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  836. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  837. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  838. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  839. {/block:PermalinkPage}
  840. {/block:Video}
  841.  
  842.  
  843. {block:Chat}
  844. {block:Title}
  845. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  846. {/block:Title}
  847. <div class="chat ul">
  848. {block:Lines}
  849. <li class="{Alt} user_{UserNumber}">
  850. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  851. {/block:Lines}</div></li>
  852.  
  853. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  854. {NoteCountWithLabel}</div>
  855. {/block:IndexPage}
  856.  
  857. {block:PermalinkPage}
  858.  
  859.  
  860. <div class="kenny">
  861. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  862.  
  863. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  864. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  865. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  866. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  867. {/block:PermalinkPage}
  868. {/block:Chat}
  869.  
  870.  
  871.  
  872. {block:Audio}{block:PermalinkPage}
  873. {block:AlbumArt}<div class="album-art"><img src="{AlbumArtURL}" height="100px"></div>{/block:AlbumArt}{/block:PermalinkPage}
  874. <div class="audioplayer">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}
  875. {block:PermalinkPage}
  876. {block:TrackName}<br><br>
  877. <b>{TrackName}</b>
  878. {/block:TrackName} by {block:Artist}
  879. {Artist}
  880. {/block:Artist}<br>{PlayCountWithLabel}{/block:PermalinkPage}
  881.  
  882. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  883. {NoteCountWithLabel}</div>
  884. {/block:IndexPage}
  885.  
  886. {block:PermalinkPage}
  887.  
  888.  
  889. <div class="kenny">
  890. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  891.  
  892. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  893. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  894. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  895. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  896. {/block:PermalinkPage}
  897. {/block:Audio}
  898.  
  899.  
  900. {block:Answer}
  901. <div style="text-align:left;padding-left:5px;padding-right:5px;border-left: 2px solid {color:Borders};border-right: 2px solid {color:Borders};background-color:{color:blockquote};"><div class="stan">{Asker}: {Question}</div></div><div style="text-align:left;"><div class="kyle">{Answer}</div></div>
  902.  
  903. {block:IndexPage}<div style="border-bottom:1px {color:Hover} solid;font-size:8px;text-align:Right;"><a href="{Permalink}">
  904. {NoteCountWithLabel}</div>
  905. {/block:IndexPage}
  906.  
  907. {block:PermalinkPage}
  908.  
  909.  
  910. <div class="kenny">
  911. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  912.  
  913. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  914. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  915. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  916. <div class="cartman">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  917. {/block:PermalinkPage}
  918. {/block:Answer}
  919.  
  920.  
  921. </div>
  922.  
  923. {/block:Posts}
  924. </div>
  925.  
  926.  
  927. {block:IfNotInfiniteScroll}
  928. <div style="margin-bottom:10px;padding-top:5px;">
  929. <Center>
  930. {block:Pagination}
  931. {block:PreviousPage}
  932. <a href="{PreviousPage}">-</a>
  933. {/block:PreviousPage}/
  934.  
  935. {block:JumpPagination length="5"}
  936. {block:CurrentPage}
  937. <span>{PageNumber}</span>
  938. {/block:CurrentPage}
  939.  
  940. {block:JumpPage}
  941. <a class="jump_page" href="{URL}">{PageNumber}</a>
  942. {/block:JumpPage}
  943. {/block:JumpPagination}
  944.  
  945. /{block:NextPage}
  946. <a href="{NextPage}">+</a>
  947. {/block:NextPage}
  948. {/block:Pagination}</center>
  949. </div>
  950. {/block:IfNotInfiniteScroll}
  951.  
  952. </div>
  953.  
  954. </div>
  955. </div>
  956.  
  957. </div><div style="display:block;bottom:5px;right:5px;font-size:9px;font-family:georgia;position:fixed;background-color:#ffffff;padding:3px;border-radius:10px;z-index:5;opacity:0.75;">theme by <a href="http://modernise.tumblr.com">modernise</a></div>
  958.  
  959.  
  960.  
  961. </body>
  962.  
  963. <div id="links" class="popup_block" style="line-height:100%;text-align:center;">
  964. <div style="font-family:{block:IfTitleFont}basket{/block:IfTitleFont}{block:IfNotTitleFont}{font:text}{/block:IfNotTitleFont};font-size:40px;line-height:100%;">links</div>
  965. <div style="max-height:500px;line-height:150%;">
  966. <a href="/ask">message</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  967. <a href="/archive">history</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  968. {block:HasPages}
  969. {block:Pages}
  970. <a href="{URL}">{Label}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  971. {/block:Pages}
  972. {/block:HasPages}
  973. {block:IfCustomLink1}
  974. <a href="{text:Link 1}">{text:Link 1 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  975. {/block:IfCustomLink1}
  976. {block:IfCustomLink2}
  977. <a href="{text:Link 2}">{text:Link 2 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  978. {/block:IfCustomLink2}
  979. {block:IfCustomLink3}
  980. <a href="{text:Link 3}">{text:Link 3 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  981. {/block:IfCustomLink3}
  982. {block:IfCustomLink4}
  983. <a href="{text:Link 4}">{text:Link 4 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  984. {/block:IfCustomLink4}
  985. {block:IfCustomLink5}
  986. <a href="{text:Link 5}">{text:Link 5 Title}</a>&nbsp;&nbsp;⋅&nbsp;&nbsp;
  987. {/block:IfCustomLink5}<a href="http://modernise.tumblr.com">theme</a><br>
  988. </div>
  989. </div>
  990.  
  991. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement