Advertisement
aellionios

unfinished pho theme, finish after u remake urs.

Jan 11th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.78 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" xml:lang="en" lang="en">
  3.  
  4. <!--- Theme #50 by Heidi @ladmilk - Inspired by Selkas ---->
  5.  
  6. <head>
  7.  
  8. <script type="text/javascript"
  9. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  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"></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://static.tumblr.com/eih4pta/Flam72cb8/animate-custom__1_.css";; rel="stylesheet">
  41.  
  42. <title>{Title}</title>
  43. {block:Description}
  44. <meta name="description" content="{MetaDescription}" />
  45. {/block:Description}
  46. <link rel="shortcut icon" href="https://www.kissofnaturesoap.com/shop/images/pointer_blue.gif" />
  47. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  48.  
  49. <meta name="image:Background" content="" />
  50.  
  51. <meta name="color:Background" content="#0f0f0f" />
  52. <meta name="color:Posts" content="#131313" />
  53. <meta name="color:Text" content="#474747" />
  54. <meta name="color:Links" content="#43324e" />
  55. <meta name="color:Blockquote" content="#191919" />
  56. <meta name="color:Posttitle" content="#222222" />
  57. <meta name="color:Bold" content="#4d3760" />
  58. <meta name="color:Italic" content="#271933"/>
  59. <meta name="color:Border" content="#191919" />
  60. <meta name="color:Permalink" content="#191919" />
  61. <meta name="color:PermaText" content="#474747" />
  62. <meta name="color:NoteText" content="#474747" />
  63. <meta name="color:NoteBackground" content="#f6f6f6" />
  64. <meta name="color:Scroll" content="#0f0f0f" />
  65. <meta name="color:Scrollbar" content="#0f0f0f" />
  66. <meta name="color:Scrollbarborder" content="#191919" />
  67.  
  68. <meta name="if:250px" content="1" />
  69. <meta name="if:ShowCaptions" content="0" />
  70. <meta name="if:ShowDescription" content="1" />
  71. <meta name="if:WhiteTumblrControls" content="1" />
  72. <meta name="if:Infinitescroll" content="1" />
  73.  
  74. <meta name="text:PostPadding" content="0px" />
  75.  
  76. <meta name="text:MP3 Link" content=""/>
  77.  
  78. <style type="text/css">
  79.  
  80. @font-face
  81. { font-family:"lovenote"; src: url('https://dl.dropbox.com/s/lg0biqm7jqlyfaq/ck-love-note.ttf?dl=1'); format(“truetype”);}
  82.  
  83.  
  84. /* Tumblr Controls */
  85.  
  86. iframe#tumblr_controls {
  87. top:0%!important;
  88. right:0%!important;
  89. position:fixed!important;
  90. z-index:999999999!important;
  91. {block:ifWhiteTumblrControls}
  92. opacity:0.3;
  93. -webkit-filter:invert(100%);
  94. -moz-filter:invert(100%);
  95. -o-filter:invert(100%);
  96. -ms-filter:invert(100%);
  97. filter:invert(100%);
  98. {/block:ifWhiteTumblrControls}
  99. }
  100.  
  101.  
  102. /* Scroll */
  103.  
  104. ::-webkit-scrollbar { width:5px; height:5px;}
  105. ::-webkit-scrollbar-track-piece { background-color:{color:Scroll}; }
  106. ::-webkit-scrollbar-thumb {
  107. background-color:{color:Scrollbar};
  108. border:1px solid {color:Scrollbarborder};
  109. -webkit-border-radius: 10%;
  110. -moz-border-radius: 10%;
  111. border-radius: 10%;}
  112.  
  113.  
  114. /* Tooltips */
  115.  
  116. #s-m-t-tooltip{
  117. max-width:210px;
  118. margin-top:25px;
  119. margin-left:15px;
  120. padding:2px 5px;
  121. z-index:999999;
  122. background:{color:posts};
  123. border:1px solid {color:Border};
  124. -webkit-border-radius: 10%;
  125. -moz-border-radius: 10%;
  126. border-radius: 10%;
  127. color:{color:text};
  128. font-family:calibri, arial, sans-serif;
  129. font-size:8px;
  130. line-height:8px;
  131. letter-spacing:1px;
  132. text-transform:uppercase;
  133. }
  134.  
  135.  
  136. /*Body*/
  137.  
  138. body {
  139. margin:0;
  140. padding:0;
  141. border:0;
  142. background:url('{image:Background}');
  143. background-attachment:fixed;
  144. background-repeat:repeat;
  145. background-color:{color:Background};
  146. color:{color:Text};
  147. font-family:arial, sans-serif;
  148. font-size:10px;
  149. line-height:12px;
  150. word-wrap:break-word;
  151. }
  152.  
  153. pre {
  154. width:95%;
  155. margin-left:auto;
  156. margin-right:auto;
  157. padding:4px;
  158. background:#f4f4f4;
  159. white-space:pre-wrap;
  160. word-wrap:break-word;
  161. }
  162.  
  163. blockquote {
  164. width:88%;
  165. margin-left:auto;
  166. margin-right:auto;
  167. padding-left:10px;
  168. padding-right:10px;
  169. padding-top:1px;
  170. padding-bottom:1px;
  171. border-left:1px solid {color:Blockquote};
  172. }
  173.  
  174. ul, ol {
  175. margin-left:-15px;
  176. }
  177.  
  178.  
  179. /* Typo */
  180.  
  181. p { margin:3px 0px; }
  182.  
  183. a {
  184. color:{color:Links};
  185. text-decoration:none;
  186. transition-duration: 0.6s;
  187. -moz-transition-duration: 0.6s;
  188. -webkit-transition-duration: 0.6s;
  189. -o-transition-duration: 0.6s;
  190. }
  191.  
  192. a:hover{ color:transparent; }
  193.  
  194. b, strong {
  195. color:{color:Bold};
  196. font-weight:bold;
  197. }
  198.  
  199. i, em {
  200. color:{color:Italic};
  201. font-style:italic;
  202. }
  203.  
  204. h2 {
  205. font-family:helvetica;
  206. font-size:30px;
  207. letter-spacing:-2px;
  208. color:{color:PostTitle}; margin:0 0 10px 0;}
  209.  
  210.  
  211. /* Center Wrapper */
  212.  
  213. #wrapper {
  214. {block:if250px}
  215. width:250px;
  216. {/block:if250px}
  217. height:auto;
  218. margin-left:800px;
  219. margin-right:auto;
  220. margin-top:20px;
  221. margin-bottom:80px;
  222. padding:0;
  223. border:0;
  224. -webkit-animation:fadeInDown 3s;
  225. -moz-animation:fadeInDown 3s;
  226. -o-animation:fadeInDown 3s;
  227. }
  228.  
  229.  
  230. /* Posts */
  231.  
  232. .post_outer {
  233. {block:if250px}
  234. width:270px;
  235. {/block:if250px}
  236. margin-bottom:70px;
  237. background:transparent;
  238. border:1px solid {color:Border};
  239. position:relative;
  240. background:{color:Posts};
  241. }
  242.  
  243. .posts {
  244. {block:if250px}
  245. width:250px;
  246. {/block:if250px}
  247. height:auto;
  248. padding:10px 10px 0px ;
  249. position:relative;
  250. background:{color:Posts};
  251. color:{color:Text};
  252. font-family:arial, sans-serif;
  253. font-size:10px;
  254. line-height:12px;
  255. text-align:left;
  256. }
  257.  
  258. .post_inner { padding:{text:Postpadding}; }
  259.  
  260. .posts img { max-width:100%;-webkit-filter: Grayscale(100%); -webkit-transition-duration: 0.8s; -moz-transition-duration:0.8s; opacity:.5; transition-duration:0.8s; -o-transition-duration:0.8s;}
  261.  
  262. img:hover{-webkit-filter: Grayscale(0%); -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out; }
  263. #photo img { max-width:100%; display:block;-webkit-filter: Grayscale(100%); -webkit-transition-duration: 0.8s; -moz-transition-duration:0.8s; transition-duration:0.8s; -o-transition-duration:0.8s;}
  264.  
  265. img:hover{-webkit-filter: Grayscale(0%); -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out; }
  266. #pset, #vid { margin-bottom:-3px;-webkit-filter: Grayscale(100%); -webkit-transition-duration: 0.8s; opacity:.5; -moz-transition-duration:0.8s; transition-duration:0.8s; -o-transition-duration:0.8s;}
  267.  
  268. img:hover{-webkit-filter: Grayscale(0%); -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out; }
  269.  
  270. #tumblr_lightbox {
  271. background-color:rgba(255,255,255,1)!important;
  272. opacity:1;
  273. }
  274. #tumblr_lightbox img { opacity:0; }
  275. #tumblr_lightbox_caption {
  276. padding-left:17px;
  277. background:none!important;
  278. color:#aaa!important;
  279. font-family:arial!important;
  280. font-size:10.5px!important;
  281. font-weight:normal!important;
  282. text-transform:normal!important;
  283. text-shadow:none!important;
  284. }
  285. #tumblr_lightbox_center_image, #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
  286. padding:0px!important;
  287. opacity:1!important;
  288. -moz-box-shadow:none!important;
  289. -webkit-box-shadow:none!important;
  290. box-shadow:none!important;
  291. -moz-border-radius:0px!important;
  292. -webkit-border-radius:0px!important;
  293. border-radius:0px!important;
  294. }
  295.  
  296.  
  297. /* Perma - Indexpage */
  298.  
  299. #perma {
  300. position:relative;
  301. top:15px;
  302. text-align:right;
  303. color:{color:Border};
  304. }
  305.  
  306. #perma a {
  307. color:{color:Permalink};
  308. font-family:calibri, arial, sans-serif;
  309. font-size:8px;
  310. text-transform:uppercase;
  311. letter-spacing:1px;
  312. }
  313.  
  314. #perma a:hover {
  315. padding-right:5px;
  316. font-style:italic;
  317. }
  318.  
  319.  
  320. /* Perma - Permalinkpage */
  321.  
  322. .perma2 {
  323. color:{color:PermaText};
  324. font-family:calibri, arial, sans-serif;
  325. font-size:8px;
  326. text-transform:uppercase;
  327. line-height:14px;
  328. letter-spacing:1px;
  329. padding-top: 15px;
  330. padding-left: 10px;
  331. padding-bottom:15px;
  332. border-bottom:1px solid {color:Border};
  333. }
  334.  
  335. ol.notes {
  336. height:204px;
  337. overflow:auto;
  338. padding:0px;
  339. margin:15px 10px;
  340. list-style-type:none;
  341. text-align:left;
  342. }
  343.  
  344. li.note {
  345. {block:if250px}
  346. width:224px;
  347. {/block:if250px}
  348. padding:5px 8px;
  349. margin:0px 5px 4px 0px;
  350. background:{color:NoteBackground};
  351. color:{color:NoteText};
  352. font-family:calibri, arial, sans-serif;
  353. font-size:8px;
  354. text-transform:uppercase;
  355. line-height:10px;
  356. letter-spacing:1px;
  357. }
  358.  
  359. li.note a { color:{color:NoteText}; }
  360.  
  361. img.avatar { display:none; }
  362.  
  363.  
  364. /* Ask */
  365.  
  366. .question {
  367. padding:10px 0px;
  368. border-bottom:1px dotted {color:Border};
  369. margin-bottom:10px;
  370. color:{color:AskText};
  371. font-style:italic;
  372. }
  373.  
  374. .q {
  375. width:20px;
  376. height:20px;
  377. position:relative;
  378. background:#191919;
  379. color:#aaa;
  380. font-size:12px;
  381. font-weight:bold;
  382. text-align:center;
  383. line-height:20px;
  384. -webkit-border-radius: 10%;
  385. -moz-border-radius: 10%;
  386. border-radius: 10%;
  387. }
  388.  
  389. .askr a { color:{color:text} }
  390.  
  391. .askr {
  392. margin-top:-20px;
  393. margin-left:26px;
  394. position:absolute;
  395. color:{color:text};
  396. font-family:calibri, arial, sans-serif;
  397. font-size:8px;
  398. text-transform:uppercase;
  399. letter-spacing:1px;
  400. line-height:10px;
  401. }
  402.  
  403.  
  404. /* Chat */
  405.  
  406. #chat {
  407. font-size:8px;
  408. font-family:calibri, arial, sans-serif;
  409. text-transform:uppercase;
  410. letter-spacing:1px;
  411. }
  412.  
  413.  
  414. /* Audio */
  415.  
  416. .audi {
  417. padding:15px 20px;
  418. overflow:hidden;
  419. opacity:.2;
  420. background:#000;
  421. }
  422.  
  423. .audi_info {
  424. padding-top:5px;
  425. color:{color:text};
  426. font-size:8px;
  427. font-family:calibri, arial, sans-serif;
  428. text-transform:uppercase;
  429. letter-spacing:1px;
  430. line-height:14px;
  431. }
  432.  
  433. .kasse {
  434. height:8px;
  435. width:8px;
  436. margin-top:2px;
  437. margin-bottom:2px;
  438. margin-right:5px;
  439. float:left;
  440. border:1px solid {color:Border};
  441. -webkit-border-radius: 10%;
  442. -moz-border-radius: 10%;
  443. border-radius: 10%;
  444. }
  445.  
  446.  
  447. #border {
  448. position: fixed;
  449. bottom:-100px;
  450. margin-left:100px;
  451. background-color:{color:posts};
  452. width:150px;
  453. height: 120%;
  454. opacity: 1;
  455. z-index:0;
  456. transform: rotate(-30deg);
  457. -ms-transform: rotate(-30deg);
  458. -webkit-transform: rotate(-30deg);
  459. -o-transform: rotate(-30deg);
  460. -moz-transform: rotate(-30deg);
  461. }
  462.  
  463. /* Sidebar */
  464.  
  465. #sidewrap {
  466. position:fixed;
  467. bottom:50px;
  468. left:50px;
  469. width:400px;
  470. height:400px;
  471. background:transparent;
  472. padding: 5px;
  473. border: solid 1px red;
  474. }
  475.  
  476. .one {
  477. position: fixed;
  478. margin-left: 10px;
  479. margin-top: -5px;
  480. width: 100px;
  481. height: 100px;
  482. z-index:99;
  483. }
  484.  
  485. .infobox1 {
  486. position:fixed;
  487. margin-left:0px;
  488. margin-top: 320px;
  489. width: 180px;
  490. height: 60px;
  491. z-index: 9px;
  492. background-color:{color:posts};
  493. padding: 5px;
  494. text-align: justify;
  495. }
  496.  
  497. .titlebox {
  498. position:fixed;
  499. margin-left:130px;
  500. margin-top: 50px;
  501. width: 180px;
  502. height: 15px;
  503. z-index: 9px;
  504. background-color:{color:posts};
  505. padding: 10px;
  506. font-family: helvetica;
  507. text-align: right;
  508. font-size: 25px;
  509. line-height: 15px;
  510. text-transform: uppercase;
  511. font-weight: bold;
  512. letter-spacing: -4px;
  513. }
  514.  
  515.  
  516. </style>
  517.  
  518. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script>
  519. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  520. <script>
  521. (function($){
  522. $(document).ready(function(){
  523. $("[title],a[title],img[title]").style_my_tooltips({
  524. tip_follows_cursor:true,
  525. tip_delay_time:30,
  526. tip_fade_speed:300,
  527. attribute:"title"
  528. });
  529. });
  530. })(jQuery);
  531. </script>
  532.  
  533. {block:ifInfinitescroll}
  534. <script type="text/javascript" src="http://static.tumblr.com/q0etgkr/ytzm5f1ke/infinitescrolling.js"></script>
  535. {/block:ifInfinitescroll}
  536.  
  537.  
  538. </head>
  539. <body>
  540.  
  541. <div id="border"></div>
  542.  
  543. <div id="sidewrap">
  544.  
  545. <div class="one"><img src='http://o.aolcdn.com/hss/storage/fss/6301b2ff91b5ef1195eb886a6f6ec217/CxzaGFHUQAAAHsS.png'/></div>
  546.  
  547. <div class="infobox1">"long qoute here' something something haaah okay bunch of words i cant really know what to put here, but hi i love hyuna so much, im jamming while im sitting here.</div>
  548. <div class="titlebox">tangled web</div>
  549.  
  550.  
  551. </div>
  552.  
  553.  
  554. <div id="wrapper">
  555.  
  556.  
  557. <div class="autopagerize_page_element" >
  558. {block:Posts}
  559. <div class="post_outer">
  560. <div class="posts">
  561.  
  562.  
  563. {block:ContentSource}
  564. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  565. {/block:SourceLogo}
  566. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  567. {/block:ContentSource}
  568.  
  569.  
  570. {block:Photo}
  571. {block:IndexPage}
  572. <div id="photos">
  573. <center>{LinkOpenTag}
  574. <img src="{PhotoURL-500}" alt='{PhotoAlt}' />
  575. {LinkCloseTag}</center>
  576. </div>
  577. {/block:IndexPage}
  578. {block:PermalinkPage}
  579. <div id="photos">
  580. <center>{LinkOpenTag}
  581. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />
  582. {LinkCloseTag}</center>
  583. </div>
  584. {/block:PermalinkPage}
  585. {block:ifShowCaptions}
  586. {block:Indexpage}
  587. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  588. {/block:Indexpage}
  589. {/block:ifShowCaptions}
  590. {block:PermalinkPage}
  591. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  592. {/block:PermalinkPage}
  593. {/block:Photo}
  594.  
  595.  
  596. {block:Photoset}
  597. <div id="pset">
  598. {Photoset}
  599. </div>
  600. {block:ifShowCaptions}
  601. {block:Indexpage}
  602. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  603. {/block:Indexpage}
  604. {/block:ifShowCaptions}
  605. {block:PermalinkPage}
  606. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  607. {/block:PermalinkPage}
  608. {/block:Photoset}
  609.  
  610. {block:Video}
  611. <div id="vid">
  612. {block:if250px}
  613. <center>{Video-250}</center>
  614. {/block:if250px}
  615. </div>
  616. {block:ifShowCaptions}
  617. {block:Indexpage}
  618. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  619. {/block:Indexpage}
  620. {/block:ifShowCaptions}
  621. {block:PermalinkPage}
  622. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  623. {/block:PermalinkPage}
  624. {/block:Video}
  625.  
  626.  
  627. {block:Audio}
  628. <div class="audi">{AudioPlayerBlack} </div>
  629. <div class="post_inner">
  630. <div class="audi_info">
  631. {block:TrackName}
  632. <div><div class="kasse"></div> <b>Track:</b> {TrackName}</div>
  633. {/block:TrackName}
  634. {block:Artist}
  635. <div><div class="kasse"></div><b>Artist:</b> {Artist}</div>
  636. {/block:Artist}
  637. {block:Album}
  638. <div><div class="kasse"></div><b>Album:</b> {Album}</div>
  639. {/block:Album}
  640. <div><div class="kasse"></div><b>Plays:</b> {PlayCount}</div>
  641. </div>
  642. </div>
  643. {block:ifShowCaptions}
  644. {block:Indexpage}
  645. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  646. {/block:Indexpage}
  647. {/block:ifShowCaptions}
  648. {block:PermalinkPage}
  649. {block:Caption}<div class="post_inner">{Caption}</div>{/block:Caption}
  650. {/block:PermalinkPage}
  651. {/block:Audio}
  652.  
  653.  
  654. {block:Text}
  655. <div class="post_inner">
  656. {block:Title}<h2>{Title}</h2>{/block:Title}
  657. {Body}
  658. </div>
  659. {/block:Text}
  660.  
  661.  
  662. {block:Link}
  663. <div class="post_inner">
  664. <h2><a href="{URL}" {Target}>{Name}</a></h2>
  665. {block:Description}{Description}{/block:Description}
  666. </div>
  667. {/block:Link}
  668.  
  669.  
  670. {block:Answer}
  671. <div class="post_inner">
  672. <div class="q">?</div><div class="askr">question from <br/> {Asker}</div>
  673. <div class="question">{Question}</div>
  674. {Answer}
  675. </div>
  676. {/block:Answer}
  677.  
  678.  
  679. {block:Quote}
  680. <div class="post_inner">
  681. <span style="font-size:12px;">{Quote}</span>
  682. {block:Source}<div style="font-style:italic; padding-top:5px;">{Source}</div>{/block:Source}
  683. </div>
  684. {/block:Quote}
  685.  
  686.  
  687. {block:Chat}
  688. <div class="post_inner">
  689. {block:Title}<h2>{Title}</h2>{/block:Title}
  690. {block:Lines}<p id="chat">
  691. {block:Label}
  692. <b>{Label}</b>
  693. {/block:Label}
  694. {Line}</p>
  695. {/block:Lines}
  696. </div>
  697. {/block:Chat}
  698.  
  699. </div>
  700.  
  701.  
  702.  
  703. {block:IndexPage}
  704. <div id="perma">
  705. <a href="{Permalink}" title="{NoteCountWithLabel}">{DayOfMonthWithZero}{MonthNumberWithZero}{ShortYear}</a> ——
  706. </div>
  707. {/block:IndexPage}
  708.  
  709.  
  710. {block:PermalinkPage}
  711. <div class="perma2">
  712. {block:Date}
  713. <div><div class="kasse"></div> {DayOfMonth} {Month} {Year} | {12Hour}:{Minutes} {CapitalAmPm}</div>
  714. {block:RebloggedFrom}<div><div class="kasse"></div><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> | <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a></div>{/block:RebloggedFrom}
  715. <div><div class="kasse"></div>{NoteCountWithLabel}</div>
  716. {/block:Date}
  717. {block:HasTags}<div><div class="kasse"></div>{block:Tags}<a href="{TagURL}" style="margin-right:4px;">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  718. </div>
  719.  
  720. {block:PostNotes}{PostNotes}{/block:PostNotes}
  721. {/block:PermalinkPage}
  722.  
  723. </div>
  724. {/block:Posts}
  725. </div>
  726.  
  727. {block:ifnotInfinitescroll}
  728. {block:Pagination}
  729. <div class="pagination">
  730. <div class="pg">{CurrentPage} of {TotalPages}</div>
  731. {block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage}
  732. {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  733. </div>
  734. {/block:Pagination}
  735. {/block:ifnotInfinitescroll}
  736.  
  737.  
  738. </div>
  739.  
  740. <div id="box4" class="popup_block">
  741. <center>Credits.
  742. <br>Base Code - gifted to me by weekndkr.tumblr.com for my use and my use only, do not say i stole it or vice versa, thank you.
  743. <br>Sidebar, Navigation, and posts all coded by myself, ask if you have questions.
  744. <br>Graphics - Also me.
  745. <br>Music player - Borrowed with permission from Galaxias.
  746. <br>Anything else is by me, for me, and should not be used on any other theme. If you desire help, please ask!
  747. </center>
  748. </div>
  749.  
  750. </body>
  751. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement