Advertisement
artiecore

halloweentown

Oct 20th, 2019 (edited)
2,121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5.  
  6. ♡ halloween town theme by boyfriended ♡
  7.  
  8. dont forget to sub with twitch prime
  9.  
  10. base code by animecharacter.tumblr.com
  11.  
  12. ----->
  13.  
  14. <script type="text/javascript">{block:ifsparkles}
  15. // <![CDATA[
  16. var colour="{color:sparkles}";
  17. var sparkles=120;
  18.  
  19. /***************************/
  20.  
  21. var x=ox=400;
  22. var y=oy=300;
  23. var swide=800;
  24. var shigh=600;
  25. var sleft=sdown=0;
  26. var tiny=new Array();
  27. var star=new Array();
  28. var starv=new Array();
  29. var starx=new Array();
  30. var stary=new Array();
  31. var tinyx=new Array();
  32. var tinyy=new Array();
  33. var tinyv=new Array();
  34.  
  35. window.onload=function() { if (document.getElementById) {
  36. var i, rats, rlef, rdow;
  37. for (var i=0; i<sparkles; i++) {
  38. var rats=createDiv(3, 3);
  39. rats.style.visibility="hidden";
  40. document.body.appendChild(tiny[i]=rats);
  41. starv[i]=0;
  42. tinyv[i]=0;
  43. var rats=createDiv(5, 5);
  44. rats.style.backgroundColor="transparent";
  45. rats.style.visibility="hidden";
  46. var rlef=createDiv(1, 5);
  47. var rdow=createDiv(5, 1);
  48. rats.appendChild(rlef);
  49. rats.appendChild(rdow);
  50. rlef.style.top="2px";
  51. rlef.style.left="0px";
  52. rdow.style.top="0px";
  53. rdow.style.left="2px";
  54. document.body.appendChild(star[i]=rats);
  55. }
  56. set_width();
  57. sparkle();
  58. }}
  59.  
  60. function sparkle() {
  61. var c;
  62. if (x!=ox || y!=oy) {
  63. ox=x;
  64. oy=y;
  65. for (c=0; c<sparkles; c++) if (!starv[c]) {
  66. star[c].style.left=(starx[c]=x)+"px";
  67. star[c].style.top=(stary[c]=y)+"px";
  68. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  69. star[c].style.visibility="visible";
  70. starv[c]=50;
  71. break;
  72. }
  73. }
  74. for (c=0; c<sparkles; c++) {
  75. if (starv[c]) update_star(c);
  76. if (tinyv[c]) update_tiny(c);
  77. }
  78. setTimeout("sparkle()", 40);
  79. }
  80.  
  81. function update_star(i) {
  82. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  83. if (starv[i]) {
  84. stary[i]+=1+Math.random()*3;
  85. if (stary[i]<shigh+sdown) {
  86. star[i].style.top=stary[i]+"px";
  87. starx[i]+=(i%5-2)/5;
  88. star[i].style.left=starx[i]+"px";
  89. }
  90. else {
  91. star[i].style.visibility="hidden";
  92. starv[i]=0;
  93. return;
  94. }
  95. }
  96. else {
  97. tinyv[i]=50;
  98. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  99. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  100. tiny[i].style.width="2px";
  101. tiny[i].style.height="2px";
  102. star[i].style.visibility="hidden";
  103. tiny[i].style.visibility="visible"
  104. }
  105. }
  106.  
  107. function update_tiny(i) {
  108. if (--tinyv[i]==25) {
  109. tiny[i].style.width="1px";
  110. tiny[i].style.height="1px";
  111. }
  112. if (tinyv[i]) {
  113. tinyy[i]+=1+Math.random()*3;
  114. if (tinyy[i]<shigh+sdown) {
  115. tiny[i].style.top=tinyy[i]+"px";
  116. tinyx[i]+=(i%5-2)/5;
  117. tiny[i].style.left=tinyx[i]+"px";
  118. }
  119. else {
  120. tiny[i].style.visibility="hidden";
  121. tinyv[i]=0;
  122. return;
  123. }
  124. }
  125. else tiny[i].style.visibility="hidden";
  126. }
  127.  
  128. document.onmousemove=mouse;
  129. function mouse(e) {
  130. set_scroll();
  131. y=(e)?e.pageY:event.y+sdown;
  132. x=(e)?e.pageX:event.x+sleft;
  133. }
  134.  
  135. function set_scroll() {
  136. if (typeof(self.pageYOffset)=="number") {
  137. sdown=self.pageYOffset;
  138. sleft=self.pageXOffset;
  139. }
  140. else if (document.body.scrollTop || document.body.scrollLeft) {
  141. sdown=document.body.scrollTop;
  142. sleft=document.body.scrollLeft;
  143. }
  144. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  145. sleft=document.documentElement.scrollLeft;
  146. sdown=document.documentElement.scrollTop;
  147. }
  148. else {
  149. sdown=0;
  150. sleft=0;
  151. }
  152. }
  153.  
  154. window.onresize=set_width;
  155. function set_width() {
  156. if (typeof(self.innerWidth)=="number") {
  157. swide=self.innerWidth;
  158. shigh=self.innerHeight;
  159. }
  160. else if (document.documentElement && document.documentElement.clientWidth) {
  161. swide=document.documentElement.clientWidth;
  162. shigh=document.documentElement.clientHeight;
  163. }
  164. else if (document.body.clientWidth) {
  165. swide=document.body.clientWidth;
  166. shigh=document.body.clientHeight;
  167. }
  168. }
  169.  
  170. function createDiv(height, width) {
  171. var div=document.createElement("div");
  172. div.style.position="absolute";
  173. div.style.height=height+"px";
  174. div.style.width=width+"px";
  175. div.style.overflow="hidden";
  176. div.style.backgroundColor=colour;
  177. return (div);
  178. }
  179. // ]]>
  180. {/block:ifsparkles}</script>
  181.  
  182. <html>
  183. <link rel="shortcut icon" href="{image:favicon}">
  184. <link rel="alternate" type="application/rss+xml" href="{rss}">
  185.  
  186. <title>{Title}</title>
  187.  
  188. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  189.  
  190. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  191.  
  192. <link href="https://fonts.googleapis.com/css?family=Short+Stack&display=swap" rel="stylesheet">
  193. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  194.  
  195. <meta name="image:header">
  196. <meta name="image:background" content="" />
  197. <meta name="image:post background" content="" />
  198. <meta name="image:container background" content="" />
  199. <meta name="image:header background" content="" />
  200. <meta name="image:post background" content="" />
  201. <meta name="image:favicon" content="">
  202.  
  203.  
  204. <meta name="color:bg color" content="#fff">
  205. <meta name="color:posts" content=""/>
  206. <meta name="color:post glow" content="#000">
  207. <meta name="color:container" content=""/>
  208. <meta name="color:header" content=""/>
  209. <meta name="color:text color" content="#000">
  210. <meta name="color:text glow" content="#000000"/>
  211. <meta name="color:link color" content="#d34e">
  212. <meta name="color:link hover" content="#d34e">
  213. <meta name="color:link glow" content="#000000"/>
  214. <meta name="color:border" content="#000">
  215. <meta name="color:border glow" content="#000">
  216. <meta name="color:tooltip" content=""/>
  217. <meta name="color:tooltip text" content=""/>
  218. <meta name="color:scrollbar bg" content="#fff"/>
  219. <meta name="color:scrollbar thumb" content="#000"/>
  220. <meta name="color:selection bg" content="#fff"/>
  221. <meta name="color:selection text">
  222. <meta name="color:title" content="">
  223. <meta name="color:title glow" content="">
  224. <meta name="color:sparkles" content=""/>
  225.  
  226.  
  227. <meta name="if:cover bg" content=""/>
  228. <meta name="if:cover post bg" content=""/>
  229. <meta name="if:cover container bg" content=""/>
  230. <meta name="if:cover header bg" content=""/>
  231. <meta name="if:border" content="" />
  232. <meta name="if:border glow" content="" />
  233. <meta name="if:post glow" content="" />
  234. <meta name="if:title glow" content="">
  235. <meta name="if:glow links" content="" />
  236. <meta name="if:glow text" content="" />
  237. <meta name="if:rainbow title" content="">
  238. <meta name="if:sparkles" content=""/>
  239. <meta name="if:scroll desc" content=""/>
  240.  
  241.  
  242. <meta name="text:border size" content="3px" />
  243. <meta name="text:description" content="viewer beware, you're in for a scare"/>
  244. <meta name="text:custom title" content="(*^_^*)">
  245. <meta name="text:link divider" content="/"/>
  246. <meta name="text:title size" content="28px"/>
  247. <meta name="text:font size" content="20px">
  248.  
  249.  
  250. <meta name="text:link one" content="one">
  251. <meta name="text:link one url" content="/">
  252. <meta name="text:link two" content="two">
  253. <meta name="text:link two url" content="/">
  254. <meta name="text:link three" content="three">
  255. <meta name="text:link three url" content="/">
  256.  
  257.  
  258. <meta name="select:font" content="arial">
  259. <meta name="select:font" content="verdana">
  260. <meta name="select:font" content="courier">
  261. <meta name="select:font" content="georgia">
  262. <meta name="select:font" content="times new roman">
  263. <meta name="select:font" content="ms gothic"/>
  264. <meta name="select:font" content="short stack"/>
  265. <meta name="select:font" content="comic sans ms">
  266.  
  267.  
  268. <meta name="select:border type" content="solid" />
  269. <meta name="select:border type" content="double" />
  270. <meta name="select:border type" content="dashed" />
  271. <meta name="select:border type" content="dotted" />
  272. <meta name="select:border type" content="outset">
  273. <meta name="select:border type" content="inset">
  274.  
  275. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  276.  
  277. <style type="text/css">
  278.  
  279.  
  280. ::selection {
  281. background: {color:selection bg};
  282. color:{color:selection text};
  283. }
  284. ::-moz-selection {
  285. background: {color:selection bg};
  286. color:{color:selection text};
  287. }
  288.  
  289.  
  290. ::-webkit-scrollbar {width: 10px; background-color:{color:scrollbar bg};}
  291.  
  292. ::-webkit-scrollbar-thumb {border-radius: 0px; background: {color:scrollbar thumb};}
  293.  
  294. .tooltip{
  295. display:inline;
  296. position:relative;
  297. }
  298.  
  299. #s-m-t-tooltip{
  300. max-width:300px;
  301. padding:5px;
  302. margin:20px 7px -2px 20px;
  303. background-color:{color:tooltip};
  304. letter-spacing:1px;
  305. text-align:center;
  306. color:{color:tooltip text};
  307. z-index:99999999999999999999;
  308. -o-transition: all 0.3s ease-out;
  309. -webkit-transition: all 0.3s ease-out;
  310. -moz-transition: all 0.3s ease-out;
  311. }
  312.  
  313.  
  314. /*
  315. general text styles, fonts and colours
  316. */
  317.  
  318. body {
  319. background-color:{color:bg color};
  320. background-image: url('{image:background}');
  321. {block:ifnotcoverbg}
  322. background-repeat: repeat;
  323. background-attachment: fixed;
  324. {/block:ifnotcoverbg}
  325. {block:ifcoverbg}
  326. background-size: cover;
  327. background-attachment: fixed;
  328. {/block:ifcoverbg}
  329. font-family: {select:font};
  330. color:{color:text color};
  331. {block:ifglowtext}
  332. text-shadow: 0 0 3px {color:text glow}, 0 0 15px {color:text glow}, 0 0 3px {color:text glow};
  333. {/block:ifglowtext}
  334. font-size: {text:font size};
  335. }
  336.  
  337.  
  338. pre {
  339. white-space: pre-wrap;
  340. white-space: -moz-pre-wrap;
  341. white-space: -pre-wrap;
  342. white-space: -o-pre-wrap;
  343. word-wrap: break-word;
  344. }
  345.  
  346. a {
  347. color:{color:link color};
  348. text-decoration:none;
  349. {block:ifglowlinks}
  350. text-shadow: 0 0 3px {color:link glow}, 0 0 15px {color:link glow}, 0 0 3px {color:link glow};
  351. {/block:ifglowlinks}
  352. }
  353.  
  354. a:hover {
  355. color:{color:link hover};
  356.  
  357. }
  358.  
  359.  
  360. /*
  361. containers etc
  362. */
  363. #wrapper{
  364. width:600px;
  365. background-image: url('{image:container background}');
  366. background-color:{color:container};
  367. {block:ifnotcovercontainerbg}
  368. background-repeat: repeat;
  369. background-attachment: fixed;
  370. {/block:ifnotcovercontainerbg}
  371. {block:ifcovercontainerbg}
  372. background-size: cover;
  373. background-attachment: fixed;
  374. {/block:ifcovercontainerbg}
  375. margin:50px auto;
  376. padding:5px;
  377. {block:ifborder}
  378. border-width:{text:border size};
  379. border-style:{select:border type};
  380. border-color:{color:border};
  381. {block:ifborderglow}
  382. -moz-box-shadow: 0px 0px 4px 2px {color:border glow};
  383. -webkit-box-shadow: 0px 0px 4px 2px {color:border glow};
  384. box-shadow: 0px 0px 4px 2px {color:border glow};{/block:ifborderglow}
  385. {/block:ifborder}
  386.  
  387. }
  388.  
  389. #um {
  390. color: {color:title};
  391. height:0px;
  392. font-weight:bold;
  393. font-size: {text:title size};
  394. font-family:{select:title font};
  395. padding: 0px;
  396. margin-right:auto;
  397. margin-left:auto;
  398. z-index:999999;
  399. text-align:center;
  400. margin-bottom:-30px;
  401. font:{color:title};
  402. {block:iftitleglow}text-shadow:0px 0px 15px {color:title glow};{block:iftitleglow}
  403. }
  404.  
  405. .pop {
  406. animation: pop 1s infinite;
  407. -webkit-animation: pop 1s infinite;
  408. }
  409. @keyframes pop {
  410. from {
  411. transform:scale(0.95)
  412. }
  413. 50% {
  414. transform:scale(1)
  415. }
  416. to {
  417. transform:scale(0.95)
  418. }
  419. }
  420. @-webkit-keyframes pop {
  421. from {
  422. -webkit-transform:scale(0.95)
  423. }
  424. 50% {
  425. -webkit-transform:scale(1)
  426. }
  427. to {
  428. -webkit-transform:scale(0.95)
  429. }
  430. }
  431.  
  432. .post{
  433. width:400px;
  434. margin-left:90px;
  435. font-size:{text:font size};
  436. margin-top:30px;
  437. margin-bottom:30px;
  438. position:float;
  439. padding:10px;
  440. overflow:hidden;
  441. background-color:{color:posts};
  442. background-image: url('{image:post background}');
  443. {block:ifnotcoverpostbg}
  444. background-repeat: repeat;
  445. background-attachment: fixed;
  446. {/block:ifnotcoverpostbg}
  447. {block:ifcoverpostbg}
  448. background-size: cover;
  449. background-attachment: fixed;
  450. {/block:ifcoverpostbg}
  451. {block:ifpostglow}
  452. -moz-box-shadow: 0px 0px 4px 2px {color:post glow};
  453. -webkit-box-shadow: 0px 0px 4px 2px {color:post glow};
  454. box-shadow: 0px 0px 4px 2px {color:post glow};{/block:ifpostglow}
  455. }
  456.  
  457. .post img{
  458. max-width:100%;
  459. height:auto;
  460. }
  461.  
  462. .tags {
  463. max-height:0px;
  464. line-height:130%;
  465. text-align:left;
  466. font-size:{text:font size};
  467. opacity:0;
  468. -webkit-transition: all 0.7s ease;
  469. transition: all 0.7s ease;
  470. -moz-transition: all 0.7s ease;
  471. -o-transition: all 0.7s ease;}
  472.  
  473. .post:hover .tags{
  474. opacity:1;
  475. max-height:300px;
  476. -webkit-transition: all 0.7s ease;
  477. transition: all 0.7s ease;
  478. -moz-transition: all 0.7s ease;
  479. -o-transition: all 0.7s ease;}
  480.  
  481.  
  482. #header{
  483. max-width:550px;
  484. height:auto;
  485. margin:50px auto;
  486. padding:5px;
  487. font-size:{text:font size};
  488. background: {color:header};
  489. background-image: url('{image:header background}');
  490. {block:ifnotcoverheaderbg}
  491. background-repeat: repeat;
  492. background-attachment: fixed;
  493. {/block:ifnotcoverheaderbg}
  494. {block:ifcoverheaderbg}
  495. background-size: cover;
  496. background-attachment: fixed;
  497. {/block:ifcoverheaderbg}
  498. position;fixed;
  499. overflow:auto;
  500. {block:ifborder}
  501. border-width:{text:border size};
  502. border-style:{select:border type};
  503. border-color:{color:border};
  504. {block:ifborderglow}
  505. -moz-box-shadow: 0px 0px 4px 2px {color:border glow};
  506. -webkit-box-shadow: 0px 0px 4px 2px {color:border glow};
  507. box-shadow: 0px 0px 4px 2px {color:border glow};{/block:ifborderglow}
  508. {/block:ifborder}
  509.  
  510. paddin<marquee>g: 10px 10px 8px 10px;
  511. }
  512.  
  513. #header img{
  514. max-width:100%;
  515. margin-bottom:10px;
  516. }
  517.  
  518. #nav{
  519. margin:50px 0 0 0;
  520. }
  521.  
  522. #navi{
  523. width:400px;
  524. height:25px;
  525. margin-bottom:30px;
  526. font-size:{text:font size};
  527. color:{color:text};
  528. background-color:{color:posts};
  529. background-image: url('{image:post background}');
  530. padding:10px 10px 3px 10px;
  531. overflow:hidden;
  532. {block:ifnotcoverbg}
  533. background-repeat: repeat;
  534. background-attachment: fixed;
  535. {/block:ifnotcoverbg}
  536. {block:ifcoverbg}
  537. background-size: cover;
  538. background-attachment: fixed;
  539. {/block:ifcoverbg}
  540. {block:ifpostglow}
  541. -moz-box-shadow: 0px 0px 4px 2px {color:post glow};
  542. -webkit-box-shadow: 0px 0px 4px 2px {color:post glow};
  543. box-shadow: 0px 0px 4px 2px {color:post glow};{/block:ifpostglow}
  544. }
  545.  
  546. }
  547.  
  548. /*
  549. content in the body of the posts - quotes, asks, etc
  550. "media" contains photos, photosets, videos, audio posts
  551. */
  552. .media{
  553. margin:0 0 10px 0;
  554. }
  555.  
  556. .title{
  557. font-weight:normal;
  558. font-size:18px;
  559. margin:0 0 10px 0;
  560. }
  561.  
  562. .quote{
  563. font-weight:normal;
  564. font-size:16px;
  565. font-style:italic;
  566. margin:0 0 10px 0;
  567. }
  568.  
  569. .question{
  570. margin-bottom:10px;
  571. }
  572.  
  573. blockquote{
  574. margin:0 0 10px 10px;
  575. padding:0 0 0 10px;
  576. border-left:solid 1px #000;
  577. }
  578.  
  579. /*
  580. post footers - date, tags, via and source
  581. */
  582. .post .footer{
  583. margin:0;
  584. text-align:left;
  585. }
  586.  
  587. /*
  588. post notes
  589. */
  590. ol.notes{
  591. list-style-type:none;
  592. padding:0;
  593. margin:0;
  594. }
  595.  
  596. ol.notes li.note img{
  597. width:16px;
  598. height:16px;
  599. }
  600.  
  601. ol.notes li.note{
  602. margin:0px;
  603. }
  604.  
  605. #lol {
  606. margin-top:30px;
  607. }
  608. </style>
  609. </head>
  610. <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Short+Stack" />
  611.  
  612. {CustomCSS}
  613. </style>
  614. </head>
  615.  
  616. <body>
  617.  
  618.  
  619. <div id="lol">
  620. {block:ifrainbowtitle}
  621. <script type="text/javascript">
  622. // <![CDATA[
  623. var speed=100; // speed colours change, 1 second = 1000
  624. var glow=3; // can be set from '0' for no glow, to 10
  625. var raincol=new Array("#ff0000", "#ff5500", "#ffaa00", "#ffff00", "#aaff00", "#55ff00", "#00ff00", "#00ff55", "#00ffaa", "#00ffff", "#00aaff", "#0055ff", "#0000ff", "#5500ff", "#aa00ff", "#ff00ff", "#ff00aa", "#ff0055"); // change the colours if you want to
  626. var alink=""; // page to link text to (set to ="" for no link)
  627.  
  628. /*****************************/
  629.  
  630. var rainbow, raintxt, raincnt=0;
  631.  
  632. function addLoadEvent(funky) {
  633. var oldonload=window.onload;
  634. if (typeof(oldonload)!='function') window.onload=funky;
  635. else window.onload=function() {
  636. if (oldonload) oldonload();
  637. funky();
  638. }
  639. }
  640.  
  641. addLoadEvent(regenbogen);
  642.  
  643. function regenbogen() { if (document.getElementById) {
  644. var i, rainbeau;
  645. rainbow=document.getElementById("rainbow");
  646. raintxt=rainbow.firstChild.nodeValue;
  647. while (rainbow.childNodes.length) rainbow.removeChild(rainbow.childNodes[0]);
  648. for (i=0; i<raintxt.length; i++) {
  649. rainbeau=document.createElement("span");
  650. rainbeau.setAttribute("id", "rain"+i);
  651. rainbeau.appendChild(document.createTextNode(raintxt.charAt(i)));
  652. if (alink) {
  653. rainbeau.style.cursor="pointer";
  654. rainbeau.onclick=function() { top.location.href=alink; }
  655. }
  656. rainbow.appendChild(rainbeau);
  657. }
  658. rainbow=setInterval ("raining()", speed);
  659. }}
  660.  
  661. function raining() {
  662. var i, c;
  663. for (i=0; i<raintxt.length; i++) {
  664. c=raincol[(i+raincnt)%raincol.length];
  665. document.getElementById("rain"+i).style.color=c;
  666. if (glow) document.getElementById("rain"+i).style.textShadow=c+" 0px 0px "+glow+"px";
  667. }
  668. raincnt++;
  669. }
  670. // ]]>
  671. </script>
  672. <div id="um" class="pop"><span id="rainbow">{text:custom title}</span></div>
  673. {/block:ifrainbowtitle}
  674. {block:ifnotrainbowtitle}
  675. <div id="um" class="pop">{text:custom title}</div>
  676. {/block:ifnotrainbowtitle}
  677.  
  678. </div>
  679.  
  680. <div id="header">
  681. <div align="center"><a href="/"><img src="{image:header}"align="center"></a>
  682. {/block:ifDescription}
  683.  
  684. {block:ifDescription} {block:ifscrolldesc}<marquee>{text:description}</marquee> {/block:ifscrolldesc} </div> {block:ifnotscrolldesc} <div align="center">{text:description} </div>{/block:ifnotscrolldesc}
  685. {/block:ifDescription}
  686.  
  687. <center><a href="{text:link one url}">{text:link one}</a> {text:link divider}
  688. <a href="{text:link two url}">{text:link two}</a> {text:link divider}
  689. <a href="{text:link three url}">{text:link three}</a></center>
  690.  
  691. </div></div>
  692. <div id="wrapper">
  693.  
  694.  
  695. <div id="content">
  696. {block:Posts}
  697.  
  698. <div class="post">
  699.  
  700. {block:Text}
  701. {block:Title}
  702. <div class="title">{Title}</div>
  703. {/block:Title}
  704. {Body}
  705. {/block:Text}
  706.  
  707. {block:Photo}
  708. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  709. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  710. {/block:Photo}
  711.  
  712. {block:Photoset}
  713. <div class="media">{Photoset-400}</div>
  714. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  715. {/block:Photoset}
  716.  
  717. {block:Quote}
  718. <div class="quote">"{Quote}"</div>
  719. {block:Source}
  720. <div class="quotesource">{Source}</div>
  721. {/block:Source}
  722. {/block:Quote}
  723.  
  724. {block:Link}
  725. <div class="title"><a href="{URL}">{Name}</a></div>
  726. {block:Description}
  727. <div class="description">{Description}</div>
  728. {/block:Description}
  729. {/block:Link}
  730.  
  731. {block:Chat}
  732. {block:Title}
  733. <div class="title">{Title}</div>
  734. {/block:Title}
  735.  
  736. {block:Lines}
  737. <div class="{Alt} user_{UserNumber}">
  738. {block:Label}
  739. <b>{Label}</b>{/block:Label}
  740. &nbsp;{Line}
  741. </div>
  742. {/block:Lines}
  743. {/block:Chat}
  744.  
  745. {block:Video}
  746. <div class="media">{Video-400}</div>
  747. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  748. {/block:Video}
  749.  
  750. {block:Audio}
  751. <div class="media">
  752. {AudioPlayerWhite}
  753. {block:TrackName}{TrackName}{/block:TrackName} /
  754. {block:Artist}{Artist}{/block:Artist}
  755. </div>
  756. {block:Caption}{Caption}{/block:Caption}
  757. {/block:Audio}
  758.  
  759. {block:Answer}
  760. <div class="question">{Asker}: {Question}</div>
  761. <div class="caption">{Answer}</div>
  762. {/block:Answer}
  763.  
  764.  
  765. {block:Date}
  766. <div class="footer">
  767. <a href="{Permalink}"><a href="{Permalink}" title="{timeago}">{notecount}{text:notes symbol}</a>
  768.  
  769. <!-- {block:NoRebloggedFrom}
  770. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  771. {/block:NoRebloggedFrom} -->
  772. {block:ContentSource}<!-- {SourceURL}
  773. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  774. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  775. {/block:ContentSource}
  776. <br>
  777. <div class="tags"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  778.  
  779.  
  780. </div>
  781. {block:PermalinkPage}
  782. {block:NoteCount}
  783. {block:PostNotes}{PostNotes}{/block:PostNotes}
  784. {/block:NoteCount}
  785. {/block:PermalinkPage}
  786. {/block:Date}
  787.  
  788. </div>
  789. {/block:Posts}
  790.  
  791. <center>
  792. {block:Pagination}
  793. <div id="navi">
  794. {block:PreviousPage}<a href="{PreviousPage}">{lang:Previous}</a>{/block:PreviousPage}
  795.  
  796. {block:NextPage}<a href="{NextPage}">{lang:Next}</a>{/block:NextPage}
  797. </div>
  798. {/block:Pagination}
  799. </center>
  800. </div>
  801. </div>
  802.  
  803. </div>
  804.  
  805. <a style="position:fixed;left:3px;bottom:3px;" <a href="https://boyfriended.tumblr.com/" title="theme by artie ^_^">♜</a>
  806.  
  807.  
  808. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  809. <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  810.  
  811. </body>
  812. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement