mikit20

Stereo Heart

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