Advertisement
lilyc1342

Nebula

Jun 26th, 2014
2,182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.88 KB | None | 0 0
  1. <!--
  2. By Solus Themes
  3.  
  4. Rules of the road:
  5. 1. Do not remove the credit
  6. 2. Do not use as a base code
  7. 3. Do not take bits of code
  8. Must like and reblog the theme post before using the theme!
  9. -->
  10.  
  11.  
  12. <html>
  13. <head>
  14.  
  15. <title>{Title}</title>
  16.  
  17. <link rel="shortcut icon" href="{Favicon}">
  18. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  19. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  20.  
  21. <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  22.  
  23. <!--meta tags-->
  24. <meta name="color:Background" content="#f5f5f5"/>
  25. <meta name="color:Text" content="#000000"/>
  26. <meta name="color:Link" content="#000000"/>
  27. <meta name="color:Nav Links" content="#ffffff"/>
  28. <meta name="color:Header Bg" content="#ffffff"/>
  29. <meta name="color:Hover" content="##529ecc"/>
  30. <meta name="color:Border" content="#ffffff"/>
  31. <meta name="color:Info Bg" content="#ffffff"/>
  32. <meta name="color:Post Border" content="#ffffff"/>
  33. <meta name="color:Post" content="#ffffff"/>
  34. <meta name="color:Asker" content="#f8f8f8"/>
  35. <meta name="color:description" content="#000000"/>
  36. <meta name="color:Title" content="#000000"/>
  37.  
  38. <meta name="image:bg" content=""/>
  39. <meta name="image:header" content=""/>
  40. <meta name="if:Show header Img" content="0" />
  41. <meta name="if:Border" content="1" />
  42. <meta name="if:Lowercase Title" content="0" />
  43. <meta name="text:Next Page Text" content="Next" />
  44. <meta name="text:Prev Page Text" content="Prev" />
  45.  
  46. <meta name="text:Link 1" content="" />
  47. <meta name="text:Link 1 Text" content="link" />
  48. <meta name="text:Link 2" content="" />
  49. <meta name="text:Link 2 Text" content="link" />
  50. <meta name="text:Link 3" content="" />
  51. <meta name="text:Link 3 Text" content="" />
  52. <meta name="text:Link 4" content="" />
  53. <meta name="text:Link 4 Text" content="" />
  54. <meta name="text:Link 5" content="" />
  55. <meta name="text:Link 5 Text" content="" />
  56. <meta name="text:Link 6" content="" />
  57. <meta name="text:Link 6 Text" content="" />
  58. <meta name="if:Show Link 1" content="1" />
  59. <meta name="if:Show Link 2" content="1" />
  60. <meta name="if:Show Link 3" content="0" />
  61. <meta name="if:Show Link 4" content="0" />
  62. <meta name="if:Show Link 5" content="0" />
  63. <meta name="if:Show Link 6" content="0" />
  64. <meta name="color:scrollbarbg" content="ffffff"/>
  65.  
  66. <!-- links -->
  67. <script type="text/javascript"
  68. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  69. <script>
  70. $(document).ready(function() {
  71. //
  72. $('a.poplight[href^=#]').click(function() {
  73. var popID = $(this).attr('rel'); //Get Popup Name
  74. var popURL = $(this).attr('href'); //Get Popup href to define size
  75. var query= popURL.split('?');
  76. var dim= query[1].split('&');
  77. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  78. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://media.tumblr.com/b28c104906c576285505ca134600853a/tumblr_inline_mfp5cwdybL1qh7cpd.gif" class="btn_close" title="Close" alt="Close" /></a>');
  79. var popMargTop = ($('#' + popID).height() + 80) / 2;
  80. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  81. //Apply Margin to Popup
  82. $('#' + popID).css({
  83. 'margin-top' : -popMargTop,
  84. 'margin-left' : -popMargLeft
  85. });
  86. $('body').append('<div id="fade"></div>');
  87. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  88. return false;
  89. });
  90. $('a.close, #fade').live('click', function() {
  91. $('#fade , .popup_block').fadeOut(function() {
  92. $('#fade, a.close').remove(); //fade them both out
  93. });
  94. return false;
  95. });
  96. });
  97. </script>
  98. <!-- tooltip-->
  99. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  100.  
  101. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  102.  
  103. <script>
  104.  
  105. (function($){
  106.  
  107. $(document).ready(function(){
  108.  
  109. $("a[title]").style_my_tooltips({
  110.  
  111. tip_follows_cursor:true,
  112.  
  113. tip_delay_time:40,
  114.  
  115. tip_fade_speed:400,
  116.  
  117. attribute:"title"
  118.  
  119. });
  120.  
  121. });
  122.  
  123. })(jQuery);
  124.  
  125. </script>
  126.  
  127.  
  128. <style type="text/css">
  129.  
  130. /* --- SCROLLBAR ---*/
  131.  
  132. ::-webkit-scrollbar {
  133. width: 5px;height: 5px;
  134. }
  135. ::-webkit-scrollbar-button:start:decrement,
  136. ::-webkit-scrollbar-button:end:increment {
  137. height: 0px;display: block;background-color:white;
  138. }
  139. ::-webkit-scrollbar-track-piece {
  140. background-color:none;
  141. }
  142. ::-webkit-scrollbar-thumb:vertical {
  143. height: 9px;background-color: {color:scrollbarbg};border-top:1px solid {color:scrollbarbg};border-bottom:1px solid {color:scrollbarbg};
  144. }
  145.  
  146. /* --- BODY ---*/
  147. body {
  148. background:url('{image:bg}')no-repeat center center fixed;
  149. -webkit-background-size: cover;
  150. -moz-background-size: cover;
  151. -o-background-size: cover;
  152. background-size: cover;
  153. background-color:{color:background};
  154. margin: 0px;
  155. color: {color:text};
  156. font-family:times;
  157. font-size:11px;
  158. line-height:100%;
  159.  
  160.  
  161. }
  162.  
  163. #left{position:fixed;right:0;bottom:0;height:100%;width:30px;background:{color:Border};z-index:999999;}
  164. #top{position:fixed;left:0;top:0;width:100%;height:30px;background:{color:Border};z-index:999999;}
  165. #bottom{position:fixed;left:0;bottom:0;width:100%;height:35px;background:{color:Border};z-index:999999;}
  166. #right{position:fixed;left:0;bottom:0;height:100%;width:30px;background:{color:Border};z-index:999999;}
  167.  
  168. img {
  169. border:none;
  170. }
  171. a {
  172. text-decoration:none;
  173. text-align:left;
  174. outline:none;
  175. color:{color:Link};
  176. }
  177. a:hover {
  178. text-shadow: 3px 3px 2px {color:Hover};
  179. }
  180. blockquote {
  181. padding-left:5px;
  182. border-left:3px solid;
  183. }
  184. blockquote blockquote {
  185. padding-left:5px;
  186. border-left:3px solid;
  187. }
  188. h1 {
  189. font-size:11px;
  190. text-transform:uppercase;
  191. }
  192. /*--Posts--*/
  193. #entries {
  194. width:250px;
  195. {block:PermalinkPage}width:400px;{/block:PermalinkPage}
  196. margin:auto;
  197. margin-top:-100px;
  198. font-size:10px;
  199. padding-top:50px;
  200. padding-bottom:250px;
  201. }
  202. #post {
  203. width:250px;
  204. {block:PermalinkPage}width:400px;{/block:PermalinkPage}
  205. padding:35px 35px 0px 35px;
  206. border:1px solid {color:Post Border};
  207. margin-top:100px;
  208. background-color:{color:Background};
  209. font-family: 'Roboto', sans-serif;
  210.  
  211. transition-duration: 0.8s;
  212. -moz-transition-duration: 0.8s;
  213. -webkit-transition-duration: 0.8s;
  214. -o-transition-duration: 0.8s;
  215. }
  216.  
  217. /*--quotes--*/
  218. .quote {
  219. font-size:15px;
  220. text-align:center;
  221. padding:10px;
  222. font-weight:600;
  223. border:1px solid {color:Post Border};
  224. line-height:150%;
  225. }
  226. /*-- audio--*/
  227. .newplayerbutton {
  228. position: relative;
  229. width: 28px;
  230. height: 27px;
  231. overflow: hidden;
  232. }
  233.  
  234. .playerbuttonhug {
  235. position: absolute;
  236. top: -11px;
  237. left: 0px;
  238. }
  239.  
  240.  
  241. .tumblr_audio_player {
  242. border: none;
  243. padding: 0px;
  244. margin: 0px;
  245. height: 50px;
  246. width: 500px;
  247. }
  248.  
  249. .playerbuttonbg {
  250. position: absolute;
  251. left: 30px;
  252. top: 30px;
  253. width: 28px;
  254. height: 28px;
  255. background-color: #ffffff;
  256. padding: 10px;
  257. -webkit-border-radius: 40px;
  258. -moz-border-radius: 40px;
  259. border-radius: 40px;
  260. opacity: .4;
  261. filter: alpha(opacity=40);
  262. -moz-opacity: 0.4;
  263. -khtml-opacity: 0.4;
  264. transition: opacity .7s ease-in-out;
  265. -moz-transition: opacity .7s ease-in-out;
  266. -webkit-transition: opacity .7s ease-in-out;
  267. }
  268.  
  269. .playerbuttonbg:hover {
  270. opacity: 1;
  271. filter: alpha(opacity=100);
  272. -moz-opacity: 1;
  273. -khtml-opacity: 1;
  274. }
  275.  
  276. .audioimgwrapper {
  277. position: absolute;
  278. left: 10px;
  279. top: 10px;
  280. -webkit-border-radius: 50px;
  281. -moz-border-radius: 50px;
  282. border-radius: 50px;
  283. overflow: hidden;
  284. width: 88px;
  285. height: 88px;
  286. }
  287.  
  288. .audioimgwrapper img {
  289. width: 100%;
  290. height: auto;
  291.  
  292. -webkit-border-radius: 50px;
  293. -moz-border-radius: 50px;
  294. border-radius: 50px;
  295. }
  296.  
  297. .trackdetails {
  298. width: auto;
  299. display:inline-block;
  300. margin-left: 100px;
  301. min-height: 85px;
  302. line-height:210%
  303. }
  304.  
  305. .audiowrapper {
  306. position: relative;
  307. display:inline-block;
  308. border:1px solid {color:Post Border};
  309. width:230px;
  310. {block:PermalinkPage}width:380px;{/block:PermalinkPage}
  311. padding:10px
  312. }
  313. /*-- text --*/
  314. .text {
  315. border:1px solid {color:Post Border};
  316. padding:10px;
  317. line-height:150%;
  318. }
  319. /*--Messages--*/
  320. #asker {
  321. padding:10px;
  322. font-family:times;
  323. letter-spacing:1px;
  324. text-align:left;
  325. font-style:italic;
  326. margin-left:0px;
  327. background-color:{color:Asker};
  328. }
  329. .mssg {
  330. border:1px solid {color:Post Border};
  331. }
  332. /*--link--*/
  333. .link {
  334. padding:10px;
  335. border:1px solid {color:Post Border};
  336. line-height:110%;
  337. font-weight:600;
  338. }
  339. /*--header--*/
  340.  
  341. #header {
  342. width:200px;
  343. opacity:1;
  344. top:0px;
  345. background-color:{color:Header Bg};
  346. left:0px;
  347. text-align:right;
  348. height:100%;
  349. z-index:99999;
  350. padding:300px 75px 60px 100px;
  351. {block:IfShowHeaderImg} padding:200px 75px 60px 100px;{/block:IfShowHeaderImg}
  352. position:fixed;
  353. transition-duration: 0.8s;
  354. -moz-transition-duration: 0.8s;
  355. -webkit-transition-duration: 0.8s;
  356. -o-transition-duration: 0.8s;
  357.  
  358. }
  359. #header:hover {
  360. cursor:help;
  361. }
  362.  
  363.  
  364. #header img {
  365. width:75px;
  366. height:75px;
  367. border-radius:50%;
  368. padding-bottom:0px;
  369. margin-left:50px;
  370. border:5px solid {color:Background};
  371.  
  372. }
  373. #header img:hover{
  374. box-shadow: 3px 3px 3px {color:Hover};
  375. }
  376. #title {
  377. position:relative;
  378. font-family: 'Roboto', sans-serif;
  379. line-height:100%;
  380. font-size:22px;
  381. font-weight:90%;
  382. text-transform:uppercase;
  383. {block:iflowercasetitle}
  384. text-transform:lowercase;
  385. {block:iflowercasetitle}
  386. width:200px;
  387. margin-top:0px;
  388. padding:10px 2px 0px 0px;
  389. text-align:right;
  390. float:left;
  391. display:block;
  392. z-index:9999999;
  393. color:{color:Title};
  394. }
  395. #title a{
  396. color:{color:Title};
  397. transition-duration: 0.1s;
  398. -moz-transition-duration: 0.1s;
  399. -webkit-transition-duration: 0.1s;
  400. -o-transition-duration: 0.1s;
  401.  
  402. }
  403. #title a:hover{
  404. text-shadow: 3px 3px 2px {color:Hover};
  405. cursor:help;
  406. }
  407. #description {
  408. position:relative;
  409. font-family: 'Roboto', sans-serif;
  410. line-height:100%;
  411. font-size:9px;
  412. font-style:normal;
  413. width:200px;
  414. margin-top:0px;
  415. padding:5px 0px 5px 0px;
  416. border-color:#f2f2f2;
  417. text-align:right;
  418. color:{color:description};
  419. float:left;
  420. }
  421.  
  422. .links {
  423. font-family: 'Roboto', sans-serif;
  424. font-size:9px;
  425. color:{color:Nav Links};
  426. text-transform:lowercase;
  427. margin-top:0px;
  428. width:500;
  429. padding:0px 0px 5px 20px;
  430. letter-spacing: 1px;
  431. display:block;
  432. }
  433. .links a{
  434. padding:20px 3px;
  435. line-height:200%;
  436. color:{color:Nav Links};
  437.  
  438. }
  439. .links ol {
  440. list-style-type: lower-roman;
  441. text-align:center;
  442. width:50px;
  443. }
  444. .links li {
  445. padding:10px 3px;
  446. }
  447. .links a:hover{
  448. text-shadow: 3px 3px 2px {color:Hover};
  449.  
  450. }
  451. /*--Info!--*/
  452. #info {
  453. text-align:center;
  454. text-transform:none;
  455. font-size:9px;
  456. padding:0px 5px 10px 5px;
  457. font-style:none;
  458. font-family: 'Roboto', sans-serif;
  459. margin:-5px auto;
  460. opacity:0;
  461. z-index:100;
  462. transition-duration: 0.8s;
  463. -moz-transition-duration: 0.8s;
  464. -webkit-transition-duration: 0.8s;
  465. -o-transition-duration: 0.8s;
  466. }
  467.  
  468. #post:hover #info {
  469. opacity:1;
  470. transition-duration: 0.8s;
  471. -moz-transition-duration: 0.8s;
  472. -webkit-transition-duration: 0.8s;
  473. -o-transition-duration: 0.8s;
  474. }
  475. #post:hover {
  476. background-color:{color:Info Bg};
  477. transition-duration: 0.8s;
  478. -moz-transition-duration: 0.8s;
  479. -webkit-transition-duration: 0.8s;
  480. -o-transition-duration: 0.8s;
  481. }
  482. /*--Tags!--*/
  483. #tags {
  484. opacity:1;
  485. padding:2px 0px;
  486. line-height:200%;
  487. font-weight:500;
  488. }
  489. #tags a{
  490. padding-left:3px;
  491.  
  492. }
  493. #tags a:hover{
  494. text-shadow: 3px 3px 2px {color:Hover};
  495.  
  496. }
  497.  
  498.  
  499. /*--Pagination!--*/
  500.  
  501. #pagination {
  502. width:200px;
  503. text-transform:lowercase;
  504. font-style:italic;
  505. font-size:9px;
  506. position:fixed;
  507. font-weight:600;
  508. padding:45px 0px;
  509. font-family: 'Roboto', sans-serif;
  510. }
  511. #pagination a {
  512. margin:auto;
  513. font-family: 'Roboto', sans-serif;
  514. display:inline-block;
  515. text-decoration:none;
  516. color:#000;
  517. padding:5px 5px 5px 0px;
  518. }
  519. #pagination a:hover {
  520. text-shadow: 3px 3px 2px {color:Hover};
  521. }
  522. /* links */
  523. #fade { /*--Transparent background layer--*/
  524. display: none; /*--hidden by default--*/
  525. background: #000;
  526. position: fixed; left: 0; top: 0;
  527. width: 100%; height: 100%;
  528. opacity: .80;
  529. z-index: 9999;
  530. }
  531. .popup_block{
  532.  
  533. display: none; /*--hidden by default--*/
  534. color:#fff;
  535. padding: 5px;
  536. text-align:center;
  537. float: left;
  538. font-size: 12px;
  539. position: fixed;
  540. top: 50%; left: 60%;
  541. z-index: 99999;
  542. }
  543. img.btn_close {
  544. float: right;
  545. margin: -50px -2px 0 0;
  546. -webkit-filter: invert(100%);
  547. filter: invert(100%);
  548. }
  549. /*--Making IE6 Understand Fixed Positioning--*/
  550. *html #fade {
  551. position: absolute;
  552. }
  553. *html .popup_block {
  554. position: absolute;
  555. }
  556.  
  557. /*tooltip*/
  558. #s-m-t-tooltip {
  559.  
  560. max-width:300px;
  561.  
  562. opacity:1;
  563.  
  564. padding:4px;
  565.  
  566. margin:-30px 0px -10px 10px;
  567.  
  568. background-color:{color:Border}; /* change the background color */
  569.  
  570. border:0.5px solid; /* change the border color */
  571.  
  572. font-family:helvetica; /* change the font */
  573.  
  574. font-size:9px; /* change the font size */
  575.  
  576. letter-spacing:2px; /* change the letter spacing */
  577.  
  578. text-transform:lowercase; /* can be uppercase, lowercase, none*/
  579.  
  580. color:{color:Link}; /* change the text color */
  581.  
  582. position:relative;
  583. z-index:999999;
  584.  
  585. }
  586.  
  587. {CustomCSS}
  588.  
  589.  
  590. </style>
  591. </head>
  592.  
  593. <body>{block:IfBorder}<div id="top"></div><br><br><br><div id="bottom"></div><div id="right"></div><div id="left"></div>{/block:IfBorder}
  594.  
  595.  
  596. <div id="header">
  597.  
  598. {block:IfShowHeaderImg} <img src="{image:header}"/></a>{/block:IfShowHeaderImg}
  599. <div id="title"><a href="#?w=400" rel="03" class="poplight">{Title}</a></div>
  600.  
  601. <div id="description">
  602. {Description}
  603. </div>
  604.  
  605. <div id="pagination">
  606. {block:Pagination}
  607. {block:PreviousPage}
  608. <a href="{PreviousPage}">{text:Prev Page Text}</a>
  609. {/block:PreviousPage}
  610. {block:NextPage}
  611. <a href="{NextPage}">{text:Next Page Text}</a>
  612. {/block:NextPage}
  613. {/block:Pagination}
  614. </div>
  615. </div>
  616. <div id="03" class="popup_block"><center>
  617. <div class="links">
  618. <ol>
  619. <li><a href="/">home</a></li>
  620. <li><a href="/ask">inbox</a> </li>
  621. {block:IfShowLink1}<li><a href="{text:Link 1}">{text:Link 1 Text}</a></li>{/block:IfShowLink1}
  622. {block:IfShowLink2}<li><a href="{text:Link 2}">{text:Link 2 Text}</a></li>{/block:IfShowLink2}
  623. {block:IfShowLink3}<li><a href="{text:Link 3}">{text:Link 3 Text}</a> </li>{/block:IfShowLink3}
  624. {block:IfShowLink4}<li><a href="{text:Link 4}">{text:Link 4 Text}</a></li> {/block:IfShowLink4}
  625. {block:IfShowLink5}<li><a href="{text:Link 5}">{text:Link 5 Text}</a></li> {/block:IfShowLink5}
  626. {block:IfShowLink6}<li><a href="{text:Link 6}">{text:Link 6 Text}</a></li>{/block:IfShowLink6}
  627. </ol>
  628. </div>
  629. </div>
  630.  
  631. <div id="entries">
  632. {block:Posts}<div id="post">
  633.  
  634. {block:Text}
  635. <div class="text">
  636. <h1>{block:Title}{Title}{/block:Title}</h1>
  637. {Body}
  638. </div>
  639. {/block:Text}
  640.  
  641. {block:Photo}
  642.  
  643. {block:IndexPage}
  644. {LinkOpenTag}
  645. <img src="{PhotoURL-250}">
  646. {LinkCloseTag}
  647. {/block:IndexPage}
  648. {block:PermalinkPage}
  649. {LinkOpenTag}
  650. <img src="{PhotoURL-400}">
  651. {LinkCloseTag}
  652. {/block:PermalinkPage}
  653.  
  654. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  655. {/block:Photo}
  656.  
  657. {block:Photoset}
  658. {block:IndexPage}{Photoset-250}{/block:IndexPage}
  659. {block:PermalinkPage}{Photoset-400}{/block:PermalinkPage}
  660. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  661. {/block:Photoset}
  662.  
  663. {block:Quote}<div class="quote">"{Quote}"</div>{/block:Quote}
  664.  
  665. {block:Link}
  666. <div class="link">
  667. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  668. {block:Description}{Description}{/block:Description}
  669. </div>
  670. {/block:Link}
  671.  
  672. {block:Chat}
  673. <div class="text">
  674. {block:Title}<h1>{Title}</h1>{/block:Title}
  675. {block:Lines}{block:Label}<b>{Label}</b>{/block:Label}
  676. {Line}<br>{/block:Lines}
  677. </div>
  678. {/block:Chat}
  679.  
  680. {block:Audio}
  681. {block:AudioPlayer}
  682. <div class="audiowrapper">
  683. {block:AlbumArt}
  684. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  685. {/block:AlbumArt}
  686.  
  687. <div class="playerbuttonbg">
  688. <div class="newplayerbutton">
  689. <div class="playerbuttonhug">
  690.  
  691. {AudioPlayerWhite}
  692.  
  693. </div>
  694. </div>
  695. </div>
  696.  
  697. <div class="trackdetails">
  698.  
  699. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  700. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  701. {block:Album}Album: {Album}{/block:Album}<br/>
  702. {PlayCountWithLabel}
  703.  
  704. </div>
  705. </div>
  706. {/block:AudioPlayer}
  707.  
  708. {block:PermalinkPage} {block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  709. {/block:Audio}
  710.  
  711. {block:Video}
  712. {block:IndexPage}{Video-250}{/block:IndexPage}
  713. {block:PermalinkPage}{Video-400}{/block:PermalinkPage}
  714. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  715. {/block:Video}
  716.  
  717. {block:Answer}
  718. <div class="mssg">
  719. <div id="asker">
  720. <span style="font-family:modern;font-size:10px;font-style:italic;">{Asker}: </span>{Question}</div><left><font face="times"><div style="padding:0px 5px;">{Answer}</div></font>
  721. </div>
  722. {/block:Answer}
  723.  
  724. <div id="info">
  725. <br><a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix},&nbsp; {Year}</a> {block:PermalinkPage}{block:RebloggedFrom} <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}&nbsp;|&nbsp;{block:ContentSource}<a href="{SourceURL}"><a href="{SourceURL}">©</a>{/block:ContentSource}&nbsp;<a href="{Permalink}">+{NoteCount}</a>{/block:PermalinkPage}
  726. {block:HasTags}<div id="tags">{block:Tags} <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  727.  
  728. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  729.  
  730. {/block:Posts}
  731. </div>
  732. </div>
  733.  
  734.  
  735.  
  736. </p>
  737. <!--
  738. THEME MAKER CREDIT: DO NOT DELETE
  739. -->
  740.  
  741. <div style="position:fixed;color:{color:Link};bottom:10px; right:10px; font-size:8px; letter-spacing:1px; font-family:modern;z-index:9999999999;"><a title="solus themes" href="http://boromihrs.tumblr.com/">◐</a></center></div>
  742. </body>
  743. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement