Advertisement
0xumthemes

Owl Theme

Nov 23rd, 2012
2,471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.90 KB | None | 0 0
  1. <!--theme by 0-xum please do not remove credit-->
  2.  
  3.  
  4. <head>
  5.  
  6. <meta name="font:Text" content="georgia"/>
  7. <meta name="text:Font Size" content="9px"/>
  8. <meta name="color:Text" content="#888"/>
  9. <meta name="color:Background" content="#fff"/>
  10. <meta name="color:Post" content="#fff"/>
  11. <meta name="color:Borders" content="#cccccc"/>
  12. <meta name="color:Blockquote" content="#f5f5f5"/>
  13. <meta name="color:Links" content="#000"/>
  14. <meta name="color:Hover" content="#ccc"/>
  15. <meta name="color:Permalink" content="#fff"/>
  16. <meta name="color:Permalink Background" content="#FFF"/>
  17. <meta name="image:Background" content=""/>
  18. <meta name="image:Header" content=""/>
  19. <meta name="if:Header Image" content="0"/>
  20. <meta name="if:Title Font" content="1"/>
  21. <meta name="image:Sidebar" content="1"/>
  22. <meta name="if:show photo" content="0"/>
  23. <meta name="if: background covers full page" content="0"/>
  24.  
  25. <meta name="text:Custom Link one Title" content="link1" />
  26. <meta name="text:Custom Link one" content="" />
  27. <meta name="text:Custom Link two Title" content="link2" />
  28. <meta name="text:Custom Link two" content="" />
  29. <meta name="text:Custom Link three Title" content="link3" />
  30. <meta name="text:Custom Link three" content="" />
  31. <meta name="text:Custom Link four Title" content="link4" />
  32. <meta name="text:Custom Link four" content="" />
  33. <meta name="text:Custom Link Five Title" content="link5" />
  34. <meta name="text:Custom Link Five" content="" />
  35. <meta name="text:Custom Link Six Title" content="link6" />
  36. <meta name="text:Custom Link Six" content="" />
  37.  
  38. <meta name="if:Link one" content="1" />
  39. <meta name="if:Link two" content="1" />
  40. <meta name="if:Link three" content="1" />
  41. <meta name="if:Link four" content="1" />
  42. <meta name="if:Link five" content="1" />
  43. <meta name="if:Link six" content="1" />
  44.  
  45.  
  46. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  47.  
  48.  
  49.  
  50. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  51.  
  52.  
  53.  
  54. <link href='http://fonts.googleapis.com/css?family=Yellowtail|Walter+Turncoat|Monofett|Prosto+One' rel='stylesheet' type='text/css'>
  55.  
  56.  
  57. <script type="text/javascript" src="scrolltopcontrol.js">
  58. </script>
  59.  
  60. <script type="text/javascript">
  61.  
  62.  
  63.  
  64. var scrolltotop={
  65. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  66. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  67. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  68. controlHTML: '<img src="http://i11.photobucket.com/albums/a187/LaDrama/arrow-up.gif" style="filter:alpha(opacity=70); -moz-opacity:0.7; width:auto; height:auto" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  69. controlattrs: {offsetx:20, offsety:20}, //offset of control relative to right/ bottom of window corner
  70. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  71.  
  72. state: {isvisible:false, shouldvisible:false},
  73.  
  74. scrollup:function(){
  75. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  76. this.$control.css({opacity:0}) //hide control immediately after clicking it
  77. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  78. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  79. dest=jQuery('#'+dest).offset().top
  80. else
  81. dest=0
  82. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  83. },
  84.  
  85. keepfixed:function(){
  86. var $window=jQuery(window)
  87. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  88. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  89. this.$control.css({left:controlx+'px', top:controly+'px'})
  90. },
  91.  
  92. togglecontrol:function(){
  93. var scrolltop=jQuery(window).scrollTop()
  94. if (!this.cssfixedsupport)
  95. this.keepfixed()
  96. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  97. if (this.state.shouldvisible && !this.state.isvisible){
  98. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  99. this.state.isvisible=true
  100. }
  101. else if (this.state.shouldvisible==false && this.state.isvisible){
  102. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  103. this.state.isvisible=false
  104. }
  105. },
  106.  
  107. init:function(){
  108. jQuery(document).ready(function($){
  109. var mainobj=scrolltotop
  110. var iebrws=document.all
  111. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  112. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  113. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  114. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  115. .attr({title:'Scroll to Top'})
  116. .click(function(){mainobj.scrollup(); return false})
  117. .appendTo('body')
  118. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  119. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  120. mainobj.togglecontrol()
  121. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  122. mainobj.scrollup()
  123. return false
  124. })
  125. $(window).bind('scroll resize', function(e){
  126. mainobj.togglecontrol()
  127. })
  128. })
  129. }
  130. }
  131.  
  132. scrolltotop.init()
  133.  
  134. </script>
  135.  
  136.  
  137.  
  138. <link rel="shortcut icon" href="{Favicon}">
  139. {block:Description}
  140.  
  141. <meta name="description" content="{MetaDescription}" />
  142. {/block:Description}
  143.  
  144. <title>{Title}</title>
  145.  
  146.  
  147.  
  148.  
  149.  
  150. <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
  151. <script type="text/javascript">
  152. $(document).ready(function () {
  153. $(‘li.drawer div:nth-child(2)’).hide();
  154. $(‘li.drawer h4’).click(function () {
  155. if ($(this).hasClass(‘open’)) {
  156. $(‘li.drawer div:visible:nth-child(2)’).slideUp().prev().removeClass(‘open’);}
  157. else {
  158. $(‘li.drawer div:visible:nth-child(2)’).slideUp().prev().removeClass(‘open’);
  159. $(this).next().slideDown();
  160. $(this).addClass(‘open’);}
  161. });
  162. });
  163. </script>
  164. </head>
  165.  
  166.  
  167. <style type="text/css">
  168. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  169.  
  170. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  171.  
  172.  
  173. @font-face {
  174.  
  175. font-family:basket;
  176. src: url('http://static.tumblr.com/ejm8w78/JDllviajb/marketingscript.ttf');
  177. }
  178.  
  179. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.5;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  180.  
  181. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  182.  
  183. body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}
  184.  
  185. body {
  186. font-family:{font:Text};
  187. color:{color:Text};letter-spacing:1px;
  188. background-color:{color:background};
  189. background-image:url('{image:Background}');
  190. background-color:{color:Background};
  191. background-repeat: repeat;
  192. background-position: top center;
  193. background-attachment: fixed;
  194. text-align:justify;
  195. {block:ifbackgroundcoversfullpage}
  196. background-size: cover;
  197. {/block:ifbackgroundcoversfullpage}
  198. }
  199.  
  200.  
  201.  
  202.  
  203. .token {
  204. line-height:9px;
  205. font-size:9px;
  206. letter-spacing:1px;
  207. }
  208.  
  209.  
  210. .sidebar {
  211. max-width:500px;
  212. background-color:{color:Posts};
  213. z-index:1;
  214. margin-left:auto;margin-right:auto;
  215. position:relative;
  216. text-align:center;
  217. margin-top:0px;margin-bottom:100px;
  218. }
  219.  
  220. #content {
  221. width:100%; margin-left:auto; margin-right:auto;
  222. position: relative;
  223. }
  224.  
  225.  
  226. #content .posts {
  227. width:1150px; {block:PermalinkPage}width:500px;{/block:PermalinkPage}
  228. left:auto; right:auto;margin-top:0px;margin-left:auto;margin-right:auto;
  229. position:relative;
  230. }
  231.  
  232. #content .posts img {
  233. {block:IndexPage}max-width: 225px; {/block:IndexPage}
  234. {block:PermalinkPage}max-width: 500px; {/block:PermalinkPage}
  235. }
  236.  
  237.  
  238. #content .entry {
  239. {block:IndexPage}width: 225px; float:left;
  240. position: relative;
  241. {/block:IndexPage}
  242. margin-right:5px;
  243. margin-bottom:5px;
  244. padding:0px;
  245.  
  246. {block:PermalinkPage}width:500px; margin:auto; {/block:PermalinkPage}
  247. background-color:#ffffff;
  248. }
  249.  
  250. #navigation {
  251. width:0px;
  252. margin:auto;
  253. position:absolute;
  254. height:200%;
  255. }
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263. div#info{
  264. position:fixed !important;
  265. margin-top: 2px;
  266. padding-top: 1px;
  267. height: 96px;
  268. width: 255px;
  269. background-color: #fff;
  270. margin-left: 10px;
  271. }
  272.  
  273. div#info2{
  274. position:fixed !important;
  275. margin-top: 2px;
  276. padding: 2px;
  277. padding-right:2px;
  278. height: 93;
  279. width: 140px;
  280. background-color: #fff;
  281. margin-left: 395px;
  282. }
  283.  
  284.  
  285.  
  286.  
  287.  
  288. a {
  289. color:{color:Links};
  290. text-decoration: none;
  291. }
  292.  
  293. a:hover {
  294. color:{color:Hover};
  295. -webkit-transition-duration: 1s;
  296. text-decoration: none;
  297.  
  298. }
  299.  
  300. .heading {
  301. font-family:{font:Text};
  302. font-size:15px;
  303. text-decoration: none;
  304. letter-spacing:0px;
  305. font-weight:none;line-height:100%;
  306. margin-bottom:0px;text-align:left;
  307. }
  308.  
  309.  
  310. ::-webkit-scrollbar-thumb:vertical {
  311.  
  312. background-color:{color:Links};
  313. height:auto;-webkit-border-radius:20px;
  314. }
  315.  
  316. ::-webkit-scrollbar-thumb:horizontal {
  317.  
  318. background-color:{color:Links};
  319. height:6px !important;-webkit-border-radius:20px;
  320. }
  321.  
  322. ::-webkit-scrollbar {
  323. height:6px;
  324. width:6px;
  325. background-color:{color:Background};
  326. -webkit-border-radius:20px;
  327. }
  328.  
  329. .chat ul {
  330. padding:0px 0px 0px 0px;
  331. margin:0px 0px 0px 0px;
  332. }
  333.  
  334.  
  335. .chat li {
  336. list-style-type: none;
  337. padding-left:0px;
  338. margin-right:0px;
  339. }
  340.  
  341. .chat li.odd {
  342. color: {color:Text};
  343. }
  344.  
  345. .chat li.even {
  346. color: {color:Links};
  347. }
  348.  
  349. .label {
  350. font-weight: bold;
  351. font-size:9px;
  352. }
  353.  
  354.  
  355. blockquote {
  356. padding-left:5px;padding-top:3px;
  357. padding-right:5px;padding-bottom:3px;
  358. margin-left:5px; margin-right:5px;
  359. border-left: 2px solid {color:Borders};
  360. border-right: 2px solid {color:Borders};
  361. background-color:{color:blockquote};
  362. }
  363.  
  364.  
  365. .stan {
  366. background-color:{color:Blockquote};
  367. }
  368.  
  369. .kyle {
  370. font-style:italic;
  371. line-height:9px;margin-bottom:0px;
  372. }
  373.  
  374.  
  375. .img {
  376. opacity:1;
  377. filter:alpha(opacity=100);
  378. -webkit-transition-duration:1s;
  379. }
  380.  
  381. .img:hover {
  382. opacity:0.8;
  383. filter:alpha(opacity=80);
  384. }
  385.  
  386.  
  387. .audioplayer {
  388. background-color: #fff;
  389. -moz-box-shadow: 3px 3px 4px #ccc;
  390. -webkit-box-shadow: 3px 3px 4px #ccc;
  391. box-shadow: 3px 3px 4px #ccc;
  392. }
  393.  
  394.  
  395. .entry .permalink {
  396. padding-top:0px;
  397. }
  398.  
  399.  
  400.  
  401. .craig {
  402. font-family: helvetica;
  403. font-weight: condensed;
  404. color:black;
  405. font-size:7px;
  406. opacity: 0;
  407. -webkit-transition-duration: 1s;top:0px;
  408. width:225px;
  409. height:8px;padding-bottom:5px;
  410. background-color: #fff;
  411. position: absolute; margin-top:-5px;text-align:center;text-transform:Uppercase;font-family:trebuchet ms;letter-spacing:1px;
  412. display:block;}
  413.  
  414.  
  415. .entry:hover .craig {
  416. {block:indexpage}opacity:0.95;
  417. {/block:indexpage}z-index:999999;margin-top:3px;}
  418.  
  419.  
  420. .permalink {
  421. {block:IndexPage}
  422. float:right;
  423. position: absolute;
  424. margin-top:0px;
  425. opacity: 0;
  426. z-index: 1000;
  427. background-color:{color:Permalink Background};
  428. text-align:right;
  429. {/block:IndexPage}
  430. }
  431.  
  432.  
  433. .stoley {
  434. max-width:225px;
  435. overflow-x:auto;
  436. }
  437.  
  438. .stoley img {
  439. max-width:225px;
  440. }
  441.  
  442.  
  443. .header a {
  444. margin-top:0px;font-size:50px;color:{color:Hover};-webkit-transition-duration:1s;font-family:'Monofett' cursive;letter-spacing:-1px;line-height:90%;font-style:italic;max-width:800px;
  445. }
  446.  
  447. .header a:hover {
  448. color:{color:Links};
  449. }
  450.  
  451. .perma {
  452. width:500px;
  453. opacity: 1;
  454. z-index: 10000;
  455. margin-top:0px;
  456. margin-left:0px;
  457. margin-right:auto;
  458. text-align:right;font-family:trebuchet ms; font-size:7px;letter-spacing:1px;text-transform:uppercase;
  459. }
  460.  
  461. u {
  462. color: #8DBA5C;
  463. border-bottom: 1px dashed #888;
  464. }
  465.  
  466. b.STRONG {
  467. letter-spacing:2px;
  468. font-size:9px;
  469. font-weight:bold;
  470. }
  471.  
  472. .tweek a {
  473. font-size:15px;
  474. line-height:100%;
  475. padding:2px;
  476. color:{color:Hover};
  477. -webkit-transition-duration:1s;z-index:999999;
  478. }
  479.  
  480. .tweek a: hover {
  481. color:{color:Link};
  482. }
  483. .cartman {
  484. margin-top:0;
  485. margin-left:0px;
  486. margin-right:auto;
  487. margin-bottom:0px;
  488. width:500px;
  489. text-align:left;
  490. background-color:#fff;
  491. max-height:150px;
  492. overflow-x:scroll;
  493. }
  494.  
  495. .wendy {
  496. font-size:9px;
  497. line-height:9px;
  498. letter-spacing:1px;
  499. text-align:center;width:500px;margin-left:auto;margin-right:auto;}
  500. }
  501.  
  502.  
  503. .video embed, .video object, .video iframe{
  504. {block:IndexPage}
  505. width:220px /**/ !important;{/block:IndexPage}
  506. {block:PermalinkPage}width:500px !important;
  507. {/block:PermalinkPage}
  508. height:auto !important;
  509. }
  510.  
  511.  
  512. .album-art {
  513. float: left;
  514. width: 100px;
  515. height: 100px;
  516. overflow: hidden;
  517. }
  518.  
  519. #meow{
  520. color:{color:Links};
  521. }
  522.  
  523. #meow a {
  524. display:relative;
  525. max-width:500px;
  526. text-align:center;color:{color:Links};
  527. }
  528.  
  529. #meow .cat {
  530. margin-top:-10px;
  531. filter: alpha(opacity = 0);
  532. opacity:0;
  533. -webkit-transition: all 1s ease-out;
  534. -moz-transition: all 1s ease-out;transition: all 1s ease-out;
  535. text-align:center;text-transform:lowercase;
  536. }
  537.  
  538. #meow:hover .cat {
  539. margin-top:5px;
  540. -webkit-transition: all 1s ease-out;
  541. -moz-transition: all 1s ease-out;transition: all 1s ease-out;
  542. filter: alpha(opacity = 80);
  543. filter: alpha(opacity = 100);
  544. opacity:100;
  545. }
  546.  
  547. </style>
  548.  
  549. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  550. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  551. </script>
  552.  
  553. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  554.  
  555. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  556.  
  557. <script type="text/javascript">
  558.  
  559. $(window).load(function () {
  560. $('.posts').masonry(),
  561. $('.masonryWrap').infinitescroll({
  562. navSelector : "div#navigation",
  563. // selector for the paged navigation (it will be hidden)
  564. nextSelector : "div#navigation a#nextPage",
  565. // selector for the NEXT link (to page 2)
  566. itemSelector : ".entry",
  567. // selector for all items you'll retrieve
  568. bufferPx : 10000,
  569. extraScrollPx: 10,
  570. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  571. loadingText : "<em></em>",
  572. },
  573. // call masonry as a callback.
  574. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  575. );
  576. });
  577. </script>
  578.  
  579.  
  580.  
  581. </head>
  582.  
  583. <body>
  584.  
  585. <div class="token">
  586.  
  587.  
  588.  
  589.  
  590.  
  591. <div id="content">
  592.  
  593. <div class="sidebar">
  594.  
  595.  
  596. <div class="header">
  597. <a href="/"><center>
  598. {block:IfHeaderImage}<img src="{image:Header}" width="250">{/block:IfHeaderImage}{block:IfNotHeaderImage}{Title}{/block:IfNotHeaderImage}
  599. </center></a>
  600. </div>
  601.  
  602.  
  603.  
  604. <div id="topmid">
  605. <center>
  606. {block:ifshowphoto}<a href="/"><img src="{image:sidebar}" height=auto width=150px></a>{/block:ifshowphoto}
  607. </center>
  608. </div>
  609. <br>
  610.  
  611.  
  612. <div class="wendy">{description}
  613.  
  614.  
  615. <br><br>
  616.  
  617.  
  618. <div style="font-family:trebuchet ms;font-size:9px;">
  619. <div id="meow">
  620. NAVIGATION
  621.  
  622. <div class="cat">
  623. <a href="/"><span>home&nbsp;&nbsp;</span></a>
  624. <a href="/ask"><span>message&nbsp;&nbsp;</span></a>
  625.  
  626. {block:iflinkone}
  627. <a href="{text:Custom Link One}">{text:Custom Link One Title}</a> &nbsp;&nbsp;
  628. {/block:iflinkone}
  629. {block:iflinktwo}
  630. <a href="{text:Custom Link Two}"> {text:Custom Link Two Title} </a> &nbsp;&nbsp;
  631. {/block:iflinktwo}
  632. {block:iflinkthree}
  633. <a href="{text:Custom Link Three}"> {text:Custom Link Three Title} </a> &nbsp;&nbsp;
  634. {/block:iflinkthree}
  635. {block:iflinkfour}
  636. <a href="{text:Custom Link Four}">{text:Custom Link Four Title} </a> &nbsp;&nbsp;
  637. {/block:iflinkfour}
  638. {block:iflinkfive}
  639. <a href="{text:Custom Link Five}"> {text:Custom Link Five Title} </a> &nbsp;&nbsp;
  640. {/block:iflinkfive}
  641. {block:iflinksix}
  642. <a href="{text:Custom Link Six}">{text:Custom Link Six Title} </a> &nbsp;&nbsp;
  643. {/block:iflinksix}
  644.  
  645. <a href="/archive"><span>archive&nbsp;&nbsp;</span></a>{block:HasPages}{block:Pages}
  646. <a href="{URL}"><span>{Label}&nbsp;&nbsp;</span></a>{/block:Pages}{/block:HasPages}
  647.  
  648. <a href="http://0-xum.tumblr.com"><span>theme</span></a></div>
  649.  
  650.  
  651.  
  652.  
  653. </center>
  654. </div>
  655. </div>
  656.  
  657. </div>
  658. {block:IndexPage}
  659. <div class="column navigation" id="navigation">
  660. {block:Pagination}
  661. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  662. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  663. </div>
  664. {/block:IndexPage}
  665.  
  666.  
  667.  
  668. </div>
  669. <div class="posts">
  670. {block:Posts}
  671. <div class="entry">
  672.  
  673.  
  674. {block:Text}
  675. {block:Title} <a href="{permalink}"><div class="heading">{title}</div></a> {/block:Title}
  676. {Body}
  677.  
  678. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{block:Date}{Month} {DayOfMonth}{DayOfMonthSuffix} {Year} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}| {NoteCountWithLabel}{/block:NoteCount}</div></a></div>{/block:IndexPage}
  679.  
  680. {/block:Text}
  681.  
  682. {block:Photo}
  683.  
  684. <div class="img">
  685. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  686. {block:PermalinkPage}<a href="{PhotoURL-HighRes}">{/block:PermalinkPage}
  687. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {block:IndexPage}width="225"{/block:IndexPage}{block:PermalinkPage}width="500"{/block:PermalinkPage}/>
  688. </a>
  689. </div>
  690.  
  691. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  692.  
  693. {block:PermalinkPage}
  694. {block:Caption}{Caption}{/block:Caption}<br>
  695. {/block:PermalinkPage}
  696.  
  697.  
  698.  
  699.  
  700. {block:PermalinkPage}
  701.  
  702.  
  703. <div class="perma">
  704. {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  705.  
  706. {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom}
  707. {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  708. {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
  709. <div class="cartman">{NoteCountWithLabel} | {Reblog} reblog</div>
  710. {/block:PermalinkPage}
  711.  
  712. {/block:Photo}
  713.  
  714.  
  715. {block:Photoset}
  716.  
  717.  
  718. {block:IndexPage}{block:Photos}<a href="{permalink}"><img src="{PhotoURL-500}" width="225" /></a>
  719. {/block:Photos}<div class="tweek"><a href="{Permalink}"><div class="craig"> {NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  720.  
  721. {block:PermalinkPage}
  722. {Photoset-500}<br>{block:Caption}{Caption}<br><br>{/block:Caption}
  723. {/block:PermalinkPage}
  724. {/block:Photoset}
  725.  
  726.  
  727. {block:Quote}
  728. <a href="{permalink}"><div class="heading"><i>{Quote}</i></div></a>
  729. {block:Source} <div align="right">― {Source}</div>{/block:Source}
  730.  
  731. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  732. {/block:Quote}
  733.  
  734.  
  735. {block:Link}
  736. <div class="heading"><a href="{URL}"{Target}>&rarr; {Name}</a></div>
  737. {block:Description} {Description}{/block:Description}
  738.  
  739. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  740. {/block:Link}
  741.  
  742. {block:Video}
  743. {block:PermalinkPage}<div class="video">{Video-250}
  744. </div>{/block:PermalinkPage}
  745.  
  746. {block:IndexPage}<div class="video" width="220">{Video-250}
  747. </div><div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  748. {/block:Video}
  749.  
  750.  
  751. {block:Chat}
  752. {block:Title}
  753. <div class="heading"><a href="{Permalink}">{Title}</a></div>
  754. {/block:Title}
  755. <div class="chat ul">
  756. {block:Lines}
  757. <li class="{Alt} user_{UserNumber}">
  758. {block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>
  759. {/block:Lines}</div></li>
  760.  
  761. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  762. {/block:Chat}
  763.  
  764.  
  765.  
  766. {block:Audio}{block:PermalinkPage}
  767. {block:AlbumArt}<div class="album-art"><img src="{AlbumArtURL}" height="100px"></div>{/block:AlbumArt}{/block:PermalinkPage}
  768. <div class="audioplayer">{AudioPlayerWhite}</div>{block:Caption}{Caption}{/block:Caption}
  769. {block:PermalinkPage}
  770. {block:TrackName}<br><br>
  771. <b>{TrackName}</b>
  772. {/block:TrackName} by {block:Artist}
  773. {Artist}
  774. {/block:Artist}<br>{PlayCountWithLabel}{/block:PermalinkPage}
  775.  
  776. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  777. {/block:Audio}
  778.  
  779.  
  780. {block:Answer}
  781. <div style="text-align:left;padding-left:5px;padding-right:5px;border-left: 2px solid {color:Links};border-right: 2px solid {color:Links};background-color:{color:blockquote};"><div class="stan">{Asker}: {Question}</div></div><div style="text-align:left;"><div class="kyle">{Answer}</div></div>
  782.  
  783. {block:IndexPage}<div class="tweek"><a href="{Permalink}"><div class="craig">{NoteCountWithLabel} | {Reblog} reblog</div></a></div>{/block:IndexPage}
  784. {/block:Answer}
  785.  
  786.  
  787. </div>
  788.  
  789. {/block:Posts}
  790. </div></div>
  791.  
  792.  
  793. </div>
  794.  
  795. <script language=JavaScript>
  796. <!--
  797. var message="";
  798. ///////////////////////////////////
  799. function clickIE() {if (document.all) {(message);return false;}}
  800. function clickNS(e) {if
  801. (document.layers||(document.getElementById&&!document.all)) {
  802. if (e.which==2||e.which==3) {(message);return false;}}}
  803. if (document.layers)
  804. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  805. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  806.  
  807. document.oncontextmenu=new Function("return false")
  808. // -->
  809.  
  810. </script>
  811. {/block:indexpage}
  812. </div>
  813. </div>
  814.  
  815. </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://0-xum.tumblr.com">0-xum</a></div>
  816.  
  817. </body>
  818. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement