mikit20

Sweetest of all dreams.

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