Advertisement
cindie

Buono

Aug 3rd, 2011
8,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.31 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. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <!--
  5.  
  6. "BUONO" THEMED BY CINDIE.TUMBLR.COM
  7. Please do not remove this credit!
  8. Thanks for using my public theme, enjoy!
  9.  
  10. -->
  11.  
  12.  
  13. <head>
  14.  
  15. <!-- Default Colors -->
  16. <META name="image:Background" content="">
  17. <META name="image:Sidebar" content="http://28.media.tumblr.com/tumblr_lm4p2xmk0I1qa6im7o1_500.gif"/>
  18. <META name="image:Sidebar Background" content="">
  19. <META name="text:Sidebar Image Height" content="100px"/>
  20. <META name="if:Show Sidebar Image" content="1"/>
  21. <META name="if:Show Menu" content="1"/>
  22. <META name="if:Show Description" content="1"/>
  23. <META name="if:Text Align Center" content="1/>
  24. <META name="if:Show Sidebar Border" content="0"/>
  25. <META name="if:Box Shadow" content="0"/>
  26. <META name="if:Show Bigger Posts" content="0"/>
  27. <META name="if:Show Captions" content="0"/>
  28. <META name="if:Show Custom Scrollbar" content="1"/>
  29. <META name="if:Show Back to Top" content="1"/>
  30. <META name="if:Infinite Scrolling" content="0"/>
  31. <META name="color:Background" content="#f9f9f9">
  32. <META name="color:Sidebar" content="transparent">
  33. <META name="color:Tables" content="#ffffff">
  34. <META name="color:Permalink" content="transparent">
  35. <META name="color:Permalink Text" content="#eee">
  36. <META name="color:Permalink Text Hover" content="#000">
  37. <META name="color:Font" content="#666666">
  38. <META name="color:Link" content="#dbdbdb">
  39. <META name="color:Link hover" content="#000000">
  40. <META name="color:Headers" content="#eee">
  41. <META name="color:Borders" content="#ebebeb">
  42. <META name="color:Nav font" content="#dddddd">
  43. <META name="color:Nav Background" content="transparent">
  44. <META name="color:Nav hover" content="#909090">
  45. <META name="color:Nav hover Background" content="#fff">
  46. <META name="color:Scrollbar" content="#ffffff">
  47. <META name="color:Scrollbar Main" content="#eeeeee">
  48. <META name="text:Notes Text" content="Notes"/>
  49. <META name="text:Menu Link One" content=""/>
  50. <META name="text:Menu Link One URL" content=""/>
  51. <META name="text:Menu Link Two" content=""/>
  52. <META name="text:Menu Link Two URL" content=""/>
  53. <META name="text:Menu Link Three" content=""/>
  54. <META name="text:Menu Link Three URL" content=""/>
  55. <META name="text:Menu Link Four" content=""/>
  56. <META name="text:Menu Link Four URL" content=""/>
  57. <META name="text:Menu Link Five" content=""/>
  58. <META name="text:Menu Link Five URL" content=""/>
  59. <META name="text:Menu Link Six" content=""/>
  60. <META name="text:Menu Link Six URL" content=""/>
  61. <!-- End Default Colors -->
  62.  
  63. {block:IfInfiniteScrolling}
  64. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfInfiniteScrolling}
  65.  
  66. <script type="text/javascript" src="http://davidwalsh.name/dw-content/jquery-1.3.2.js"></script>
  67. <script type="text/javascript" src="http://davidwalsh.name/dw-content/jquery.scrollTo-1.4.0-min.js"></script>
  68. <script type="text/javascript">
  69. jQuery.fn.topLink = function(settings) {
  70. settings = jQuery.extend({
  71. min: 1,
  72. fadeSpeed: 200,
  73. ieOffset: 50
  74. }, settings);
  75. return this.each(function() {
  76. //listen for scroll
  77. var el = $(this);
  78. el.css('display','none'); //in case the user forgot
  79. $(window).scroll(function() {
  80. if(!jQuery.support.hrefNormalized) {
  81. el.css({
  82. 'position': 'absolute',
  83. 'top': $(window).scrollTop() + $(window).height() - settings.ieOffset
  84. });
  85. }
  86. if($(window).scrollTop() >= settings.min)
  87. {
  88. el.fadeIn(settings.fadeSpeed);
  89. }
  90. else
  91. {
  92. el.fadeOut(settings.fadeSpeed);
  93. }
  94. });
  95. });
  96. };
  97.  
  98. $(document).ready(function() {
  99. $('#top-link').topLink({
  100. min: 400,
  101. fadeSpeed: 500
  102. });
  103. //smoothscroll
  104. $('#top-link').click(function(e) {
  105. e.preventDefault();
  106. $.scrollTo(0,300);
  107. });
  108. });
  109.  
  110.  
  111. </script>
  112.  
  113. <link rel="stylesheet" href="http://static.tumblr.com/20pvjfl/5xklkh0ia/fonts.css" />
  114.  
  115. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  116. <meta name="description" content="{MetaDescription}" />
  117.  
  118. <title>{title}</title>
  119. <link rel="shortcut icon" href="{Favicon}">
  120. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  121.  
  122. <style type="text/css">
  123. body {
  124. background-color: {color:Background};
  125. background-image: url('{image:Background}');
  126. background-position:center center;
  127. background-repeat: repeat;
  128. background-attachment:fixed;
  129. color:{color:font};
  130. cursor: url(""), default;
  131. text-align:justify;
  132. margin: 0px;
  133. padding: 0px;
  134. letter-spacing:1px;
  135. font-family:Ms Gothic;
  136. text-align:{block:IfTextAlignCenter}
  137. center{/block:IfTextAlignCenter};
  138. font-size:10px;
  139. }
  140.  
  141. a:link, a:visited, a:active {
  142. color: {color:Link};
  143. cursor: default;
  144. text-decoration:none;
  145. transition-duration: 0.50s;
  146. -moz-transition-duration: 0.50s;
  147. -webkit-transition-duration: 0.50s;
  148. -o-transition-duration: 0.50s;
  149. }
  150.  
  151. a:hover {
  152. color: {color:link hover};
  153. text-decoration:none;
  154. }
  155.  
  156. {block:IfShowCustomScrollbar}
  157. ::-webkit-scrollbar-thumb:vertical {
  158. background-color:{color:Scrollbar};
  159. height:100px;
  160. -moz-border-radius: 10px 30px;
  161. border-radius: 3px;
  162. }
  163.  
  164. ::-webkit-scrollbar-thumb:horizontal {
  165. background-color:{color:Scrollbar};
  166. height:10px !important;
  167. }
  168.  
  169. ::-webkit-scrollbar {
  170. height:10px;
  171. width:10px;
  172. background-color:{color:Scrollbar Main};
  173. }
  174. {/block:IfShowCustomScrollbar}
  175.  
  176.  
  177. li {
  178. text-align:left;
  179. }
  180.  
  181. br{
  182. padding:1px;
  183. margin:1px;
  184. }
  185.  
  186. h1{
  187. font-weight:bold;
  188. display:inline;
  189. font-size:20px;
  190. padding-top:2px;
  191. margin-top:1px;
  192. font-family:Arial Black;
  193. text-transform:normal;
  194. }
  195.  
  196. .header{
  197. color:{color:Headers};
  198. font-size:13px;
  199. padding-top:2px;
  200. margin-top:1px;
  201. text-transform:normal;
  202. }
  203.  
  204. a.menu {
  205. display:block;
  206. background:{color:Nav Background};
  207. color: {color:Nav font};
  208. font-size:7px;
  209. letter-spacing:2px;
  210. padding:4px;
  211. border-left:6px solid {color:Borders};
  212. text-transform:uppercase;
  213. text-align: right;
  214. -webkit-transition: all 0.3s ease-out;
  215. -moz-transition: all 0.3s ease-out;
  216. transition: all 0.3s ease-out;cursor:
  217. }
  218.  
  219. a.menu:hover {
  220. background:{color:Nav hover Background};
  221. color:{color:Nav hover};
  222. border-left:10px solid {color:Borders};
  223. text-align:center;
  224. letter-spacing:5px;
  225. -webkit-transition: all 0.3s ease-out;
  226. -moz-transition: all 0.3s ease-out;
  227. transition: all 0.3s ease-out;cursor:
  228. }
  229.  
  230. img {
  231. padding: 0px;
  232. filter: alpha (opacity=100);
  233. opacity: 1.0;
  234. -webkit-transition: all 0.3s ease-out;
  235. -moz-transition: all 0.3s ease-out;
  236. transition: all 0.3s ease-out;cursor:
  237. }
  238.  
  239. img:hover {
  240. filter: alpha (opacity=80);
  241. opacity: 0.80;
  242. -webkit-transition: all 0.5s ease-out;
  243. -moz-transition: all 0.5s ease-out;
  244. transition: all 0.5s ease-out;cursor:
  245. }
  246.  
  247. #sidebar {
  248. margin:0 auto;
  249. margin-top:100px;
  250. margin-left:620px;
  251. {block:IfShowBiggerPosts}
  252. margin-left:720px;
  253. {/block:IfShowBiggerPosts}
  254. padding:5px;
  255. width:200px;
  256. position:fixed;
  257. {block:IfShowSidebarBorder}
  258. border:1px solid {color:Borders};
  259. {/block:IfShowSidebarBorder}
  260. background-image:url('{image:Sidebar Background}');
  261. background-color:{color:Sidebar};
  262. -moz-border-radius: 10px 30px;
  263. border-radius: 3px;
  264. {block:IfBoxShadow}
  265. border-radius: 2px 2px 2px 2px;
  266. -moz-border-radius: 2px 2px 0px 0px;
  267. -moz-box-shadow: 1px 1px 1px #CCC;
  268. -webkit-box-shadow: 1px 1px 1px #CCC;
  269. box-shadow: 1px 1px 1px #CCC;
  270. {/block:IfBoxShadow}
  271. }
  272.  
  273. .menu{
  274. margin-top:1px;
  275. background-color:{color:Top};
  276. -moz-border-radius: 10px 30px;
  277. border-radius: 3px;
  278. }
  279.  
  280. .des{
  281. margin-top:5px;
  282. margin-bottom:1px;
  283. overflow:hidden;
  284. }
  285.  
  286. .imgg {
  287. text-align:left;
  288. margin-top:4px;
  289. }
  290.  
  291. .previouss {
  292. position:fixed;
  293. margin-top:40px;
  294. margin-left:10px;
  295. font-size:30px;
  296. }
  297.  
  298. .previouss:hover{
  299. -webkit-transition: all 0.3s ease-out;
  300. -moz-transition: all 0.3s ease-out;
  301. transition: all 0.3s ease-out;cursor:
  302. }
  303.  
  304. .nextt {
  305. position:fixed;
  306. margin-top:20px;
  307. margin-left:10px;
  308. font-size:30px;
  309. }
  310.  
  311. .nextt:hover{
  312. -webkit-transition: all 0.3s ease-out;
  313. -moz-transition: all 0.3s ease-out;
  314. transition: all 0.3s ease-out;cursor:
  315. }
  316.  
  317.  
  318. #content {
  319. margin:0 auto;
  320. margin-top:0px;
  321. margin-left:205px;
  322. margin-bottom:5px;
  323. width: 500px;
  324. position: relative;
  325. background-color: transparent;
  326. }
  327.  
  328. #post {
  329. width:400px;
  330. {block:IfShowBiggerPosts}
  331. width:500px;
  332. {/block:IfShowBiggerPosts}
  333. margin-top:4px;
  334. overflow:hidden;
  335. background-color:{color:Tables};
  336. -moz-border-radius: 10px 30px;
  337. border-radius: 3px;
  338. {block:IfBoxShadow}
  339. border-radius: 2px 2px 2px 2px;
  340. -moz-border-radius: 2px 2px 0px 0px;
  341. -moz-box-shadow: 1px 1px 1px #CCC;
  342. -webkit-box-shadow: 1px 1px 1px #CCC;
  343. box-shadow: 1px 1px 1px #CCC;
  344. {/block:IfBoxShadow}
  345. }
  346.  
  347. .perma{
  348. background-color:{color:Permalink};
  349. color:{color:Permalink Text};
  350. float: left;
  351. margin-left: 0px;
  352. margin-top:-10px;
  353. position: absolute;
  354. text-align: left;
  355. -moz-border-radius: 10px 30px;
  356. border-radius: 3px;
  357. width: 400px;
  358. {block:IfShowBiggerPosts}
  359. width:500px;
  360. {/block:IfShowBiggerPosts}
  361. height:10px;
  362. font-size: 11px;
  363. -webkit-transition: 0.5s ease-in;
  364. opacity:0;
  365. }
  366.  
  367. .permalink a{color:{color:Permalink Text};}
  368. .permalink a:hover {color:{color:Permalink Text Hover};}
  369. .entry:hover .perma {opacity: 50;}
  370.  
  371. blockquote{
  372. border-left: 5px solid {color:Borders};
  373. padding:1px; padding-left: 5px; margin: 0px;
  374. }
  375.  
  376. .entry{
  377. background-color:;
  378. }
  379.  
  380. .entry img {
  381. max-width: 400px;
  382. {block:IfShowBiggerPosts}
  383. max-width:500px;
  384. {/block:IfShowBiggerPosts}
  385. }
  386.  
  387. #ask img {
  388. width:40px;
  389. }
  390.  
  391. #asker{
  392. margin: auto;
  393. background-color:#eee;
  394. padding:10px;
  395. -moz-border-radius: 10px 30px;
  396. border-radius: 3px
  397. }
  398.  
  399. ol.notes {
  400. font-size:9px;
  401. -moz-border-radius: 10px 30px;
  402. border-radius: 3px;
  403. width: 400px;
  404. {block:IfShowBiggerPosts}
  405. width:500px;
  406. {/block:IfShowBiggerPosts}
  407. padding: 0px;
  408. margin: 1px 0px;
  409. list-style-type: none;
  410. background-color:{color:Tables};
  411. border-bottom: solid 1px {color:Borders};
  412. text-align:left;
  413. }
  414.  
  415. ol.notes li.note {
  416. border-top: solid 1px {color:Borders};
  417. padding: 2px;
  418. }
  419.  
  420. ol.notes li.note img.avatar {
  421. vertical-align: -4px;
  422. margin-right: 5px;
  423. width: 14px;
  424. height: 14px;
  425. }
  426.  
  427. ol.notes li.note span.action {
  428. font-weight:normal;
  429. }
  430.  
  431. ol.notes li.note .answer_content {
  432. font-weight: normal;
  433. }
  434.  
  435. ol.notes li.note blockquote {
  436. border-color: {color:Borders};
  437. padding: 4px 4px;
  438. margin: 1px 0px 0px 5px;
  439. }
  440.  
  441. ol.notes li.note blockquote a {
  442. text-decoration: none;
  443. }
  444.  
  445. #top-link{ display:none;
  446. position:fixed;
  447. left:100px;
  448. bottom:5px;
  449. color:#000;
  450. font-family: consolas;
  451. text-decoration:none;
  452. background:none;
  453. font-size:12px;
  454. letter-spacing:-1px;
  455. }
  456.  
  457. {CustomCSS}
  458. </style>
  459. </head>
  460.  
  461. <body>
  462. <div id="sidebar">
  463.  
  464. <div class="imgg">
  465. {block:IfShowSidebarImage}
  466. <div style="width:200px;height:{block:IfSidebarImageHeight}{text:Sidebar Image Height}{/block:IfSidebarImageHeight};overflow:hidden;"><img style="border:none;max-width:210px;min-width:210px;" src="{image:Sidebar}"></div><br>
  467. {/block:IfShowSidebarImage}
  468. </div>
  469.  
  470. {block:IfShowMenu}
  471. <div class="menu">
  472. <a href="/" class="menu">Home</a>
  473. <a href="/ask" class="menu">Ask</a>
  474. {block:IfMenuLinkOne}<a href="{block:IfMenuLinkOneURL}{text:Menu Link One URL}{/block:IfMenuLinkOneURL}" class="menu">{text:Menu Link One}{/block:IfMenuLinkOne}</a>
  475.  
  476. {block:IfMenuLinkTwo}<a href="{block:IfMenuLinkTwoURL}{text:Menu Link Two URL}{/block:IfMenuLinkTwoURL}" class="menu">{text:Menu Link Two}{/block:IfMenuLinkTwo}</a>
  477.  
  478. {block:IfMenuLinkThree}<a href="{block:IfMenuLinkThreeURL}{text:Menu Link Three URL}{/block:IfMenuLinkThreeURL}" class="menu">{text:Menu Link Three}{/block:IfMenuLinkThree}</a>
  479.  
  480. {block:IfMenuLinkFour}<a href="{block:IfMenuLinkFourURL}{text:Menu Link Four URL}{/block:IfMenuLinkFourURL}" class="menu">{text:Menu Link Four}{/block:IfMenuLinkFour}</a>
  481.  
  482. {block:IfMenuLinkFive}<a href="{block:IfMenuLinkFiveURL}{text:Menu Link Five URL}{/block:IfMenuLinkFiveURL}" class="menu">{text:Menu Link Five}{/block:IfMenuLinkFive}</a>
  483.  
  484. {block:IfMenuLinkSix}<a href="{block:IfMenuLinkSixURL}{text:Menu Link Six URL}{/block:IfMenuLinkSixURL}" class="menu">{text:Menu Link Six}{/block:IfMenuLinkSix}</a>
  485. <a href="http://cindie.tumblr.com" class="menu">Theme</a>
  486. </div>
  487. {/block:IfShowMenu}
  488.  
  489. <div class="des">
  490. {block:IfShowDescription}
  491. {block:Description}{Description}{/block:Description}
  492. {/block:IfShowDescription}
  493. </div>
  494. </div>
  495.  
  496. {block:IfNotInfiniteScrolling}
  497. <div class="previouss">
  498. {block:Pagination}
  499. {block:PreviousPage}
  500. <a href="{PreviousPage}"><big>»</big></a>
  501. {/block:PreviousPage}
  502. </div>
  503.  
  504. <div class="nextt">
  505. {block:NextPage}
  506. <a href="{NextPage}"><big>«</big></a>
  507. {/block:NextPage}
  508. {/block:Pagination}
  509. </div>
  510. {/block:IfNotInfiniteScrolling}
  511.  
  512. <div id="content">
  513. {block:IfInfiniteScrolling}
  514. <div class = "autopagerize_page_element" >
  515. {/block:IfInfiniteScrolling}
  516. {block:Posts}
  517. {block:Text}
  518.  
  519. <div id="entry">
  520. <div id="post">
  521. <div class="header"><a href="{Permalink}">{Title}</a></div>
  522. {Body}<br>
  523.  
  524. <div class="perma">
  525. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  526. </div>
  527.  
  528.  
  529. </div>
  530. </div>
  531. {/block:Text}
  532. {block:Photo}
  533.  
  534. <div class="entry">
  535. <div id="post">
  536.  
  537. {LinkOpenTag}<img style=" -moz-border-radius: 10px 30px;
  538. border-radius: 3px;width:{block:IfNotBiggerPosts}400px;{/block:IfNotBiggerPosts}{block:IfBiggerPosts}500px;{/block:IfBiggerPosts}" src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  539.  
  540. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  541.  
  542. <div class="perma">
  543. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  544. </div>
  545.  
  546. </div>
  547. </div>
  548. {/block:Photo}
  549. {block:Photoset}
  550.  
  551. <div class="entry">
  552. <div id="post">
  553. {block:IfShowBiggerPosts}{Photoset-500}{block:IfShowBiggerPosts}{block:IfNotShowBiggerPosts}{Photoset-400}{block:IfNotShowBiggerPosts}
  554.  
  555. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  556.  
  557. <div class="perma">
  558. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  559. </div>
  560.  
  561. </div>
  562. </div>
  563. {/block:Photoset}
  564. {block:Quote}
  565.  
  566. <div class="entry">
  567. <div id="post">
  568. <div class="header"><h1>"</h1>{Quote}</div>
  569. {block:Source}
  570. <br><i>{Source}</i><br>
  571. {/block:Source}
  572.  
  573. <div class="perma">
  574. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  575. </div>
  576.  
  577. </div>
  578. </div>
  579.  
  580. {/block:Quote}
  581.  
  582. {block:Link}
  583.  
  584. <div class="entry">
  585. <div id="post">
  586. <a href="{URL}"{Target}><div class="header">{Name}</a></div>
  587. {block:Description}
  588. {Description}
  589. {/block:Description}</br>
  590.  
  591. <div class="perma">
  592. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  593. </div>
  594.  
  595. </div>
  596. </div>
  597.  
  598. {/block:Link}
  599.  
  600. {block:Chat}
  601.  
  602. <div class="entry">
  603. <div id="post">
  604. <div class="header">{Title}</a></div>
  605. <ul class="chat">
  606. {block:Lines}
  607. <li class="{Alt}">
  608. {block:Label}
  609. <span class="label">{Label}</span>
  610. {/block:Label}
  611.  
  612. {Line}
  613.  
  614. {/block:Lines}
  615. </ul>
  616.  
  617. </li></br>
  618. <div class="perma">
  619. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  620. </div>
  621.  
  622. </div>
  623. </div>
  624. {/block:Chat}
  625. {block:Video}
  626.  
  627. <div class="entry">
  628. <div id="post">
  629. {block:IfNotShowBiggerPosts}{Video-400}{block:IfNotShowBiggerPosts} {block:IfShowBiggerPosts}{Video-500}{/block:IfShowBiggerPosts}
  630.  
  631. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  632. <br>
  633. <div class="perma">
  634. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  635. </div>
  636.  
  637. </div>
  638. </div>
  639.  
  640. {/block:Video}
  641. {block:Audio}
  642.  
  643. <div class="entry">
  644. <div id="post">
  645. {block:AlbumArt}<img style=" -moz-border-radius: 10px 30px;
  646. border-radius: 3px;" src="{AlbumArtURL}"/>{/block:AlbumArt}
  647. </p>
  648. {AudioPlayerWhite}
  649.  
  650. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  651. <div class="perma">
  652. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  653. </div>
  654.  
  655. </div>
  656. </div>
  657.  
  658. {/block:Audio}
  659.  
  660. {block:Answer}
  661. <div class="entry">
  662. <div id="post">
  663. <div id="asker">{Asker} Asked:{Question}</div>
  664. {Answer}<br>
  665. <div class="perma">
  666. <a href="{Permalink}">{NoteCount} {block:IfNotesText}{text:Notes Text}{/block:IfNotesText}</a>
  667. </div>
  668.  
  669. </div>
  670. </div>
  671. {/block:Answer}
  672.  
  673. {block:PostNotes}
  674. {block:Caption}{Caption}{/block:Caption}
  675. {PostNotes}
  676. {/block:PostNotes}
  677.  
  678. {/block:Posts}
  679. </div>
  680. {block:IfInfiniteScrolling}
  681. </div>
  682. {/block:IfInfiniteScrolling}
  683.  
  684. {block:IfShowBacktoTop}
  685. <div id="top2"></div>
  686. <div id="top-link"><a style="border:none;" href="#top">Back To Top</div>
  687. {/block:IfShowBacktoTop}
  688. </body>
  689. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement