Advertisement
artiecore

celibate catholic doomguy

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