Advertisement
wildthemes

alyssa theme

Aug 29th, 2012
1,436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.52 KB | None | 0 0
  1. <!--
  2. alyssa theme by wildthemes. do not remove credits, themes take alot of time and effort to make, you will be reported if you're seen using this theme with no credits.-->
  3.  
  4. <!--This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  5.  
  6. taking credits off/stealing/using my themes as a basecode is illegal.-->
  7.  
  8. <!--editted 30/09/12-->
  9.  
  10.  
  11. <head>
  12.  
  13.  
  14. <meta name="color:background" content="#ffffff" />
  15. <meta name="color:header background" content="#ffffff" />
  16. <meta name="text:reblog label" content="reblog" />
  17. <meta name="color:text" content="#000" />
  18. <meta name="color:title" content="#000" />
  19. <meta name="color:link" content="#828282" />
  20. <meta name="color:blockquote" content="#eee" />
  21. <meta name="color:scroll" content="#000" />
  22. <meta name="color:link shadows" content="#000"/>
  23. <meta name="if:shadow links" content="0"/>
  24. <meta name="if:rainbow links" content="0"/>
  25. <meta name="text:Link One" content=""/>
  26. <meta name="text:Link One Title" content=""/>
  27. <meta name="text:Link Two" content="" />
  28. <meta name="text:Link Two Title" content=""/>
  29. <meta name="text:Link Three" content="" />
  30. <meta name="text:Link Three Title" content=""/>
  31. <meta name="text:Link Four" content="" />
  32. <meta name="text:Link Four Title" content=""/>
  33.  
  34.  
  35. <script type="text/javascript"
  36. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script><script type="text/javascript" src="http://static.tumblr.com/o0thhnj/LCDma95ko/infinite.txt"></script><script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  37.  
  38.  
  39. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  40. <script type="text/javascript">
  41. $(window).load(function () {
  42. var $content = $('#content');
  43. $content.masonry({itemSelector: '.entry'}),
  44. $content.infinitescroll({
  45. navSelector : 'div#pagination',
  46. nextSelector : 'div#pagination a#nextPage',
  47. itemSelector : '.entry',
  48. loading: {
  49. finishedMsg: '',
  50. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  51. },
  52. bufferPx : 600,
  53. debug : false,
  54. },
  55. // call masonry as a callback.
  56. function( newElements ) {
  57. var $newElems = $( newElements );
  58. $newElems.hide();
  59. // ensure that images load before adding to masonry layout
  60. $newElems.imagesLoaded(function(){
  61. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );});});});</script>
  62. {/block:IndexPage}
  63.  
  64. {block:ifrainbowlinks}
  65. <script type='text/javascript'>
  66.  
  67.  
  68.  
  69.  
  70. //<![CDATA[
  71.  
  72.  
  73.  
  74.  
  75. var rate = 20;
  76.  
  77.  
  78.  
  79.  
  80. if (document.getElementById)
  81. window.onerror=new Function("return true")
  82.  
  83.  
  84.  
  85.  
  86. var objActive; // The object which event occured in
  87. var act = 0; // Flag during the action
  88. var elmH = 0; // Hue
  89. var elmS = 128; // Saturation
  90. var elmV = 255; // Value
  91. var clrOrg; // A color before the change
  92. var TimerID; // Timer ID
  93.  
  94.  
  95.  
  96.  
  97. if (document.all) {
  98. document.onmouseover = doRainbowAnchor;
  99. document.onmouseout = stopRainbowAnchor;
  100. }
  101. else if (document.getElementById) {
  102. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  103. document.onmouseover = Mozilla_doRainbowAnchor;
  104. document.onmouseout = Mozilla_stopRainbowAnchor;
  105. }
  106.  
  107.  
  108.  
  109.  
  110. function doRainbow(obj)
  111. {
  112. if (act == 0) {
  113. act = 1;
  114. if (obj)
  115. objActive = obj;
  116. else
  117. objActive = event.srcElement;
  118. clrOrg = objActive.style.color;
  119. TimerID = setInterval("ChangeColor()",100);
  120. }
  121. }
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. function stopRainbow()
  131. {
  132. if (act) {
  133. objActive.style.color = clrOrg;
  134. clearInterval(TimerID);
  135. act = 0;
  136. }
  137. }
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146. function doRainbowAnchor()
  147. {
  148. if (act == 0) {
  149. var obj = event.srcElement;
  150. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  151. obj = obj.parentElement;
  152. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  153. break;
  154. }
  155.  
  156.  
  157.  
  158.  
  159. if (obj.tagName == 'A' && obj.href != '') {
  160. objActive = obj;
  161. act = 1;
  162. clrOrg = objActive.style.color;
  163. TimerID = setInterval("ChangeColor()",100);
  164. }
  165. }
  166. }
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175. function stopRainbowAnchor()
  176. {
  177. if (act) {
  178. if (objActive.tagName == 'A') {
  179. objActive.style.color = clrOrg;
  180. clearInterval(TimerID);
  181. act = 0;
  182. }
  183. }
  184. }
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193. function Mozilla_doRainbowAnchor(e)
  194. {
  195. if (act == 0) {
  196. obj = e.target;
  197. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  198. obj = obj.parentNode;
  199. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  200. break;
  201. }
  202.  
  203.  
  204.  
  205.  
  206. if (obj.nodeName == 'A' && obj.href != '') {
  207. objActive = obj;
  208. act = 1;
  209. clrOrg = obj.style.color;
  210. TimerID = setInterval("ChangeColor()",100);
  211. }
  212. }
  213. }
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222. function Mozilla_stopRainbowAnchor(e)
  223. {
  224. if (act) {
  225. if (objActive.nodeName == 'A') {
  226. objActive.style.color = clrOrg;
  227. clearInterval(TimerID);
  228. act = 0;
  229. }
  230. }
  231. }
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240. function ChangeColor()
  241. {
  242. objActive.style.color = makeColor();
  243. }
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252. function makeColor()
  253. {
  254. // Don't you think Color Gamut to look like Rainbow?
  255.  
  256.  
  257.  
  258.  
  259. // HSVtoRGB
  260. if (elmS == 0) {
  261. elmR = elmV; elmG = elmV; elmB = elmV;
  262. }
  263. else {
  264. t1 = elmV;
  265. t2 = (255 - elmS) * elmV / 255;
  266. t3 = elmH % 60;
  267. t3 = (t1 - t2) * t3 / 60;
  268.  
  269.  
  270.  
  271.  
  272. if (elmH < 60) {
  273. elmR = t1; elmB = t2; elmG = t2 + t3;
  274. }
  275. else if (elmH < 120) {
  276. elmG = t1; elmB = t2; elmR = t1 - t3;
  277. }
  278. else if (elmH < 180) {
  279. elmG = t1; elmR = t2; elmB = t2 + t3;
  280. }
  281. else if (elmH < 240) {
  282. elmB = t1; elmR = t2; elmG = t1 - t3;
  283. }
  284. else if (elmH < 300) {
  285. elmB = t1; elmG = t2; elmR = t2 + t3;
  286. }
  287. else if (elmH < 360) {
  288. elmR = t1; elmG = t2; elmB = t1 - t3;
  289. }
  290. else {
  291. elmR = 0; elmG = 0; elmB = 0;
  292. }
  293. }
  294.  
  295.  
  296.  
  297.  
  298. elmR = Math.floor(elmR).toString(16);
  299. elmG = Math.floor(elmG).toString(16);
  300. elmB = Math.floor(elmB).toString(16);
  301. if (elmR.length == 1) elmR = "0" + elmR;
  302. if (elmG.length == 1) elmG = "0" + elmG;
  303. if (elmB.length == 1) elmB = "0" + elmB;
  304.  
  305.  
  306.  
  307.  
  308. elmH = elmH + rate;
  309. if (elmH >= 360)
  310. elmH = 0;
  311.  
  312.  
  313.  
  314.  
  315. return '#' + elmR + elmG + elmB;
  316. }
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329. //]]>
  330.  
  331.  
  332.  
  333.  
  334. </script>
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343. {/block:ifrainbowlinks}
  344.  
  345. <meta name="image:background" content="" />
  346.  
  347. <style type="text/css">
  348.  
  349. ::-webkit-scrollbar {width: 5px; height: 0px; background:{color:background};}
  350. ::-webkit-scrollbar-thumb {background-color: {color:scroll};}
  351.  
  352.  
  353. iframe#tumblr_controls {top: 1px !important;margin: 0 0 0 0;right:4px !important;position:fixed !important; position:absolute;z-index:99999999999;}
  354.  
  355. body, p {
  356. font-size:10px;
  357. letter-spacing:0px;
  358. font-family:helvetica;
  359. line-height:10px;
  360. text-transform:none;
  361. padding: 0px;
  362. margin-bottom: 4px;
  363. color: {color:text};
  364. }
  365.  
  366. body {
  367. background-color: {color:background};
  368. background-image:url({image:Background});
  369. background-attachment: fixed;
  370. background-repeat: repeat;
  371. }
  372.  
  373.  
  374. @font-face { font-family: "just realize"; src: url('http://static.tumblr.com/sghs9ih/2tFlu5il8/justrealize.ttf'); }
  375.  
  376.  
  377. #linkss a{
  378. color:black;
  379. font-family: just realize;
  380. margin-right:5px;
  381. margin-left:5px;
  382. font-size: 25px;
  383. margin-top: 5px;
  384. padding-top:10px;
  385. text-decoration:none;
  386. -moz-transition: all .2s;
  387. -webkit-transition: all .2s;
  388. -o-transition: all .2s;
  389. transition: all .2;
  390. line-height:0px;
  391. }
  392.  
  393. #linkss a:hover{
  394. color:{color:navhover};
  395. {block:ifshadowlinks}
  396. text-shadow:1px 1px 3px {color:link shadow};{/block:ifshadowlinks}
  397. }
  398.  
  399.  
  400. @font-face {
  401. font-family: "bebas";
  402. src: url('http://static.tumblr.com/exioynw/NBFm4wy7z/bebasneue.otf');
  403. }
  404.  
  405. @font-face {
  406. font-family: "planer";
  407. src: url('http://static.tumblr.com/exioynw/rIGm8hja8/planer_reg.ttf');
  408. }
  409.  
  410.  
  411. a {
  412. text-decoration:none;
  413. color:{color:text};
  414. -webkit-transition: all 0.4s linear;
  415. -moz-transition: all 0.4s linear;
  416. transition: all 0.4s linear;
  417. }
  418.  
  419. a:link, a:active, a:visited{
  420. text-decoration:none;
  421. color: {color:link};
  422. }
  423.  
  424. a:hover{
  425. color: {color:link};
  426. letter-spacing: 0px;
  427. }
  428.  
  429. div#all{
  430. width:100%;
  431. height:100%;
  432. z-index:-100;
  433. overflow-x:hidden;
  434. overflow-y:scroll;
  435. }
  436.  
  437. div#center{
  438. margin-left: 0px;
  439. width: 100%;
  440. height: auto;
  441. }
  442.  
  443. div#content {
  444. width: 1500px;
  445. margin-left:40px;
  446. float:left;
  447. margin-top:150px;
  448. position: relative;
  449. }
  450.  
  451. .entry {
  452. float:left;
  453. height:auto;
  454. margin:1px;
  455. background-color: transparent;
  456. {block:IndexPage}
  457. width:250px;
  458. {/block:IndexPage}
  459. {block:PermalinkPage}
  460. width:500px;
  461. {/block:PermalinkPage}
  462. }
  463.  
  464. .wildthemes a {font-family: calibri;
  465. font-size: 11px;
  466. letter-spacing:1px;
  467. text-transform:uppercase;}
  468.  
  469. .entry .wildthemes{
  470.  
  471. position:absolute;
  472. width:auto;
  473. height:20px;
  474. padding-top:0px;
  475. padding-right: 7px;
  476. padding-bottom:7px;
  477. margin-left: 0px;
  478. overflow:hidden;
  479. bottom: 20px;
  480.  
  481. line-height:90%;
  482. text-align:center;
  483. padding-left: 0px;
  484. padding-right: 0px;
  485. opacity:0.0;
  486.  
  487.  
  488. -webkit-transition: all 0.3s linear;
  489. -moz-transition: all 0.3s linear;
  490. transition: all 0.3s linear;
  491. background-color:white;
  492.  
  493. }
  494. @font-face { font-family: "littlefont"; src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf'); }
  495.  
  496.  
  497. .entry:hover .wildthemes{
  498. overflow:visible;
  499. -webkit-transition: opacity 0.5s linear; opacity: 0.8;
  500. transition: all 0.4s linear;
  501. margin-left: 0px;
  502. background-color:white;
  503. bottom: 20px;padding-right: 7px;
  504.  
  505.  
  506. opacity:0.8;
  507.  
  508. -webkit-transition: all 0.3s linear;
  509. -moz-transition: all 0.3s linear;
  510. transition: all 0.3s linear; }
  511. }
  512.  
  513. .wildthemes:hover{
  514. opacity: 1;
  515. width:100px;
  516. -webkit-transition: all 0.5s linear;
  517. -moz-transition: all 0.5s linear;
  518. transition: all 0.5s linear; -moz-box-shadow: 0 0 15px {color:glow colour};
  519.  
  520. display: inline-block;
  521. }
  522. }
  523.  
  524. .entry:hover .details {
  525. opacity: 1.0;
  526. margin:12px 0px 0px 0px;
  527. filter: alpha(opacity = 100);
  528. -webkit-transition: all .25s ease-in-out;
  529. -moz-transition: all .25s ease-in-out;
  530. -o-transition: all .25s ease-in-out;
  531. transition: all .25s ease-in-out;
  532. }
  533.  
  534.  
  535. .permahover {
  536. text-align: right;
  537. line-height:200%;
  538. opacity: 0.0;
  539. filter: alpha(opacity = 0);
  540. font-size: 9px;
  541. line-height: 9px;
  542. text-transform: uppercase;
  543. }
  544.  
  545. .entry:hover .permahover {
  546. text-align: center;
  547. opacity: 1;
  548. filter: alpha(opacity = 50);
  549.  
  550.  
  551. }
  552.  
  553. .text {
  554. padding: 0px;
  555. }
  556.  
  557.  
  558.  
  559. .entry:hover .textperma {
  560. opacity: 1;
  561. filter: alpha(opacity = 100);
  562. -webkit-transition: all ease-in 250ms;
  563. -moz-transition: all ease-in 250ms;
  564. -o-transition: all ease-in 250ms;
  565. -ms-transition: all ease-in 250ms;
  566. transition: all ease-in 250ms;
  567. }
  568.  
  569.  
  570. .entry:hover{{block:ifglowingimages}
  571. -webkit-transition: all 0.4s ease-out;
  572. -moz-transition: all 0.4s ease-out;
  573. transition: all 0.4s ease-out;
  574. -moz-box-shadow: 0 0 15px {color:glow colour};
  575. -webkit-box-shadow: 0 0 15px {color:glow colour};
  576. box-shadow: 0 0 15px {color:glow colour};
  577. -webkit-transition: all .25s ease-in-out;
  578. -moz-transition: all .25s ease-in-out;
  579. -o-transition: all .25s ease-in-out;
  580. transition: all .25s ease-in-out;{/block:ifglowingimages}
  581. }
  582.  
  583. .perma
  584. {
  585. opacity: 0.0;
  586. filter: alpha(opacity = 0);
  587. margin-top: -21px;
  588. width: px;
  589. height: 30px;
  590. line-height: 30px;
  591. font-size: 9px;
  592. position:absolute;
  593. text-align: center;
  594. z-index:1;
  595. color: {color:permalink};
  596.  
  597. }
  598. a.p
  599. {
  600.  
  601.  
  602. color: {color:permalink};
  603. }
  604. .entry:hover .perma {
  605.  
  606. -webkit-transition: opacity 0.4s linear;
  607. opacity: 1;
  608. -moz-transition: all 0.4s linear;
  609. transition: all 0.4s linear;
  610. filter: alpha(opacity = 100);
  611.  
  612. }
  613.  
  614. div#title{
  615. font-family:just realize;
  616. font-size:45px;
  617. padding:20px;
  618. text-shadow: 1px 1px 3px black;
  619. color:{color:link}
  620. }
  621.  
  622. div#titlee{
  623. font-family:just realize;padding:8px;
  624. text-align:left;
  625. font-size:30px;
  626. color:{color:link}
  627. }
  628.  
  629.  
  630. select {
  631. font-size: 9px;
  632. width: 100px;
  633. margin-left: 10px;
  634.  
  635. }
  636. option {
  637. font-size: 9px;
  638. text-align: left;
  639.  
  640. }
  641. input[type=button]
  642. {
  643. font-size: 9px;
  644. }
  645.  
  646.  
  647.  
  648. .likep {
  649. width: 21px;
  650. height: 20px;
  651. overflow: hidden;
  652. position: relative;
  653. z-index: 9999999;
  654. position: absolute;
  655. margin-top: 26px;
  656. margin-left: 5px;
  657. }
  658. .rep {
  659. width: 24px;
  660. height: 20px;
  661. overflow: hidden;
  662. position: relative;
  663. z-index: 9999999;
  664. position: absolute;
  665. margin-top: 26px;
  666. margin-left: 29px;
  667. }
  668. .likep a:hover {
  669. background-position: 0px 0px;
  670. }
  671. .likep a {
  672. background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
  673. background-position: 0px 0px;
  674. display: block;
  675. z-index: 9999999;
  676. webkit-transition: all 0s linear;
  677. -webkit-transition: all 0s linear;
  678. -moz-transition: all 0s linear;
  679. transition: all 0s linear;
  680. }
  681. .likep img {
  682. width: 21px;
  683. height: 20px;
  684. webkit-transition: all 0.2s linear;
  685. -webkit-transition: all 0.2s linear;
  686. -moz-transition: all 0.2s linear;
  687. transition: all 0.2s linear;
  688. }
  689. .rep img{
  690. width: 24px;
  691. height: 20px;
  692. line-height: 30px;
  693. display: inline;
  694. }
  695.  
  696. .not { position: absolute;
  697. background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png");
  698. height: 20px;
  699. font-size: 11px;
  700. line-height: 20px;
  701. color: #fff;
  702. position: absolute;
  703. margin-top: 26px;
  704. margin-left: 56px;
  705. padding-left: 4px;
  706. padding-right: 4px;
  707. -moz-border-radius: 2px;
  708. border-radius: 2px;
  709. }
  710. .not a{
  711. color: #fff;
  712. font-weight: none;
  713. font-family: arial, helvetica, sans-serif;
  714. }
  715. .entry:hover .not, .entry:hover .rep, .entry:hover .likep {
  716. opacity: 1.0;
  717. filter: alpha(opacity = 100);
  718. }
  719. .not:hover , .rep:hover, .likep:hover {
  720. opacity: 1!important;
  721. filter: alpha(opacity = 100)!important;
  722. }
  723.  
  724.  
  725.  
  726. .entry:hover .permalink{
  727. width:100px;
  728. background-color:white;
  729. margin-left: 240px;
  730. color: #000;
  731. margin-top: 0px;
  732. padding-top: 5px;
  733. height: 12px;
  734. overflow:visible;
  735. opacity:.9;
  736. -webkit-transition: all 0.4s linear;
  737. -webkit-transition: all 0.4s linear;
  738. -moz-transition: all 0.4s linear;
  739. transition: all 0.4s linear;
  740. }
  741.  
  742.  
  743.  
  744. #infscr-loading{
  745. opacity:0.0;
  746. }
  747.  
  748. .title{
  749. font-family: planer;
  750. font-size:20px;
  751. line-height:20px;
  752. color: {color:title};
  753. }
  754. blockquote{
  755. padding:0px 0px 2px 5px;
  756. margin:0px 0px 2px 4px;
  757. border-left: 1px solid #555555;
  758. border-right: 1px solid #555555;
  759. background:{color:blockquote};
  760.  
  761. }
  762.  
  763. #description{
  764. text-align:center;
  765. margin-left:-7px;
  766. float:left;
  767. position:fixed;
  768. padding-top:5px;
  769. padding-bottom:5px;
  770. width:100%;
  771. background:{color:header background};
  772. opacity:.5;
  773. top:0px;
  774. height:auto;
  775. z-index:9;
  776. line-height: 10px;
  777. color: black;
  778. -webkit-transition: 0.7s linear;
  779. -webkit-transition: all 0.7s ease-in-out;
  780. -moz-transition: all 0.7s ease-in-out;
  781. -o-transition: all 0.7s ease-in-out;
  782. }
  783.  
  784. #description:hover{
  785. opacity:.8;
  786. -webkit-transition: 0.7s linear;
  787. -webkit-transition: all 0.7s ease-in-out;
  788. -moz-transition: all 0.7s ease-in-out;
  789. -o-transition: all 0.7s ease-in-out;
  790. }
  791.  
  792.  
  793. {CustomCSS}
  794. </style>
  795.  
  796. <title>{title}</title>
  797.  
  798. <link rel="shortcut icon" href="{PortraitURL-24}">
  799. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  800. <meta name="viewport" content="width=820" />
  801.  
  802. <script type="text/javascript">
  803. $(document).ready(function () {
  804. $('li.drawer div:nth-child(2)').hide();
  805. $('li.drawer h5').click(function () {
  806. if ($(this).hasClass('open')) {
  807. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
  808. else {
  809. $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
  810. $(this).next().slideDown();
  811. $(this).addClass('open');}
  812. });
  813. });
  814. </script>
  815.  
  816. </head>
  817. <body>
  818. </div>
  819. <div id="description"><div id="title"><a href="/">{Title}</a></div>
  820. <br>{description}
  821. <center><br>
  822. <div id="linkss"><br>
  823. <a href="{text:Link One}">{text:Link One Title}</a> -
  824. <a href="{text:Link Two}">{text:Link Two Title}</a> -
  825. <a href="{text:Link Three}">{text:Link Three Title}</a> -
  826. <a href="{text:Link Four}">{text:Link Four Title}</a> -
  827. <a href="wildthemes.tumblr.com">theme</a>
  828. <Br><Br></center></div>
  829. </div>
  830.  
  831. <div id="center">
  832.  
  833. <div id="content">
  834.  
  835. {block:Posts}
  836.  
  837. <div class="entry">
  838.  
  839.  
  840.  
  841. {block:Text}
  842. {block:Title}<span class="title">{Title}</span>{/block:Title}
  843. <div class="caption"><span class="entrytext">{Body}</span></div>
  844. {block:IndexPage}<a href="{permalink}"><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>{/block:IndexPage}
  845. {/block:Text}
  846.  
  847. {block:Link}
  848. <div id="titlee"><a href="{URL}" class="title">{Name}</a></div>
  849. {block:Description}{Description}{/block:Description}
  850. <div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>{/block:Link}
  851.  
  852. {block:Photo}
  853. {block:indexpage} <div class="wildthemes"><p><a href="{permalink}">{NoteCountwithLabel}</a> | <a href="{ReblogURL}" target="_blank">{text:reblog label}</a> | <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');">♥</a> </div>
  854.  
  855. <img src="{PhotoURL-HighRes}" width="100%"/>
  856. {/block:indexpage}
  857. {block:permalinkpage}
  858. <a href="{PhotoURL-HighRes}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a>
  859. {/block:permalinkpage} {block:IndexPage}
  860. {/block:IndexPage}
  861. {/block:Photo}
  862.  
  863. {block:Photoset}
  864. <center>
  865. {block:IndexPage}{Photoset-400}{/block:IndexPage}
  866. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  867. </center><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
  868. {/block:IndexPage}
  869.  
  870. {/block:Photoset}
  871.  
  872. {block:Quote}
  873. <div style="margin-left:3px;">
  874. {Quote}</span>
  875. </div><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
  876. {/block:Quote}
  877.  
  878. {block:Chat}
  879. <div style="margin-left:3px;">
  880. {block:Title}<div id="titlee">{Title}</div>{/block:Title}
  881. {block:Lines}
  882. {block:Label}
  883. <b>{Label}</b>
  884. {/block:Label}
  885. {Line}<br>
  886. {/block:Lines}
  887. </div><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
  888. {/block:Chat}
  889.  
  890. {block:Audio}<div style="height:0px;background-color:black;opacity:0.1;width:100%;margin-top:10px;margin-bottom:5px;"></div>
  891. <center>{AudioPlayerBlack}
  892. {block:Caption}{Caption}{/block:Caption}</center>
  893. {/block:Audio}
  894.  
  895. {block:Answer}<img src="{AskerPortraitURL-24}" align="left" z-index: 1; style="padding:2px; border:1px solid #eeeeee"/>{Asker} asked:<br>{Question}<br><P><br>I replied:<br> {Answer}
  896. <div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
  897. {/block:Answer}
  898.  
  899. {block:Video}
  900. {block:IndexPage}
  901. <center>
  902. {Video-400}</center><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
  903. {/block:IndexPage}
  904. {block:PermalinkPage}
  905. <center>
  906. {Video-500}</center>
  907. {/block:PermalinkPage}
  908. {block:Video}
  909.  
  910. {block:PermalinkPage}
  911. {block:Caption}{Caption}<div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:5px;margin-bottom:5px;"></div>{/block:Caption}
  912. {block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}
  913. {/block:PermalinkPage}
  914.  
  915.  
  916. {block:PostNotes}
  917. </center></center>
  918. <div align="left">{PostNotes}</div>
  919. {/block:PostNotes}
  920. </div>
  921.  
  922. {/block:Posts}
  923.  
  924.  
  925. {block:IndexPage}
  926. {block:Pagination}
  927. <div id="pagination">
  928. {block:NextPage}
  929. <a id="nextPage" href="{NextPage}"></a>
  930. {/block:NextPage}
  931. {block:PreviousPage}
  932. <a href="{PreviousPage}"></a>
  933. {/block:PreviousPage}
  934. </div>
  935. {/block:Pagination}
  936. {/block:IndexPage}
  937. </div>
  938. <BODY onselectstart="return false;" ondragstart="return false;">
  939. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  940. <span id="scriptsinsert"> </span>
  941. </body>
  942.  
  943. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement