artiecore

circa 1999

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