wheretimeisendless

Theme #3

Jun 18th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.64 KB | None | 0 0
  1. <!--
  2. theme by youroliviachachi.
  3. please don't remove the credit.
  4. -->
  5.  
  6. <link href='http://fonts.googleapis.com/css?family=Coming+Soon' rel='stylesheet' type='text/css'>
  7. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  8.  
  9. <html lang="en">
  10. <head>
  11.  
  12. {block:ifbubblecursor}
  13. <script type="text/javascript">
  14. // <![CDATA[
  15. var colours=new Array("{color:bubbles}", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}");
  16. var bubbles=20;
  17.  
  18. /****************************
  19. * JavaScript Bubble Cursor *
  20. * (c) 2010 mf2fm web-design *
  21. * http://www.mf2fm.com/rv *
  22. * DON'T EDIT BELOW THIS BOX *
  23. ****************************/
  24.  
  25. var x=ox=400;
  26. var y=oy=300;
  27. var swide=800;
  28. var shigh=600;
  29. var sleft=sdown=0;
  30. var bubb=new Array();
  31. var bubbx=new Array();
  32. var bubby=new Array();
  33. var bubbs=new Array();
  34.  
  35. window.onload=function() { if (document.getElementById) {
  36. var rats, div;
  37. for (var i=0; i<bubbles; i++) {
  38. rats=createDiv("3px", "3px");
  39. rats.style.visibility="hidden";
  40.  
  41. div=createDiv("auto", "auto");
  42. rats.appendChild(div);
  43. div=div.style;
  44. div.top="1px";
  45. div.left="0px";
  46. div.bottom="1px";
  47. div.right="0px";
  48. div.borderLeft="1px solid "+colours[3];
  49. div.borderRight="1px solid "+colours[1];
  50.  
  51. div=createDiv("auto", "auto");
  52. rats.appendChild(div);
  53. div=div.style;
  54. div.top="0px";
  55. div.left="1px";
  56. div.right="1px";
  57. div.bottom="0px"
  58. div.borderTop="1px solid "+colours[0];
  59. div.borderBottom="1px solid "+colours[2];
  60. div=createDiv("auto", "auto");
  61. rats.appendChild(div);
  62. div=div.style;
  63. div.left="1px";
  64. div.right="1px";
  65. div.bottom="1px";
  66. div.top="1px";
  67. div.backgroundColor=colours[4];
  68. div.opacity=0.5;
  69. if (document.all) div.filter="alpha(opacity=50)";
  70.  
  71. document.body.appendChild(rats);
  72. bubb[i]=rats.style;
  73. }
  74. set_scroll();
  75. set_width();
  76. bubble();
  77. }}
  78.  
  79.  
  80.  
  81. function bubble() {
  82. var c;
  83. if (x!=ox || y!=oy) {
  84. ox=x;
  85. oy=y;
  86. for (c=0; c<bubbles; c++) if (!bubby[c]) {
  87. bubb[c].left=(bubbx[c]=x)+"px";
  88. bubb[c].top=(bubby[c]=y)+"px";
  89. bubb[c].width="3px";
  90. bubb[c].height="3px"
  91. bubb[c].visibility="visible";
  92. bubbs[c]=3;
  93. break;
  94. }
  95. }
  96. for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  97. setTimeout("bubble()", 40);
  98. }
  99.  
  100. function update_bubb(i) {
  101. if (bubby[i]) {
  102. bubby[i]-=bubbs[i]/2+i%2;
  103. bubbx[i]+=(i%5-2)/5;
  104. if (bubby[i]>sdown && bubbx[i]>0) {
  105. if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  106. bubb[i].width=bubbs[i]+"px";
  107. bubb[i].height=bubbs[i]+"px";
  108. }
  109. bubb[i].top=bubby[i]+"px";
  110. bubb[i].left=bubbx[i]+"px";
  111. }
  112. else {
  113. bubb[i].visibility="hidden";
  114. bubby[i]=0;
  115. return;
  116. }
  117. }
  118. }
  119.  
  120. document.onmousemove=mouse;
  121. function mouse(e) {
  122. set_scroll();
  123. y=(e)?e.pageY:event.y+sleft;
  124. x=(e)?e.pageX:event.x+sdown; }
  125.  
  126. window.onresize=set_width;
  127. function set_width() {
  128. if (document.documentElement && document.documentElement.clientWidth) {
  129. swide=document.documentElement.clientWidth;
  130. shigh=document.documentElement.clientHeight;
  131. }
  132. else if (typeof(self.innerHeight)=="number") {
  133. swide=self.innerWidth;
  134. shigh=self.innerHeight;
  135. }
  136. else if (document.body.clientWidth) {
  137. swide=document.body.clientWidth;
  138. shigh=document.body.clientHeight;
  139. }
  140. else {
  141. swide=800;
  142. shigh=600;
  143. }
  144. }
  145.  
  146. window.onscroll=set_scroll;
  147. function set_scroll() {
  148. if (typeof(self.pageYOffset)=="number") {
  149. sdown=self.pageYOffset;
  150. sleft=self.pageXOffset;
  151. }
  152. else if (document.body.scrollTop || document.body.scrollLeft) {
  153. sdown=document.body.scrollTop;
  154. sleft=document.body.scrollLeft;
  155. }
  156. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  157. sleft=document.documentElement.scrollLeft;
  158. sdown=document.documentElement.scrollTop;
  159. }
  160. else {
  161. sdown=0;
  162. sleft=0;
  163. }
  164. }
  165.  
  166. function createDiv(height, width) {
  167. var div=document.createElement("div");
  168. div.style.position="absolute";
  169. div.style.height=height;
  170. div.style.width=width;
  171. div.style.overflow="hidden";
  172. return (div);
  173. }
  174. // ]]>
  175. </script>
  176. {/block:ifbubblecursor}
  177.  
  178. <script type="text/javascript">
  179. // <![CDATA[
  180. var bgcolour="{color:sidebanner 2}"; // background colour
  181. var fgcolour="{color:sidebanner 1}"; // foreground colour
  182. var speed=100; // speed of bubbling, lower is faster
  183. var shades=10; // number of shades of bubble
  184.  
  185. /****************************
  186. * Bubbling Text Effect *
  187. *(c) 2003-6 mf2fm web-design*
  188. * http://www.mf2fm.com/rv *
  189. * DON'T EDIT BELOW THIS BOX *
  190. ****************************/
  191. var bubbcol=new Array();
  192. var bubbler, bubbtxt;
  193. var bubbchr=new Array();
  194. window.onload=function() { if (document.getElementById) {
  195. for (bubbler=0; bubbler<=shades; bubbler++) {
  196. bubbtxt="#";
  197. for (var i=1; i<6; i+=2) {
  198. var bg=parseInt(bgcolour.substring(i,i+2),16);
  199. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  200. }
  201. bubbcol[bubbler+1]=bubbtxt;
  202. }
  203. bubbler=document.getElementById("bubble");
  204. bubbtxt=bubbler.firstChild.nodeValue;
  205. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  206. for (var i=0; i<bubbtxt.length; i++) {
  207. var bubbi=document.createElement("span");
  208. bubbi.setAttribute("id", "bubb"+i);
  209. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  210. bubbler.appendChild(bubbi);
  211. }
  212. bubbler=setInterval ("bubbling()", speed);
  213. }}
  214.  
  215. function dechex(dec) {
  216. var hex=dec.toString(16);
  217. if (dec<16) return "0"+hex;
  218. else return hex;
  219. }
  220.  
  221. function bubbling() {
  222. for (var i=0; i<bubbtxt.length; i++) {
  223. var bubbme=document.getElementById("bubb"+i);
  224. if (bubbchr[i]) {
  225. bubbme.style.color=bubbcol[bubbchr[i]];
  226. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  227. }
  228. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  229. }
  230. }
  231. // ]]>
  232. </script>
  233.  
  234. <!-- DEFAULT VARIABLES -->
  235. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  236. <link href='http://fonts.googleapis.com/css?family=Give+You+Glory|Fredoka+One' rel='stylesheet' type='text/css'>
  237. <meta name="color:background" content="#ddd"/>
  238. <meta name="color:text" content="#000"/>
  239. <meta name="color:title" content="#000"/>
  240. <meta name="color:link" content="#000"/>
  241. <meta name="color:hover" content="#fff"/>
  242. <meta name="image:sidebar" content="1"/>
  243. <meta name="image:background" content=""/>
  244. <meta name="image:permalink hover background" content=""/>
  245. <meta name="if:posts dashed border" content="1"/>
  246. <meta name="if:sidebar dashed border" content="1"/>
  247. <meta name="if:posts solid border" content="0"/>
  248. <meta name="if:sidebar solid border" content="0"/>
  249. <meta name="if:show photo" content="0"/>
  250. <meta name="if:link shadow" content="1"/>
  251. <meta name="if:links hover background image" content="1"/>
  252. <meta name="if:permalink hover background image" content="1"/>
  253. <meta name="if:dashes under blogtitle" content="1"/>
  254. <meta name="if:infinite scrolling" content="1"/>
  255. <meta name="if:show arrows" content="0"/>
  256. <meta name="if:show blog title" content="1"/>
  257. <meta name="if:tiny scrollbar" content="1/">
  258. <meta name="color:sidebanner 1" content="#000000"/>
  259. <meta name="color:sidebanner 2" content="#CCCCCC"/>
  260. <meta name="text:sidebanner" content="your text here" />
  261. <meta name="text:Heart Link" content="" />
  262. <meta name="text:Drop Down Link" content="" />
  263. <meta name="text:Custom Link One" content="" />
  264. <meta name="text:Custom Link One Title" content="" />
  265. <meta name="text:Custom Link Two" content="" />
  266. <meta name="text:Custom Link Two Title" content="" />
  267. <meta name="text:Custom Link Three" content="" />
  268. <meta name="text:Custom Link Three Title" content="" />
  269. <meta name="text:Link One" content=""/>
  270. <meta name="text:Link One Title" content=""/>
  271. <meta name="text:Link Two" content="" />
  272. <meta name="text:Link Two Title" content=""/>
  273. <meta name="text:Link Three" content="" />
  274. <meta name="text:Link Three Title" content=""/>
  275. <meta name="text:Link Four" content="" />
  276. <meta name="text:Link Four Title" content=""/>
  277.  
  278.  
  279.  
  280. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  281.  
  282. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  283.  
  284. <style type="text/css">
  285.  
  286. @font-face { font-family: "written in the stars";
  287. src: url('http://static.tumblr.com/nsunyax/Ivrm14am8/writteninthestars.ttf');}
  288.  
  289. @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
  290.  
  291. a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  292.  
  293. .fufu {width:227px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  294.  
  295. .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
  296.  
  297. #biter
  298.  
  299. #bite a {display:block}
  300.  
  301. #bite .death {margin-top:-45px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  302.  
  303. #bite:hover .death {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
  304.  
  305.  
  306. {block:iftinyscrollbar}
  307. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  308.  
  309. ::-webkit-scrollbar-thumb { background-color: #ffffff; -webkit-border-radius: 1ex; border: 1px solid black;}
  310. {/block:iftinyscrollbar}
  311.  
  312. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  313.  
  314. body {
  315. margin:0px;
  316. background-color: {color:Background};
  317. background-image:url({image:Background});
  318. background-attachment: fixed;
  319. background-repeat: repeat;}
  320. body, div, p, textarea, submit, input{
  321. font-family: "Coming Soon", cursive;
  322.  
  323. font-size: 12px;
  324. line-height:11px;
  325. letter-spacing:0px;
  326. color:{color:Text};
  327. }
  328.  
  329. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  330.  
  331. ::-webkit-scrollbar-thumb { background-color: #eeeeee; -webkit-border-radius: 1ex; border: 1px solid black;}
  332.  
  333. p {
  334. margin:0px;
  335. margin-top:0px;
  336. }
  337.  
  338.  
  339. a:link, a:active, a:visited{
  340. color: {color:Link};
  341. text-decoration: none;
  342. }
  343.  
  344. a:hover {
  345. color:{color:Hover};
  346. text-decoration: underline;
  347. -webkit-transition: color 0.3s ease-out;
  348. -moz-transition: color 0.3s ease-out;
  349. {block:iflinkshadow}text-shadow:1px 1px 5px #000;{/block:iflinkshadow}
  350. }
  351.  
  352. div#center{
  353. margin:auto;
  354. position:relative;
  355. width:840px;
  356. background-color:;
  357. overflow:auto;
  358. overflow-y:hidden;
  359. }
  360.  
  361. div#sidebar{
  362. position:fixed !important;
  363. width:300px;
  364. height:auto;
  365. margin-top: 50px;
  366. margin-left: 600px;
  367. padding: 2px;
  368. line-height:11px;
  369. letter-spacing:0px;
  370. margin-bottom: 6px;
  371. font-family: "calibri";
  372. font-size: 10px;
  373. line-height:11px;
  374. letter-spacing:0px;
  375. margin-bottom: 6px;
  376. background-color:#fff;
  377. {block:ifsidebarsolidborder}border: 1px solid #aaa !important;{/block:ifsidebarsolidborder}
  378. {block:ifsidebardashedborder}border: 1px dashed #aaaaaa;{/block:ifsidebardashedborder}
  379. }
  380.  
  381. #homelink {
  382. background: {color:Background};
  383. display: inline-block;
  384. line-height: 20px;
  385. height: 20px;
  386. width: 66px;
  387. font-family: tinytots;
  388. font-size: 8px;
  389. text-transform: lowercase;
  390. text-align: center;
  391. border-right: 1px dashed {color:link};
  392. border-left: 1px dashed {color:link};
  393. }
  394.  
  395. #asklink {
  396. background: {color:Background};
  397. display: inline-block;
  398. line-height: 20px;
  399. height: 20px;
  400. width: 76px;
  401. font-family: tinytots;
  402. font-size: 8px;
  403. text-transform: lowercase;
  404. text-align: center;
  405. border-right: 1px dashed {color:link};
  406. margin-left: -2px;
  407. }
  408.  
  409.  
  410. #thirdlink {
  411. background: {color:Background};
  412. display: inline-block;
  413. line-height: 20px;
  414. height: 20px;
  415. width: 76px;
  416. font-family: tinytots;
  417. font-size: 8px;
  418. text-transform: lowercase;
  419. text-align: center;
  420. border-right: 1px dashed {color:link};
  421. margin-left: -2px;
  422. }
  423.  
  424. #drop {
  425. background: {color:Background};
  426. display: inline-block;
  427. line-height: 20px;
  428. height: 20px;
  429. width: 76px;
  430. text-align: center;
  431. margin-left: -2px;
  432. font-family: tinytots;
  433. font-size: 8px;
  434. text-transform: lowercase;
  435. border-right: 1px dashed {color:link};
  436. margin-left: -2px;
  437. transition: all 0.5s ease;
  438. -o-transition-transition: all 0.5s ease;
  439. -webkit-transition: all 0.5s ease;
  440. -moz-transition: all 0.5s ease;
  441. }
  442.  
  443. #drop:hover #down{
  444. opacity:1;
  445. margin-top:2px;
  446. overflow:hidden;
  447. height: 20px;
  448. line-height: 20px;
  449. background-color:transparent;
  450. z-index:1000;
  451. height:auto;
  452. font-family: tinytots;
  453. font-size: 8px;
  454. text-transform: lowercase;
  455. -o-transition-transition: all 0.5s ease;
  456. -webkit-transition: all 0.5s ease;
  457. -moz-transition: all 0.5s ease;
  458. }
  459.  
  460.  
  461.  
  462. #down {
  463. position:absolute;
  464. margin-top:-20px;
  465. opacity:0;
  466. width:77px;
  467. font-family: handy00;
  468. font-size: 8px;
  469. text-transform: lowercase;
  470. overflow:hidden;
  471. transition: all 0.5s ease;
  472. -o-transition-transition: all 0.5s ease;
  473. -webkit-transition: all 0.5s ease;
  474. -moz-transition: all 0.5s ease;
  475. border-right: 1px dashed {color:link};
  476. border-left: 1px dashed {color:link};
  477. border-bottom: 1px dashed {color:link};
  478. }
  479.  
  480. #down a{
  481. background-color:#fff;
  482. text-align:center;
  483. display:block;
  484. line-height:20px;
  485. font-family: handy00;
  486. font-size: 8px;
  487. text-transform: lowercase;
  488. transition: all 0.5s ease;
  489. -o-transition-transition: all 0.5s ease;
  490. -webkit-transition: all 0.5s ease;
  491. -moz-transition: all 0.5s ease;
  492. }
  493.  
  494. div#content{
  495. float:right;
  496. width:500px;
  497. margin-right: 320px;
  498. margin-top: 0px;
  499. padding:2px;
  500. padding-top: 2px;
  501. background: #fff;
  502. {block:ifpostssolidborder}border: 1px solid #aaa !important;{/block:ifpostssolidborder}
  503. {block:ifpostsdashedborder}border: 1px dashed #aaaaaa;{/block:ifpostsdashedborder}
  504. }
  505.  
  506.  
  507. #entry .perma a{
  508. color:#000;
  509. }
  510.  
  511. #entry .perma{
  512. text-transform:lowercase;
  513. width:170px;
  514. height: 17px;
  515. padding:0px;
  516. position: absolute;
  517. font-family: handy00;
  518. font-size: 8px;
  519. line-height: 17px;
  520. text-align: center;
  521. margin-top: 1px;
  522. margin-left: 1px;
  523. overflow:hidden;
  524. opacity: 0.0;
  525. background-color:#fff;
  526. border-top-right-radius:0px;
  527. border-bottom-right-radius:12px;
  528. border-top-left-radius:0px;
  529. border-bottom-left-radius:0px;
  530. -webkit-transition: all 0.2s linear;
  531. -moz-transition: all 0.2s linear;
  532. transition: all 0.2s linear;
  533. }
  534.  
  535. #entry:hover .perma{
  536. overflow:visible;
  537. {block:ifpermalinkhoverbackgroundimage}background-image:url({image:permalink hover background});{/block:ifpermalinkhoverbackgroundimage}
  538. -webkit-transition: opacity 0.2s linear; opacity: 0.8;
  539. -webkit-transition: all 0.2s linear;
  540. -moz-transition: all 0.2s linear;
  541. transition: all 0.2s linear;
  542. }
  543.  
  544.  
  545. #postnotes{
  546. text-align: justify;}
  547.  
  548. #postnotes blockquote{
  549. border: 0px;}
  550.  
  551. .title{
  552. font-family: 'Short Stack', cursive;
  553. font-size: 17px;
  554. text-shadow: 2px 2px 2px #888;
  555. line-height: 20px;
  556. color: {color:Title};
  557. font-weight: ;
  558. padding:0px 0px 0px 0px;
  559. }
  560. .credit {
  561. color: #FFFFFF;
  562. letter-spacing:1px;
  563. font-family: handy00;
  564. font-size: 8px;
  565. line-height:14px;
  566. margin: 2px;
  567. background-repeat:repeat;
  568. }
  569.  
  570. .credit a { color: #000; }
  571.  
  572. .blogtitle{
  573. font-family: 'Give You Glory', cursive;
  574. text-shadow: 2px 2px 2px #888;
  575. font-size: 30px;
  576. {block:ifnotdashesunderblogtitle}line-height: 65px;{/block:ifnotdashesunderblogtitle}
  577. line-height: 37px;
  578. color: {color:Title};
  579. font-weight: ;
  580. padding:0px 0px 0px 0px;
  581. }
  582.  
  583. div#pagination{
  584. font-family: 'Give You Glory', cursive;
  585. text-shadow: 2px 2px 2px #888;
  586. font-size: 30px;
  587. }
  588.  
  589. div#sidebanner{
  590. position:fixed !important;
  591. width: auto;
  592. height: auto;
  593. margin-top: 300px;
  594. margin-left: -210px;
  595. background-color: transparent;
  596. font-family: "written in the stars";
  597. font-size: 50px;
  598. line-height: 25px;
  599. text-align: right;
  600. text-shadow: 3px 3px 5px #888;
  601. -webkit-transform: rotate(-90deg);
  602. -moz-transform: rotate(-90deg);
  603. }
  604.  
  605. .video embed, .post div.video object {width:250px !important; height:187px !important;}
  606.  
  607. blockquote{
  608. padding:0px 0px 2px 5px;
  609. margin:0px 0px 2px 1px;
  610. border-left: 1px dotted #555555;
  611. }
  612.  
  613. blockquote p, ul{
  614. margin:0px;
  615. padding:0px;
  616. }
  617.  
  618.  
  619. a img{border: 0px;}
  620.  
  621. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  622.  
  623. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  624. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  625.  
  626. .notes img{width:10px; position:relative; top:3px;}
  627.  
  628. .permalink{
  629. display: block;
  630. font-size: 10px;
  631. text-align: right;
  632. text-decoration: none;
  633. }
  634.  
  635.  
  636. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  637.  
  638.  
  639. </style>
  640.  
  641.  
  642.  
  643. <link rel="shortcut icon" href="{Favicon}">
  644. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  645. <meta name="viewport" content="width=820" />
  646. </head>
  647. <body>
  648.  
  649. <div id="cage">
  650. <div id="center">
  651. <div id="sidebar">
  652. <center>
  653. {block:ifshowblogtitle}<span class=blogtitle><a title="" href="/">
  654. {Title}
  655. </a></span><br>{/block:ifshowblogtitle}
  656. {block:ifdashesunderblogtitle}<center>----------------------------------------------------------------------------------------------------</center>{/block:ifdashesunderblogtitle}
  657. {block:ifshowphoto}<a href="/"><img src="{image:sidebar}" width=300px></a>{/block:ifshowphoto}
  658. <div id="bite">
  659. <h4><center></p><a href="/"><img src="http://findicons.com/files//icons/1687/free_web_design/16/home_with_smog_pipe.png"></a><a href="/ask"><img src="http://png-3.findicons.com/files//icons/1687/free_web_design/16/comment_email.png"></a>{block:ifHeartLink}<a href="{text:Heart Link}"><img src="http://png-2.findicons.com/files//icons/1665/sweetie_basepack/16/16_heart_red_m.png"></a>{/block:ifHeartLink}</p></center></h4>
  660.  
  661. <div class="death">
  662. <div align="center">
  663. {Description}
  664. </div>
  665. </div>
  666. </div>
  667. <br><br>
  668. <div id="homelink"><a href="{text:Custom Link One}">{text:Custom Link One Title}</a></div>
  669. <div id="asklink"><a href="{text:Custom Link Two}">{text:Custom Link Two Title}</a></div>
  670. <div id="thirdlink"><a href="{text:Custom Link Three}">{text:Custom Link Three Title}</a></div>
  671. <div id="drop"><a href="#">{text:Drop Down Link}</a></a>
  672. <div id="down">
  673. <a href="{text:Link One}">{text:Link One Title}</a>
  674. <a href="{text:Link Two}">{text:Link Two Title}</a>
  675. <a href="{text:Link Three}">{text:Link Three Title}</a>
  676. <a href="{text:Link Four}">{text:Link Four Title}</a>
  677. </div>
  678. </div>
  679. <center>
  680. {block:ifshowarrows}
  681. {block:PreviousPage}<a href="{PreviousPage}"><font size="2"><</a>{/block:PreviousPage}/{block:NextPage}<a href="{NextPage}"><font size="2"><b>></b></font></a>{/block:NextPage}
  682. {/block:ifshowarrows}
  683. </div>
  684.  
  685. <div id="sidebanner"><span id="bubble">{text:sidebanner}</span></div>
  686.  
  687.  
  688. <div id="content">
  689. {block:Posts}
  690. <div id="entry">
  691.  
  692. {block:IndexPage}
  693. <div class="perma">
  694. <a href="{permalink}">{NoteCountwithlabel}</a> • {timeAgo} • <a href="{ReblogURL}" target="_blank">rebagel</a></a></span></div>
  695. {/block:IndexPage}
  696.  
  697.  
  698. {block:Text}
  699. {block:Title}<span class="title">{Title}</span>{/block:Title}
  700. <span class="entrytext">{Body}</span></a>
  701. {block:IndexPage}
  702. {/block:IndexPage}
  703. {/block:Text}
  704.  
  705. {block:Link}
  706. <a href="{URL}" class="title">{Name}</a>
  707. {block:Description}{Description}{/block:Description}
  708. {block:IndexPage}
  709. {/block:IndexPage}
  710. {block:Link}
  711.  
  712. {block:Photo}
  713. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{LinkCloseTag}
  714. {block:IndexPage}
  715. {/block:IndexPage}
  716. {/block:Photo}
  717.  
  718. {block:Photoset}
  719. {Photoset-400}
  720. {block:IndexPage}
  721. {/block:IndexPage}
  722. {/block:Photoset}
  723.  
  724. {block:Quote}
  725. <br>
  726. {AskerPortraitURL-128}<center><span class="title">{Quote}</span>
  727. <center>{block:Source}<p align="center">-{Source}</p>{/block:Source}
  728. </span>
  729. {block:IndexPage}
  730. {/block:IndexPage}
  731. {/block:Quote}
  732.  
  733. {block:Chat}
  734. {block:Title}<span class="title">{Title}</span>{/block:Title}
  735. <ul class="chat">
  736. {block:Lines}
  737. <li class="user_{UserNumber}">
  738. {block:Label}
  739. <span class="label">{Label}</span>
  740. {/block:Label}
  741.  
  742. {Line}
  743. </li>
  744. {/block:Lines}
  745. {block:IndexPage}
  746. {/block:IndexPage}
  747. {/block:Chat}
  748.  
  749. {block:Audio}
  750. <center><div style="width:500px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  751. <a href="{Permalink}">{FormattedPlayCount} plays </a>{block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  752. {block:IndexPage}
  753. {/block:IndexPage}
  754. {/block:Audio}
  755.  
  756. {block:Video}<center>
  757. {Video-400}</center>
  758. {block:IndexPage}
  759. {/block:IndexPage}
  760. {block:Video}
  761.  
  762.  
  763. {block:PermalinkPage}
  764. <div id="permapage">{block:Date}{ShortMonth} {DayofMonth}{DayofMonthSuffix} {Year}{/block:Date}{block:NoteCount} · {NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · {block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}{/block:HasTags}</div>
  765. {/block:PermalinkPage}
  766.  
  767.  
  768.  
  769. {block:PostNotes}{PostNotes}
  770. {/block:PostNotes}
  771. </div>
  772.  
  773. {/block:Posts}
  774. </div>
  775. </div>
  776. <br>
  777. </div>
  778. </div>
  779. </body>
  780. <div style="position:fixed;right:1292px;top:0px;font-family: tinytots;">
  781. <span class="credit"><a href="http://youroliviachachi.tumblr.com/" target="_blank">THEME CREDIT</a></span>
  782. </html>
  783. </html>
Advertisement
Add Comment
Please, Sign In to add comment