Advertisement
mikit20

Pinkie Cute

May 9th, 2018
3,817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.82 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!----------------------------------------
  4. Base Code #1 by Incedo
  5. http://incedothemes.tumblr.com
  6. *Tips @ http://incedothemes.tumblr.com/basecodes
  7. *Please do not remove this credit
  8. and please credit me in your faq
  9. *DO NOT REDISTRIBUTE without proper credit
  10. Updated 1/1/14
  11. ------------------------------------------>
  12.  
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14.  
  15. <head>
  16.  
  17. <title>{Title}</title>
  18.  
  19. <!Meta-tags go here>
  20.  
  21.  
  22.  
  23. <meta name="image:Background" content=""/>
  24. <meta name="image:Sidebar" content=""/>
  25. <meta name="image:cursor" content=""/>
  26. <meta name="image:Permalink Bg" content=""/>
  27. <meta name="image:corner" content="1"/>
  28.  
  29.  
  30. <meta name="color:background" content="#ffffff" />
  31. <meta name="color:title" content="#636363" />
  32. <meta name="color:text" content="#000000" />
  33. <meta name="color:Link" content="#555555"/>
  34. <meta name="color:Link Hover" content="#555555"/>
  35. <meta name="color:Permalink" content="#e1e1e1"/>
  36. <meta name="color:Permalink Hover" content="#e1e1e1"/>
  37. <meta name="color:Perma Bg" content="#e1e1e1"/>
  38.  
  39.  
  40. <meta name="text:Link 1" content=""/>
  41. <meta name="text:Link 1 URL" content=""/>
  42. <meta name="text:Link 2" content=""/>
  43. <meta name="text:Link 2 URL" content=""/>
  44. <meta name="text:Link 3" content=""/>
  45. <meta name="text:Link 3 URL" content=""/>
  46.  
  47. <!Leave this stuff alone>
  48.  
  49.  
  50. <style type="text/css">body, a, a:hover {cursor: url({image:cursor}), progress;}</style>
  51.  
  52.  
  53. <link href="https://fonts.googleapis.com/css?family=Encode+Sans+Condensed" rel="stylesheet">
  54. <link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
  55.  
  56.  
  57. <link rel="stylesheet" media="screen" href="http://openfontlibrary.org/face/web-symbols" rel="stylesheet" type="text/css"/>
  58. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  59. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  60. <link rel="shortcut icon" href="{Favicon}"/>
  61. <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
  62.  
  63.  
  64. <script type="text/javascript">
  65. // <![CDATA[
  66. var colours=new Array('#fcdbf3', '#beede3', '#f5dcde', '#ffe7f8', '#f0f7ff', '#fff2f3'); // colours of the hearts
  67. var minisize=10; // smallest size of hearts in pixels
  68. var maxisize=14; // biggest size of hearts in pixels
  69. var hearts=35; // maximum number of hearts on screen
  70. var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
  71.  
  72. /*****************************
  73. *JavaScript Love Heart Cursor*
  74. * (c)2013+ mf2fm web-design *
  75. * http://www.mf2fm.com/rv *
  76. * DON'T EDIT BELOW THIS BOX *
  77. *****************************/
  78. var x=ox=400;
  79. var y=oy=300;
  80. var swide=800;
  81. var shigh=600;
  82. var sleft=sdown=0;
  83. var herz=new Array();
  84. var herzx=new Array();
  85. var herzy=new Array();
  86. var herzs=new Array();
  87. var kiss=false;
  88.  
  89. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  90. var oldonload=window.onload;
  91. if (typeof(oldonload)!='function') window.onload=funky;
  92. else window.onload=function() {
  93. if (oldonload) oldonload();
  94. funky();
  95. }
  96. }
  97.  
  98. addRVLoadEvent(mwah);
  99.  
  100. function mwah() { if (document.getElementById) {
  101. var i, heart;
  102. for (i=0; i<hearts; i++) {
  103. heart=createDiv("auto", "auto");
  104. heart.style.visibility="hidden";
  105. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  106. heart.style.color=colours[i%colours.length];
  107. heart.style.pointerEvents="none";
  108. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  109. else heart.style.opacity=0.75;
  110. heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
  111. document.body.appendChild(heart);
  112. herz[i]=heart;
  113. herzy[i]=false;
  114. }
  115. set_scroll();
  116. set_width();
  117. herzle();
  118. }}
  119.  
  120. function herzle() {
  121. var c;
  122. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  123. ox=x;
  124. oy=y;
  125. for (c=0; c<hearts; c++) if (herzy[c]===false) {
  126. herz[c].firstChild.nodeValue=String.fromCharCode(9829);
  127. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  128. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  129. herz[c].style.fontSize=minisize+"px";
  130. herz[c].style.fontWeight='normal';
  131. herz[c].style.visibility='visible';
  132. herzs[c]=minisize;
  133. break;
  134. }
  135. }
  136. for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  137. setTimeout("herzle()", 40);
  138. }
  139.  
  140. document.onmousedown=pucker;
  141. document.onmouseup=function(){clearTimeout(kiss);};
  142.  
  143. function pucker() {
  144. ox=-1;
  145. oy=-1;
  146. kiss=setTimeout('pucker()', 100);
  147. }
  148.  
  149. function blow_me_a_kiss(i) {
  150. herzy[i]-=herzs[i]/minisize+i%2;
  151. herzx[i]+=(i%5-2)/5;
  152. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  153. herz[i].style.visibility="hidden";
  154. herzy[i]=false;
  155. }
  156. else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
  157. else {
  158. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  159. herz[i].style.top=herzy[i]+"px";
  160. herz[i].style.left=herzx[i]+"px";
  161. }
  162. }
  163.  
  164. function break_my_heart(i) {
  165. var t;
  166. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  167. herz[i].style.fontWeight='bold';
  168. herzy[i]=false;
  169. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  170. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  171. }
  172.  
  173. document.onmousemove=mouse;
  174. function mouse(e) {
  175. if (e) {
  176. y=e.pageY;
  177. x=e.pageX;
  178. }
  179. else {
  180. set_scroll();
  181. y=event.y+sdown;
  182. x=event.x+sleft;
  183. }
  184. }
  185.  
  186. window.onresize=set_width;
  187. function set_width() {
  188. var sw_min=999999;
  189. var sh_min=999999;
  190. if (document.documentElement && document.documentElement.clientWidth) {
  191. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  192. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  193. }
  194. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  195. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  196. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  197. }
  198. if (document.body.clientWidth) {
  199. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  200. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  201. }
  202. if (sw_min==999999 || sh_min==999999) {
  203. sw_min=800;
  204. sh_min=600;
  205. }
  206. swide=sw_min;
  207. shigh=sh_min;
  208. }
  209.  
  210. window.onscroll=set_scroll;
  211. function set_scroll() {
  212. if (typeof(self.pageYOffset)=='number') {
  213. sdown=self.pageYOffset;
  214. sleft=self.pageXOffset;
  215. }
  216. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  217. sdown=document.body.scrollTop;
  218. sleft=document.body.scrollLeft;
  219. }
  220. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  221. sleft=document.documentElement.scrollLeft;
  222. sdown=document.documentElement.scrollTop;
  223. }
  224. else {
  225. sdown=0;
  226. sleft=0;
  227. }
  228. }
  229.  
  230. function createDiv(height, width) {
  231. var div=document.createElement("div");
  232. div.style.position="absolute";
  233. div.style.height=height;
  234. div.style.width=width;
  235. div.style.overflow="hidden";
  236. div.style.backgroundColor="transparent";
  237. return (div);
  238. }
  239. // ]]>
  240. </script>
  241.  
  242.  
  243.  
  244.  
  245. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  246. <script type='text/javascript' language='Javascript'>
  247. var scrolltotop={
  248. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  249. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (1=top).
  250. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 500]},
  251. controlHTML: '<img onmousedown="event.preventDefault ? event.preventDefault() : event.returnValue = false" src="http://68.media.tumblr.com/9b3fe69da4ab48622b8b555d249b2adc/tumblr_o98niyQVkF1sa07uto2_250.png">', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  252. controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ center of window corner
  253. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  254. state: {isvisible:false, shouldvisible:false},
  255. scrollup:function(){
  256. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  257. this.$control.css({opacity:0}) //hide control immediately after clicking it
  258. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  259. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  260. dest=jQuery('#'+dest).offset().top
  261. else
  262. dest=0
  263. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  264. },
  265. keepfixed:function(){
  266. var $window=jQuery(window)
  267. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  268. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  269. this.$control.css({left:controlx+'px', top:controly+'px'})
  270. },
  271. togglecontrol:function(){
  272. var scrolltop=jQuery(window).scrollTop()
  273. if (!this.cssfixedsupport)
  274. this.keepfixed()
  275. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  276. if (this.state.shouldvisible && !this.state.isvisible){
  277. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  278. this.state.isvisible=true
  279. }
  280. else if (this.state.shouldvisible==false && this.state.isvisible){
  281. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  282. this.state.isvisible=false
  283. }
  284. },
  285. init:function(){
  286. jQuery(document).ready(function($){
  287. var mainobj=scrolltotop
  288. var iebrws=document.all
  289. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  290. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  291. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  292. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  293. .attr({title:'to the top!!'})
  294. .click(function(){mainobj.scrollup(); return false})
  295. .appendTo('body')
  296. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  297. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  298. mainobj.togglecontrol()
  299. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  300. mainobj.scrollup()
  301. return false
  302. })
  303. $(window).bind('scroll resize', function(e){
  304. mainobj.togglecontrol()
  305. })
  306. })
  307. }
  308. }
  309. scrolltotop.init()
  310. </script>
  311.  
  312.  
  313.  
  314.  
  315.  
  316. <!CSS starts here>
  317. <style type="text/css">
  318.  
  319. body {
  320. background-color:{color:background};
  321. background-image:url({image:Background});
  322. background-attachment: fixed;
  323. color:{color:text};
  324. font-family: 'Encode Sans Condensed', sans-serif;
  325. font-size:13px;
  326. letter-spacing:1px;
  327. line-height:20px;}
  328.  
  329. a:link, a:active, a:visited{
  330. text-decoration: none;
  331. color: {color:Link};
  332. -webkit-transition: all 0.4s ease-out;
  333. -moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  334. }
  335.  
  336. a:hover {
  337. color:{color:Link Hover};
  338. text-decoration:none;
  339. }
  340.  
  341.  
  342.  
  343. #wrapper {
  344. width:650px;
  345. margin-left:auto;
  346. margin-right:auto;}
  347.  
  348. #sidebar {
  349. top:100px;
  350. width:160px;
  351. position:fixed;
  352. margin-left:-120px;
  353. background:#fff;
  354. padding:10px;
  355. outline-offset:-8px;
  356. border:1px solid #eee;
  357. outline:2px dotted #FFEDF5;
  358. box-shadow: 10px 10px rgba(0,0,0,.07);
  359. }
  360.  
  361.  
  362. #sidebar2 {
  363. top:100px;
  364. width:160px;
  365. position:fixed;
  366. margin-left:650px;
  367. background:#fff;
  368. padding:10px;
  369. outline-offset:-8px;
  370. border:1px solid #eee;
  371. outline:2px dotted #FFEDF5;
  372. box-shadow: 10px 10px rgba(0,0,0,.07);
  373. }
  374.  
  375.  
  376. .description{
  377. padding:5px;
  378. font-size:9px;
  379. text-transform:uppercase;
  380. line-height:14px;
  381. letter-spacing:1px;
  382. margin-bottom:5px;
  383.  
  384. }
  385.  
  386. #sideimage img{
  387. width: 90px;
  388. height: 100px;
  389. padding:4px;
  390. border: 1px solid #ddd;
  391. }
  392.  
  393. #sideimage img{
  394. border-radius:120px;
  395. background-color: #fff;
  396. border: 1px solid #eee;
  397. padding: 8px;
  398. height:90px;
  399. width:90px;
  400.  
  401. }
  402.  
  403.  
  404. .linkss a{
  405. margin-left:5px;
  406. text-align:right;
  407. margin-top:3px;
  408. display:block;
  409. width:145px;
  410. height:12px;
  411. padding-right:3px;
  412. padding-bottom:3px;
  413. font-size:10px;
  414. font-family: calibri light;
  415. background:#fff;
  416. border-bottom:1px solid #f0f0f0;
  417. color:#b8b8b8;
  418. -webkit-transition: all 0.3s linear;
  419. -moz-transition: all 0.3s linear;
  420. transition: all 0.3s linear;
  421. }
  422.  
  423. .linkss a:hover{
  424. margin-left:5px;
  425. text-align:right;
  426. margin-top:3px;
  427. display:block;
  428. width:110px;
  429. height:12px;
  430. padding-right:13px;
  431. font-size:10px;
  432. font-family: calibri light;
  433. background:#ffffff;
  434. border-bottom:1px solid #f0f0f0;
  435. color:#a3b5d8;
  436. -webkit-transition: all 0.3s linear;
  437. -moz-transition: all 0.3s linear;
  438. transition: all 0.3s linear;
  439. }
  440.  
  441.  
  442.  
  443. #entries {
  444. margin-left: 100px;
  445. margin-top:70px;
  446. width:400px;
  447. outline-offset:-8px;
  448. }
  449.  
  450. #posts {
  451. width:400px;
  452. overflow:hidden;
  453. margin:40px;
  454. border:1px solid #eee;
  455. padding:14px;
  456. background-color:#fff;
  457. border-radius:7px;
  458. box-shadow: 10px 10px rgba(0,0,0,.07);
  459.  
  460. }
  461.  
  462. .permalink{
  463. text-transform:lowercase;
  464. font-size:9px;
  465. background-image:url({image:Permalink Bg});
  466. background-color:{color:Permalink Bg};
  467. border: 0px solid #E0F1FF;
  468. text-align:right;
  469. color:{color:Permalink};
  470. margin-top: 8px;
  471. padding:3px;
  472. padding-right:4px;
  473. line-height:12px;
  474. border-radius:3px;
  475.  
  476. }
  477. .permalink a{
  478. text-transform:uppercase;
  479. line-height:15px;
  480. color:{color:Permalink};
  481. -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  482. }
  483.  
  484. .permalink a:hover{
  485. color:{color:Permalink Hover};
  486. -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  487. }
  488.  
  489. .notes {
  490. float: left;
  491. text-align: left;
  492. padding-left:4px;
  493. }
  494.  
  495.  
  496.  
  497.  
  498. img, img a {
  499. border:none;
  500. line-height:0;
  501. max-width:100%;}
  502.  
  503. </style>
  504.  
  505. <style type="text/css">{CustomCSS}</style>
  506.  
  507. {block:ifinfinitescroll}
  508. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  509. {/block:ifinfinitescroll}
  510.  
  511. </head>
  512.  
  513. <!HTML body starts here>
  514. <body>
  515.  
  516. <div style="position:fixed; top:70px; left: 367px; z-index:9; width:140px;" ><img src="http://68.media.tumblr.com/tumblr_lpw0hfyGOT1qkra24o1_250.gif"></div>
  517. <div style="position:fixed; top:70px; right: 300px; z-index:9; width:140px;" ><img src="http://68.media.tumblr.com/tumblr_lpw0hfyGOT1qkra24o1_250.gif"></div>
  518.  
  519. <div style=" background-image: url('http://68.media.tumblr.com/6ac70a526b302c90aa172446eef8de7b/tumblr_inline_op3omvnsCV1qge1qb_75sq.png'); top: 0px; width: 100%; left:0px; height: 32px; z-index: 99; position: fixed; background-hover:filter:alpha(opacity=120);"></div>
  520.  
  521. <div id="wrapper">
  522.  
  523. <img src='{image:corner}' style='position:fixed;bottom:0px;left:0px;z-index:-999'/>
  524.  
  525. <div id="sidebar">
  526.  
  527. <br>
  528.  
  529. <center><div id="sideimage"><img src="{image:sidebar}"></div></center>
  530.  
  531. <div class="description">{Description}</div>
  532.  
  533.  
  534. <center>
  535. {block:Pagination}
  536. {block:PreviousPage}<a href="{PreviousPage}"><img src="http://68.media.tumblr.com/3bb27096b2b942b8ef1d24b9ecef0dcf/tumblr_inline_mpedf5hhgx1qz4rgp.gif"></a>{/block:PreviousPage}
  537. {block:NextPage}<a href="{NextPage}"><img src="http://68.media.tumblr.com/d8f3479cd531c54753be621c8df00e4c/tumblr_inline_mpedf95ujK1qz4rgp.gif"></a>{/block:NextPage}
  538. {/block:Pagination}
  539. </center>
  540. </div>
  541.  
  542. <div id="sidebar2">
  543. <br>
  544. <center><img src="http://68.media.tumblr.com/c56345d8cfaa43999c547f853fdd607c/tumblr_mrt5xtWWU71rjyk33o1_250.gif"></center>
  545. <div class="linkss">
  546. <a href="/" >home</a>
  547. <a href="/ask" >ask </a>
  548. <a href="/archive" >archive </a>
  549. <a href="{text:link 1 url}" >{text:link 1}</a>
  550. <a href="{text:link 2 url}" >{text:link 2}</a>
  551. <a href="{text:link 3 url}" >{text:link 3}</a>
  552.  
  553. </div><br>
  554.  
  555. </div>
  556.  
  557.  
  558. <div class = "autopagerize_page_element" >
  559. <div id="entries">
  560.  
  561. <!Post blocks start here>
  562. {block:Posts}
  563. <div id="posts">
  564.  
  565. {block:Text}
  566. {block:Title}{Title}{/block:Title}
  567. {Body}
  568. {/block:Text}
  569.  
  570. {block:Quote}
  571. "{Quote}"<br>
  572. — {Source}
  573. {/block:Quote}
  574.  
  575. {block:Link}
  576. <a href="{URL}">{Name}</a>
  577. {/block:Link}
  578.  
  579. {block:Chat}
  580. {block:Lines}{block:Label}{Label} {/block:Label}{Line}<br>{/block:Lines}
  581. {/block:Chat}
  582.  
  583. {block:Answer}
  584. {Asker} asked: {Question}<br>
  585. {Answer}
  586. {/block:Answer}
  587.  
  588. {block:Audio}
  589. {AudioPlayer}
  590. {/block:Audio}
  591.  
  592. {block:Video}
  593. {Video-400}
  594. {/block:Video}
  595.  
  596. {block:Photo}
  597. <img src="{PhotoURL-400}"/>
  598. <br>
  599. {/block:Photo}
  600.  
  601. {block:Photoset}
  602. {Photoset-400}
  603. {/block:Photoset}
  604.  
  605. <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
  606.  
  607.  
  608.  
  609. {block:permalinkpage}
  610. {block:PostNotes}{PostNotes}{/block:PostNotes}
  611. {/block:PermalinkPage}
  612.  
  613. </div>
  614.  
  615. {/block:Posts}
  616.  
  617. {block:ifnotinfinitescroll}
  618. <div style="text-align:center">
  619. {block:Pagination}
  620. {block:PreviousPage}<a href="{PreviousPage}">Previous</a>{/block:PreviousPage}
  621. {block:NextPage}<a href="{NextPage}">Next</a>{/block:NextPage}
  622. {/block:Pagination}
  623. </div>
  624. {/block:ifnotinfinitescroll}
  625.  
  626. </div>
  627. </div>
  628. </div>
  629.  
  630. </body>
  631. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement