Don't like ads? PRO users don't see any ads ;-)
Guest

Theme

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 17.24 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--
  2. Theme by vikki-xo
  3. Please do not remove the theme credit (:
  4. -->
  5. <html lang="en">
  6. <head>
  7. <script type="text/javascript"
  8. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  9.  
  10. <script>
  11. $(document).ready(function() {
  12. //
  13. $('a.poplight[href^=#]').click(function() {
  14. var popID = $(this).attr('rel'); //Get Popup Name
  15. var popURL = $(this).attr('href'); //Get Popup href to define size
  16. var query= popURL.split('?');
  17. var dim= query[1].split('&');
  18. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  19. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://media.tumblr.com/tumblr_lngwraXumj1qf72le.png" class="btn_close" title="Close" alt="Close" /></a>');
  20. var popMargTop = ($('#' + popID).height() + 80) / 2;
  21. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  22. //Apply Margin to Popup
  23. $('#' + popID).css({
  24. 'margin-top' : -popMargTop,
  25. 'margin-left' : -popMargLeft
  26. });
  27. $('body').append('<div id="fade"></div>');
  28. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  29. return false;
  30. });
  31. $('a.close, #fade').live('click', function() {
  32. $('#fade , .popup_block').fadeOut(function() {
  33. $('#fade, a.close').remove(); //fade them both out
  34. });
  35. return false;
  36. });
  37. });
  38. </script>
  39.  
  40. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  41. <html lang="en">
  42.  
  43.  
  44. <script type="text/javascript"
  45. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  46.  
  47. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  48. <meta name="color:background" content="#ffffff"/>
  49. <meta name="color:text" content="#000000"/>
  50. <meta name="color:links135" content="#ffffff"/>
  51. <meta name="color:links24" content="#ffffff"/>
  52. <meta name="color:borda" content="#000000"/>
  53. <meta name="color:links" content="#000000"/>
  54. <meta name="color:title" content="#000000"/>
  55. <meta name="color:asks" content="#ffffff"/>
  56. <meta name="image:bottomleft" content=""/>
  57. <meta name="color:hover" content="#686868"/>
  58. <meta name="image:Sidebar" content=""/>
  59. <meta name="image:Background" content=""/>
  60. <meta name="text:Link one Title" content=""/>
  61. <meta name="text:Link one" content="" />
  62. <meta name="text:Link Three Title" content=""/>
  63. <meta name="text:Link Three" content=""/>
  64. <meta name="text:Link Four Title" content=""/>
  65. <meta name="text:Link Four" content=""/>
  66. <meta name="text:Link two Title" content=""/>
  67. <meta name="text:Link two" content=""/>
  68. <meta name="if:Show Sidebar Image" content="0"/>
  69. <meta name="if:Show Bottom Left Image" content="0"/>
  70. <style type="text/css">
  71.  
  72. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name=”description” content=”{MetaDescription}” />{/block:Description}
  73. <script type=”text/javascript” src=”http://codysherman.com/tools/infinite-scrolling/code”></script>
  74.  
  75.  
  76. <script type=”text/javascript”>
  77. //
  78. function desabilitaMenu(e)
  79. {
  80. if (window.Event)
  81. {
  82. if (e.which == 2 || e.which == 3)
  83. return false;
  84. }
  85. else
  86. {
  87. event.cancelBubble = true
  88. event.returnValue = false;
  89. return false;
  90. }
  91. }
  92. document.oncontextmenu = desabilitaMenu;
  93. document.onmousedown = desabilitaBotaoDireito;
  94. document.onmouseup = desabilitaBotaoDireito;
  95. </script>trols{
  96. position:fixed !important;
  97. }
  98. ::-webkit-scrollbar-thumb:vertical {
  99.  
  100. height:9px;
  101.  
  102. background-color: #a4a4a4;
  103.  
  104. }
  105.  
  106. ::-webkit-scrollbar {
  107.  
  108. width:5px;
  109.  
  110. height:5px;
  111.  
  112. background:#fff;
  113.  
  114. margin-right:5px;
  115.  
  116. }
  117.  
  118. .popup_block{
  119. display: none; /*--hidden by default--*/
  120. background: white ;
  121. padding: 5px;
  122. border: 2px solid #a4a4a4;
  123. float: left;
  124. font-family: "short stack";
  125. font-size: 12;
  126. position: fixed;
  127. top: 50%; left: 50%;
  128. z-index: 99999;
  129. /*--CSS3 Box Shadows--*/
  130. -webkit-box-shadow: 0px 0px 20px #000;
  131. -moz-box-shadow: 0px 0px 20px #000;
  132. box-shadow: 0px 0px 20px #000;
  133. /*--CSS3 Rounded Corners--*/
  134. -webkit-border-radius: 0px;
  135. -moz-border-radius: 0px;
  136. border-radius: 0px;
  137. }
  138. img.btn_close {
  139. float: right;
  140. margin: 0 0px 0 0;
  141. }
  142. /*--Making IE6 Understand Fixed Positioning--*/
  143. *html #fade {
  144. position: absolute;
  145. }
  146. *html .popup_block {
  147. position: absolute;
  148. }
  149. @font-face {
  150. font-family: "kg luck of the irish";
  151. src: url('http://static.tumblr.com/nsunyax/RJSlz7y7g/kgluckoftheirish.ttf');
  152. }
  153. @font-face {
  154. font-family: "kg luck of the irish";
  155. src: url('http://static.tumblr.com/nsunyax/RJSlz7y7g/kgluckoftheirish.ttf');
  156. }
  157.  
  158. @font-face { font-family: "stars"; src: url('http://static.tumblr.com/hcfbjje/sfRlpm8t0/starsfromoureyes.ttf'); }
  159.  
  160. .left{
  161. float: left;
  162. margin-right: 20px;
  163. width: 802px;
  164. }
  165.  
  166. .right{
  167. float: right;
  168. width: 200px;
  169. background-color: {color:Background};
  170. }
  171.  
  172. body {
  173. padding: 0px;
  174. margin: 0px;
  175. color:#000;
  176. font-family: Short Stack;
  177. font-size: 11px;
  178. background-color: {color:Background};
  179. background-image:url({image:Background});
  180. background-attachment: fixed;
  181. background-repeat: repeat;
  182. }
  183.  
  184. a:link, a:active, a:visited{
  185. color:{color:links};
  186. text-decoration: none;
  187. -webkit-transition: color 0.4s ease-out;
  188. -moz-transition: color 0.4s ease-out;
  189. }
  190.  
  191. a:hover{
  192. color:{color:hover};
  193. -webkit-transition: color 0.4s ease-out;
  194. -moz-transition: color 0.4s ease-out;
  195. text-shadow:0px 0px 1px {color:hover};
  196. }
  197.  
  198. .entry {
  199. margin:1px;
  200. padding: 1px;
  201. float:left;
  202. background-color: white;
  203. border: 1px solid {color:borda};
  204. font-family: Short Stack;
  205. font-size: 11px;
  206. line-height:10px;
  207. {block:IndexPage}
  208. overflow: hidden;
  209. width:320px;
  210. {/block:IndexPage}
  211. {block:PermalinkPage}
  212. width:450px;
  213. margin-left: 158px;
  214. {/block:PermalinkPage}
  215. }
  216.  
  217. .bubble {align:right;background:{color:asks}; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  218. .bubble p {margin:1px 0px;}
  219. .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:asks};}
  220. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: {color:asks}}
  221.  
  222. .entry #permalink {
  223. position: absolute;
  224. margin-top: 9px;
  225. margin-left: 300px;
  226. opacity: 0;
  227. -webkit-transition: all .5s ease;
  228. -moz-transition: all .5s ease;
  229. -o-transition: all .5s ease;
  230. transition: all .5s ease;
  231. }
  232.  
  233. .entry:hover #permalink {
  234. margin-top: 9px;
  235. margin-left: 6px;
  236. opacity: 1;
  237. }
  238.  
  239. .countreblog {
  240. letter-spacing:1px;
  241. font-family: short stack;
  242. font-size:10px;
  243. color: #a4a4a4;
  244. line-height:5px;
  245. margin: 2px;
  246. background:#fafafa;
  247. background-repeat:repeat;
  248. border:1px solid #fafafa;
  249. padding:2px 2px;
  250. opacity: 1;
  251. -webkit-border-radius:0px;
  252. moz-border-radius:0px;
  253. -o-border-radius:0px;
  254. border-radius:0px;
  255. }
  256.  
  257. .countreblog a { color: #000; }
  258.  
  259.  
  260. div#sidebar{
  261. border-radius: 6px;
  262. -moz-border-radius: 6px;
  263. -webkit-border-radius: 0px 30px 0px 0px;
  264. z-index:999999999999999;
  265. position:absolute !important;
  266. position:fixed !important;
  267. font-family: 'short stack', cursive;
  268. font-size: 11px;
  269. background-color: transparent;
  270. width:220px;
  271. height:auto;
  272. top:120px;
  273. left: 20px;
  274. padding:2px;
  275. }
  276. div#desc{
  277. height:auto;
  278. width:auto;
  279. background: white;
  280. border-left: 1px solid {color:borda};
  281. border-right: 1px solid {color:borda};
  282. border-top: 1px solid {color:borda};
  283. border-top-right-radius:10px;
  284. border-top-left-radius:10px;
  285. box-shadow: 0px 5px 20px white;
  286. }
  287. #link1 a{
  288. opacity: 0.6;
  289. color: black;
  290. position: fixed;
  291. background: {color:links135};
  292. display: inline-block;
  293. font-family: "short stack";
  294. font-size: 10px;
  295. text-align: center;
  296. line-height: 17px;
  297. height: 15px;
  298. width: 72px;
  299. transition: all 0.5s ease-out;
  300. -o-transition-transition: all 0.5s ease-out;
  301. -webkit-transition: all 0.5s ease-out;
  302. -moz-transition: all 0.5s ease-out;
  303. margin: -1px 0px -1px 1px;
  304. border-top-right-radius:00px;
  305. border-bottom-right-radius:10px;
  306. border-bottom-left-radius:10px;
  307. border-top-left-radius:0px;}
  308.  
  309. #link1 a:hover {
  310. padding-top:23px;
  311. opacity: 0.9;
  312. color:#000000;
  313. transition: all 0.5s ease-out;
  314. -o-transition-transition: all 0.5s ease-out;
  315. -webkit-transition: all 0.5s ease-out;
  316. -moz-transition: all 0.5s ease-out;}
  317.  
  318. #link2 a{
  319. opacity: 0.6;
  320. color: black;
  321. position: fixed;
  322. background: {color:links24};
  323. display: inline-block;
  324. font-family: 'short stack';
  325. font-size: 10px;
  326. text-align: center;
  327. line-height: 15px;
  328. height: 15px;
  329. width: 72px;
  330. transition: all 0.5s ease-out;
  331. -o-transition-transition: all 0.5s ease-out;
  332. -webkit-transition: all 0.5s ease-out;
  333. -moz-transition: all 0.5s ease-out;
  334. margin: -1px 0px 0px 75px;
  335. border-top-right-radius:00px;
  336. border-bottom-right-radius:10px;
  337. border-bottom-left-radius:10px;
  338. border-top-left-radius:0px;}
  339.  
  340. #link2 a:hover {
  341. padding-top: 23px;
  342. opacity: 0.9;
  343. color:#000000;
  344. transition: all 0.5s ease-out;
  345. -o-transition-transition: all 0.5s ease-out;
  346. -webkit-transition: all 0.5s ease-out;
  347. -moz-transition: all 0.5s ease-out;}
  348.  
  349. #link3 a{
  350. opacity: 0.6;
  351. color: black;
  352. position: fixed;
  353. background: {color:links135};
  354. display: inline-block;
  355. font-family: 'short stack';
  356. font-size: 10px;
  357. text-align: center;
  358. line-height: 15px;
  359. height: 15px;
  360. width: 70px;
  361. transition: all 0.5s ease-out;
  362. -o-transition-transition: all 0.5s ease-out;
  363. -webkit-transition: all 0.5s ease-out;
  364. -moz-transition: all 0.5s ease-out;
  365. margin: -1px 0px 0px 150px;
  366. border-top-right-radius:00px;
  367. border-bottom-right-radius:10px;
  368. border-bottom-left-radius:10px;
  369. border-top-left-radius:0px;}
  370.  
  371. #link3 a:hover {
  372. padding-top: 23px;
  373. opacity: 0.9;
  374. color:#000000;
  375. transition: all 0.5s ease-out;
  376. -o-transition-transition: all 0.5s ease-out;
  377. -webkit-transition: all 0.5s ease-out;
  378. -moz-transition: all 0.5s ease-out;}
  379.  
  380. #posts {
  381. width: 1100px;
  382. margin-left:280px;
  383. margin-top:2px;
  384. float:left;
  385. font-family: "short stack";
  386. }
  387. .cred{
  388. top: 0px;
  389. left:0px;
  390. position:fixed;
  391. }
  392. #infscr-loading{
  393. bottom: -70px;
  394. position: absolute;
  395. left: 50%;
  396. margin-left:-8px;
  397. width:16px;
  398. height:11px;
  399. overflow:hidden;
  400. margin-bottom: 50px;
  401. }
  402. div#titlee{
  403. font-family: "stars";
  404. font-size: 15px;
  405. line-height: 14px;
  406. margin-top: 5px;
  407. color:#424242;
  408. -moz-border-radius:6px; border-radius:6px;
  409. -webkit-transform: rotate(0deg);
  410. -moz-transform: rotate(0deg);
  411. }
  412.  
  413.  
  414. blockquote{
  415. padding:0px 0px 2px 5px;
  416. margin:0px 0px 0px 0px;
  417. border-left: 1px solid #555555;
  418. }
  419.  
  420. blockquote p, ul{
  421. margin:0px;
  422. padding:0px;
  423. }
  424.  
  425. a img{border: 0px;}
  426.  
  427. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  428.  
  429. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  430. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  431.  
  432. .notes img{
  433. width:10px;
  434. position:relative;
  435. top:3px;
  436. }
  437.  
  438. .photoset, .photoset_row, div.photoset_photo, .photoset img, .html_photoset {
  439. {block:IndexPage}
  440. width: 250px !important;
  441. {/block:IndexPage}
  442. }
  443. .video embed, .post div.video object {width:250px !important; height:120px !important;}
  444.  
  445. .title{
  446. font-family: 'kg luck of the irish';
  447. font-size: 18px;
  448. line-height:18px;
  449. color: {color:title};
  450. font-weight: normal;
  451. }
  452.  
  453. div#borda {
  454. border-bottom: 2px dashed {color:borda};}
  455.  
  456.  
  457. </style>
  458.  
  459. {block:IndexPage}
  460. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  461. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  462.  
  463. <script type="text/javascript">
  464. $(window).load(function () {
  465. var $content = $('#posts');
  466. $content.masonry({itemSelector: '.entry'}),
  467. $content.infinitescroll({
  468. navSelector : 'div#pagination',
  469. nextSelector : 'div#pagination a#nextPage',
  470. itemSelector : '.entry',
  471. loading: {
  472. finishedMsg: '',
  473. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  474. },
  475. bufferPx : 600,
  476. debug : false,
  477. },
  478. // call masonry as a callback.
  479. function( newElements ) {
  480. var $newElems = $( newElements );
  481. $newElems.hide();
  482. // ensure that images load before adding to masonry layout
  483. $newElems.imagesLoaded(function(){
  484. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  485.  
  486.  
  487. });
  488. });
  489. });
  490. </script>
  491.  
  492. {/block:IndexPage}
  493.  
  494. </div>
  495. <div class="cred"> <a href="http://vikki-xo.tumblr.com">&copy;</a></div>
  496. <title>{title}</title>
  497.  
  498. <link rel="shortcut icon" href="{Favicon}">
  499. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  500. <meta name="viewport" content="width=820" />
  501.  
  502.  
  503.  
  504. <div class="wrapper">
  505.  
  506. <div class="header">
  507.  
  508. </div>
  509.  
  510. <div id="sidebar"><div id="desc"><center>{block:ifshowsidebarimage}<a href="/"><img src="{image:sidebar}" style="-webkit-border-radius: 10px 10px 10px 10px;;" margin-top:0px; width=216px></a>{/block:ifshowsidebarimage} </center><center><div id="titlee">{Title}</div><div id="borda"></div></center> <p>
  511. <center> <!--{block:Description}--><center>
  512. <meta name="description" content="{MetaDescription}" />
  513. <!--{/block:Description}-->
  514. <center>{description}</center>
  515. </center></div>
  516. <div id="borda"></div>
  517. <div id="link1"> <a href="/">home</a> </div>
  518.  
  519. <div id="link3"> <a href="#?w=450" rel="04" class="poplight">links</a> </div>
  520.  
  521. <div id="link2"> <a href="/ask">ask</a></div>
  522. </div>
  523.  
  524. <div class="left">
  525.  
  526. <div id="posts">
  527.  
  528. {block:Posts}
  529. <div class="entry">
  530.  
  531. {block:Text}
  532. {block:Title}<a href="{permalink}"><span class="title">{Title}</span></a>{/block:Title}
  533. <span class="entrytext">{Body}</span>
  534. <P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a>
  535. {/block:Text}
  536.  
  537. {block:Link}
  538. <a href="{URL}" class="title">{Name}</a>
  539. {block:Description}{Description}{/block:Description}
  540. {block:IndexPage}<P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a> {/block:IndexPage}
  541. {block:Link}
  542.  
  543. {block:Answer}
  544. <div class="post"><div class="askborder">
  545. <img src="{askerportraiturl-40}" width="40px"></div><div class="bubble"><span></span>{asker} said: {Question}</div><br>
  546. Then I was like: {Answer}
  547. </div>
  548. <P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a>
  549. {/block:Answer}
  550. {block:Photo}
  551. <center>
  552. {block:IndexPage}
  553. <div id="permalink">
  554. <span class="countreblog"><a href="{Permalink}">{NoteCount} notes</a></span> <span class="countreblog"> <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  555. {LinkOpenTag}<div class="photo"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=320px/></div>{LinkCloseTag}{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=450px/>{LinkCloseTag}{/block:PermalinkPage}</center>
  556. {block:ifshowcaptions}{caption}{/block:ifshowcaptions}
  557. {/block:Photo}
  558.  
  559. {block:Photoset}
  560. <center><div class="photoset_photo" width="250px">{Photoset-250}</div></center>
  561. <p style="text-align: right;">
  562. <br>
  563. <a href="{permalink}">{NoteCountWithLabel}</a></p></span></a>
  564. </p>
  565. {/block:Photoset}
  566. {block:Quote}
  567. {Quote}</span>
  568. {block:Source}<strong>{Source}</strong>{/block:Source}
  569. <P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a>
  570. {/block:Quote}
  571.  
  572. {block:Chat}
  573. {block:Title}<span class="title">{Title}</span>{/block:Title}
  574. <ul class="chat">
  575. {block:Lines}
  576. <li class="user_{UserNumber}">
  577. {block:Label}
  578. <span class="label">{Label}</span>
  579. {/block:Label}
  580.  
  581.  
  582. {Line}
  583. </li>
  584. {/block:Lines}
  585. </ul>
  586. <P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a>
  587. {/block:Chat}
  588.  
  589. {block:Audio}
  590. <div style="width:320px; height:30px;">
  591. {AudioPlayerBlack}
  592. </div>
  593. {block:IndexPage}<span class="permalink">
  594. <P ALIGN=Right><a href="{Permalink}">{NoteCountWithLabel}</a>
  595. </span>{/block:IndexPage}
  596. {/block:Audio}
  597.  
  598. {block:Video}
  599. {block:IndexPage}
  600. <div id="permalink">
  601. <span class="countreblog"><a href="{Permalink}">{NoteCount} notes</a></span> <span class="countreblog"> <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  602. <center>
  603. <div class="video">{Video-250}</div></center></center>
  604. {/block:IndexPage}
  605. {block:PermalinkPage}
  606. <center>
  607. {Video-550}</center>
  608. {/block:PermalinkPage}
  609. {block:Video}
  610.  
  611. {block:PermalinkPage}
  612. <center>
  613. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  614.  
  615.  
  616. {/block:PermalinkPage}
  617.  
  618.  
  619. {block:PostNotes}{PostNotes}
  620. {/block:PostNotes}
  621. </div>
  622.  
  623.  
  624. {/block:Posts}
  625. </div>
  626. </div>
  627. {block:IndexPage}
  628. {block:Pagination}
  629. <div id="pagination">
  630. {block:NextPage}
  631. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  632. {/block:NextPage}
  633. {block:PreviousPage}
  634. <a href="{PreviousPage}">&larr;&nbsp;</a>
  635. {/block:PreviousPage}
  636. </div>
  637. {/block:Pagination}
  638. {/block:IndexPage}
  639. </div>
  640. </body>
  641. <div id="04" class="popup_block">
  642. <center>
  643. <a href="/face">face - </a> {block:ifLinkOneTitle} <a href="{text:Link One}"> {text:Link One Title} - </a> {/block:ifLinkOneTitle}
  644. {block:ifLinkTwoTitle} <a href="{text:Link Two}"> {text:Link Two Title} - </a> {/block:ifLinkTwoTitle} {block:ifLinkThreeTitle}<a href="{text:Link Three}"> {text:Link Three Title} - </a> {/block:ifLinkThreeTitle} {block:ifLinkFourTitle}<a href="{text:Link Four}"> {text:Link Four Title} - </a> {/block:ifLinkFourTitle} <a href="/faq">faq</a> - <a href="/mine">mine</a>  - <a href="/family">family</a>
  645. </center></div></div>
  646.  
  647.  
  648. </div></div></div></div></div></div></div></div></div></div>
  649.  
  650. </div>
  651. {block:ifshowbottomleftimage} <div style="position:fixed; bottom:0px; left:0px;">
  652. <img src="{image:bottomleft}">
  653. <div style="position:fixed; bottom: 70px; left:0px;">{/block:ifshowbottomleftimage}
  654. </html>
  655.  
  656. <!--