Advertisement
mrsmilicevic

northern lights

Jul 12th, 2014
32,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7. <!-----------CSS-Tricks Example - MagicLine Demo
  8. by Chris Coyier http://css-tricks.com------------>
  9.  
  10. <!-----------theme 06. northern lights by mrsmilicevic@tumblr
  11. edit if you want but don't steal or remove credit------------>
  12.  
  13.  
  14. <!--------default variables-------->
  15. <meta name="color:background" content="#ffffff"/>
  16. <meta name="color:text" content="#7b7b7b"/>
  17. <meta name="color:sidetext" content="#000000"/>
  18. <meta name="color:links" content="#5b5b5b"/>
  19. <meta name="color:links hover" content="#c9c9c9"/>
  20. <meta name="color:scrollbar" content="#3b3b3b"/>
  21. <meta name="color:scrollbar bg" content="#ffffff">
  22. <meta name="color:borders" content="#eeeeee"/>
  23.  
  24. <meta name="image:sidebar image" content=""/>
  25. <meta name="image:background image" content=""/>
  26.  
  27. <meta name="text:link 1 title" content="one">
  28. <meta name="text:link 1" content="/">
  29. <meta name="text:link 2 title" content="two">
  30. <meta name="text:link 2" content="/">
  31. <meta name="text:link 3 title" content="three">
  32. <meta name="text:link 3" content="/">
  33.  
  34. <meta name="if:show link 1" content="1" />
  35. <meta name="if:show link 2" content="1" />
  36. <meta name="if:show link 3" content="1" />
  37. <meta name="if:show sidebar image" content="1" />
  38. <meta name="if:endless scrolling" content="0" />
  39. <meta name="if:lazy load" content="0" />
  40. <meta name="if:hover tags" content="0" />
  41. <meta name="if:album art" content="0" />
  42.  
  43.  
  44. <!-------------------------------------------------------------------->
  45.  
  46. {block:IfLazyLoad}
  47. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  48. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  49. <script type="text/javascript" charset="utf-8">
  50. var $j = jQuery.noConflict();
  51. $j(function() {
  52. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  53. $j("img").lazyload({
  54. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  55. effect: "fadeIn",
  56. });
  57. });
  58. </script>
  59. {/block:IfLazyLoad}
  60.  
  61. <!-------------------------------------------------------------------->
  62.  
  63. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  64. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  65. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  66. <script>
  67. (function($){
  68. $(document).ready(function(){
  69. $("[title]").style_my_tooltips({
  70. tip_follows_cursor:true,
  71. tip_delay_time:200,
  72. tip_fade_speed:300
  73. });
  74. });
  75. })(jQuery);
  76. </script>
  77.  
  78. <!-------------------------------------------------------------------->
  79.  
  80. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  81. <script>
  82. $(function() {
  83.  
  84. var $el, leftPos, newWidth,
  85. $mainNav = $("#example-one");
  86.  
  87. $mainNav.append("<li id='magic-line'></li>");
  88. var $magicLine = $("#magic-line");
  89.  
  90. $magicLine
  91. .width($(".current_page_item").width())
  92. .css("left", $(".current_page_item a").position().left)
  93. .data("origLeft", $magicLine.position().left)
  94. .data("origWidth", $magicLine.width());
  95.  
  96. $("#example-one li a").hover(function() {
  97. $el = $(this);
  98. leftPos = $el.position().left;
  99. newWidth = $el.parent().width();
  100. $magicLine.stop().animate({
  101. left: leftPos,
  102. width: newWidth
  103. });
  104. }, function() {
  105. $magicLine.stop().animate({
  106. left: $magicLine.data("origLeft"),
  107. width: $magicLine.data("origWidth")
  108. });
  109. });
  110. });
  111. </script>
  112.  
  113. <!-------------------------------------------------------------------->
  114.  
  115. {block:IfEndlessScrolling}
  116. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  117. {/block:IfEndlessScrolling}
  118.  
  119. <!-------------------------------------------------------------------->
  120.  
  121.  
  122. <style type="text/css">
  123.  
  124. iframe#tumblr_controls {
  125. top:5px;
  126. right:10px!important;
  127. position:fixed !important;
  128. -webkit-filter: invert(1);
  129. opacity:.6;
  130. filter:alpha(opacity=60);
  131. -moz-opacity:.6;
  132. }
  133.  
  134.  
  135. /*----------tooltips---------*/
  136.  
  137. #s-m-t-tooltip {
  138. max-width:300px;
  139. margin:15px;
  140. padding:2px 5px;
  141. border:1px solid {color:borders};
  142. border-radius:0px;
  143. background:#ffffff;
  144. color:{color:text};
  145. z-index:999999;
  146. font-size:7px;
  147. font-style:none;
  148. letter-spacing:2px;
  149. font-family:arial;
  150. text-transform:uppercase;
  151. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  152. }
  153.  
  154. /*----------scrollbar---------*/
  155.  
  156. ::-webkit-scrollbar {
  157. background-color: {color:scrollbar bg};
  158. height:8px;
  159. width:3px
  160. }
  161.  
  162. ::-webkit-scrollbar-thumb:vertical {
  163. background-color:{color:scrollbar};
  164. height:50px
  165. }
  166.  
  167. ::-webkit-scrollbar-thumb:horizontal {
  168. background-color:{color:scrollbar bg};
  169. height:8px!important
  170. }
  171.  
  172. /*----------basics---------*/
  173.  
  174. body {
  175. background:{color:background} url({image:background image}) repeat right top fixed;
  176. color:{color:text};
  177. font-family:arial;
  178. line-height:15px;
  179. font-size:11px;
  180. margin:0;
  181. text-align:justify;
  182. }
  183.  
  184. blockquote {
  185. padding-left:10px;
  186. border-left:1px solid;
  187. border-color:{color:borders};
  188. margin:10px;
  189. }
  190.  
  191. a {
  192. color:{color:links};
  193. text-decoration:none;
  194. }
  195.  
  196. a:hover {
  197. text-decoration:none;
  198. color: {color:links hover};
  199. -webkit-transition:all 0.5s;
  200. -moz-transition:all 0.5s;
  201. -ms-transition:all 0.5s;
  202. -o-transition:all 0.5s;
  203. transition:all 0.5s;
  204. }
  205.  
  206. img {
  207. opacity:1;
  208. text-decoration:none;
  209. }
  210.  
  211. h1 {
  212. font-size:11px;
  213. letter-spacing:1px;
  214. color:{color:text};
  215. text-transform:uppercase;
  216. padding:10px;
  217. margin-bottom:-15px;
  218. }
  219.  
  220. /*----------posts---------*/
  221.  
  222. .container {
  223. margin-top:70px;
  224. margin-bottom:80px;
  225. left:40%;
  226. width:800px;
  227. position:absolute;
  228. background:transparent;
  229. }
  230.  
  231. .posts {
  232. {block:IndexPage}
  233. margin-bottom:150px;
  234. {/block:IndexPage}
  235. {block:PermalinkPage}
  236. margin-bottom:40px;
  237. {/block:PermalinkPage}
  238. margin-left:0px;
  239. width:500px;
  240. padding:20px;
  241. }
  242.  
  243. .entries {
  244. width:500px;
  245. }
  246.  
  247. .posts img, .posts li, .posts blockquote {
  248. max-width: 100%;
  249. }
  250.  
  251. .posts li {
  252. list-style: square;
  253. }
  254.  
  255. blockquote img {
  256. max-width:320px!important;
  257. }
  258.  
  259. .caption {
  260. padding:5px 10px 7px 10px;
  261. }
  262.  
  263. .textpost {
  264. padding:10px;
  265. }
  266.  
  267. /*----------sidebar---------*/
  268.  
  269. .sidebar {
  270. position:fixed;
  271. margin-left:-300px;
  272. width:220px;
  273. height:auto;
  274. {block:IfShowSidebarImage}
  275. margin-top:120px;
  276. {/block:IfShowSidebarImage}
  277. {block:IfNotShowSidebarImage}
  278. margin-top:290px;
  279. {/block:IfNotShowSidebarImage}
  280. }
  281.  
  282. .sidebarimage {
  283. width:220px;
  284. }
  285.  
  286. .sidebarimage img {
  287. width:220px;
  288. margin-bottom:15px;
  289. }
  290.  
  291. .sidetitle {
  292. width:220px;
  293. color:{color:sidetitle};
  294. font-family: arial;
  295. text-transform:uppercase;
  296. font-size:11px;
  297. letter-spacing:2px;
  298. font-weight:bold;
  299. text-align:center;
  300. margin-bottom:10px;
  301. }
  302.  
  303. .nav-wrap {
  304. margin: 20px auto;
  305. background-color: #fff;
  306. border-top:1px solid {color:borders};
  307. border-bottom:1px solid {color:borders};
  308. }
  309.  
  310. /* Clearfix */
  311. .group:after {
  312. visibility: hidden;
  313. display: block;
  314. content: "";
  315. clear: both;
  316. height: 0;
  317. }
  318.  
  319.  
  320. #example-one {
  321. margin:auto;
  322. list-style: none;
  323. position: relative;
  324. width: 220px;
  325. margin-left:-5px;
  326. padding:8px;
  327. }
  328.  
  329. #example-one li {
  330. display: inline-block;
  331. }
  332.  
  333. #example-one a {
  334. color: {color:links};
  335. font-size:7px;
  336. width:220px;
  337. letter-spacing:1px;
  338. text-align:center;
  339. padding: 10px 10px 10px 5px;
  340. text-decoration: none;
  341. text-transform: uppercase;
  342. }
  343.  
  344. #example-one a:hover {
  345. color: #333;
  346. }
  347.  
  348. #magic-line {
  349. position: absolute;
  350. bottom: -1px;
  351. margin-left:-5px;
  352. width: 100px;
  353. height: 1px;
  354. background: #000;
  355. }
  356.  
  357. .current_page_item a {
  358. color: {color:links}; !important;
  359. }
  360.  
  361. .ie6 #example-one li, .ie7 #example-one li {
  362. display: inline-block;
  363. }
  364.  
  365. .ie6 #magic-line {
  366. bottom: -3px;
  367. }
  368.  
  369. .description {
  370. margin-top:15px;
  371. font-size:10px;
  372. width:220px;
  373. font-style:none;
  374. text-align:justify;
  375. }
  376.  
  377. .pagination {
  378. margin-top:10px;
  379. text-align:center;
  380. font-size:7px;
  381. width:220px;
  382. text-transform:uppercase;
  383. letter-spacing:1px;
  384. padding-top:15px;
  385. color:{color:links};
  386. }
  387.  
  388. /*----------post info---------*/
  389.  
  390. .info {
  391. border-top:1px solid {color:borders};
  392. margin-top:15px;
  393. padding-top:15px;
  394. font-size:9px;
  395. }
  396.  
  397. .tags {
  398. text-transform:lowercase;
  399. font-size:9px;
  400. margin-top:10px;
  401. font-style:italic;
  402. {block:IfHoverTags}
  403. opacity: 0.0;
  404. {/block:IfHoverTags}
  405. {block:IfNotHoverTags}
  406. opacity:1.0;
  407. {/block:IfNotHoverTags}
  408. -moz-transition-duration: 0.6s;
  409. -o-transition-duration: 0.6s;
  410. -webkit-transition-duration: 0.6s;
  411. transition-duration: 0.6s;
  412. }
  413.  
  414. .posts:hover .tags {
  415. {block:IfHoverTags}
  416. opacity:1.0;
  417. -moz-transition-duration: 0.6s;
  418. -o-transition-duration: 0.6s;
  419. -webkit-transition-duration: 0.6s;
  420. transition-duration: 0.6s;
  421. {/block:IfHoverTags}
  422. }
  423.  
  424. ol.notes {
  425. padding:0px;
  426. margin:20px 0px;
  427. list-style:none;
  428. border-bottom:solid 0px #f5f5f5;
  429. }
  430.  
  431. ol.notes li.note {
  432. border-top:solid 0px #f5f5f5;
  433. padding:10px;
  434. list-style:none;
  435. }
  436.  
  437. ol.notes li.note img.avatar {
  438. vertical-align: -4px;
  439. margin-right: 10px;
  440. width: 16px;
  441. height: 16px;
  442. border-radius:0%;
  443. }
  444.  
  445. ol.notes li.note span.action {
  446. font-weight: none;
  447. text-transform:lowercase;
  448. letter-spacing:0px;
  449. font-size:11px;
  450. }
  451.  
  452. ol.notes li.note .answer_content {
  453. font-weight: normal;
  454. }
  455.  
  456. ol.notes li.note blockquote {
  457. border-color: {color:border};
  458. padding: 4px 10px;
  459. margin: 10px 10px 10px 25px;
  460. }
  461.  
  462. ol.notes li.note blockquote a {
  463. text-decoration: none;
  464. }
  465.  
  466. .pagenotes {
  467. text-align:left;
  468. }
  469.  
  470. /*----------questions---------*/
  471.  
  472. .asker {
  473. font-size:10px;
  474. margin-bottom:10px;
  475. }
  476.  
  477. .pic {
  478. width:24px;
  479. height:24px;
  480. background:transparent;
  481. }
  482.  
  483. .pic img {
  484. width:24px;
  485. height:24px;
  486. float:left;
  487. border:1px solid {color:borders};
  488. }
  489.  
  490. .question {
  491. background:#fafafa;
  492. padding:15px 20px 20px 20px;
  493. font-size:11px;
  494. font-style:none;
  495. z-index:1;
  496. }
  497.  
  498. .answer {
  499. margin-left:2px;
  500. padding:5px;
  501. margin-top:-8px;
  502. margin-bottom:-5px;
  503. }
  504.  
  505.  
  506. /*----------audio---------*/
  507.  
  508. .newplayerbutton {
  509. position: relative;
  510. width: 30px;
  511. height: 40px;
  512. overflow: hidden;
  513. }
  514.  
  515. .playerbuttonhug {
  516. position: absolute;
  517. top: 0px;
  518. left: 10px;
  519. }
  520.  
  521. .tumblr_audio_player {
  522. border: none;
  523. padding: 0px;
  524. margin: 0px;
  525. height: 50px;
  526. width: 500px;
  527. }
  528.  
  529. .playerbuttonbg {
  530. position: absolute;
  531. left: 0px;
  532. top: 0px;
  533. width: 50px;
  534. height: 50px;
  535. {block:IfAlbumArt}
  536. background-color: #e4e4e4;
  537. {/block:IfAlbumArt}
  538. {block:IfNotAlbumArt}
  539. background-color: #000000;
  540. {/block:IfNotAlbumArt}
  541. padding:10px;
  542. -webkit-border-radius: 0px;
  543. -moz-border-radius: 0px;
  544. border-radius: 0px;
  545. {block:IfAlbumArt}
  546. opacity: .3;
  547. {block:IfAlbumArt}
  548. {block:IfNotAlbumArt}
  549. opacity: 1;
  550. {block:IfNotAlbumArt}
  551. filter: alpha(opacity=40);
  552. -moz-opacity: 0.4;
  553. -khtml-opacity: 0.4;
  554. transition: opacity .7s ease-in-out;
  555. -moz-transition: opacity .7s ease-in-out;
  556. -webkit-transition: opacity .7s ease-in-out;
  557. }
  558.  
  559. .playerbuttonbg:hover {
  560. opacity: 1;
  561. filter: alpha(opacity=100);
  562. -moz-opacity: 1;
  563. -khtml-opacity: 1;
  564. }
  565.  
  566. .audioimgwrapper {
  567. position: absolute;
  568. left: 0px;
  569. top: 0px;
  570. -webkit-border-radius: 50px;
  571. -moz-border-radius: 50px;
  572. border-radius: 0px;
  573. overflow: hidden;
  574. width:70px;
  575. height:70px;
  576. }
  577.  
  578. .audioimgwrapper img {
  579. width: 100%;
  580. height: auto;
  581. -webkit-border-radius: 50px;
  582. -moz-border-radius: 50px;
  583. border-radius: 0px;
  584. }
  585.  
  586. .audiowrapper {
  587. position: relative;
  588. display:inline-block;
  589. }
  590.  
  591. .trackdetails {
  592. width: auto;
  593. display:inline-block;
  594. min-height:55px;
  595. font-size:11px;
  596. text-align:center;
  597. margin-bottom:20px;
  598. font-style:italic;
  599. letter-spacing:2px;
  600. text-transform:lowercase;
  601. padding:10px;
  602. line-height:20px;
  603. margin-top:-5px;
  604. background-color:#fff;
  605. width:475px;
  606. }
  607.  
  608.  
  609.  
  610. /*----------chat---------*/
  611.  
  612. .chat {
  613. line-height:160%;
  614. list-style:none;
  615. }
  616.  
  617. .line.odd {
  618. background:#fafafa;
  619. margin-bottom:2px;
  620. padding:5px;
  621. list-style:none;
  622. font-size:10px;
  623. }
  624.  
  625. .line.even {
  626. background:#ffffff;
  627. margin-bottom:2px;
  628. padding:5px;
  629. list-style:none;
  630. font-size:10px;
  631. }
  632.  
  633. .label {
  634. padding-right:1px;
  635. text-transform:uppercase;
  636. font-weight:bold;
  637. color:{color:links};
  638. }
  639.  
  640. /*----------quotes---------*/
  641.  
  642. .quote {
  643. font-size:14px;
  644. line-height:150%;
  645. padding:10px;
  646. margin-top:-10px;
  647. font-style:italic;
  648. text-align:center;
  649. }
  650.  
  651. .quotesource {
  652. margin-top:7px;
  653. font-size:9px;
  654. text-transform:uppercase;
  655. letter-spacing:1px;
  656. text-align:center;
  657. }
  658.  
  659. /*----------credit---------*/
  660.  
  661. .credit {
  662. font-size:8px;
  663. position:fixed;
  664. font-weight:bold;
  665. bottom:5px;
  666. right:15px;
  667. z-index:10;
  668. text-align:right;
  669. letter-spacing:1px;
  670. padding:2px;
  671. border-top:0px solid {color:borders};
  672. }
  673.  
  674. .credit a {
  675. color:{color:links};
  676. text-decoration:none;
  677. }
  678.  
  679. .credit a:hover {
  680. color:{color:links hover};
  681. text-decoration:none;
  682. }
  683.  
  684.  
  685.  
  686. </style>
  687. </head>
  688.  
  689. <body>
  690. <div class="container">
  691.  
  692. <div class="credit">
  693. <a title="theme" href="http://mrsmilicevic.tumblr.com/" target="_blank">MRS</a></div>
  694.  
  695. <div class="sidebar">
  696.  
  697. {block:IfShowSidebarImage}<div class="sidebarimage"><a href="/"><img src="{image:sidebar image}"></a></div>{/block:IfShowSidebarImage}
  698.  
  699. <div class="sidetitle">{Title}</div>
  700.  
  701. <div class="nav-wrap">
  702. <ul class="group" id="example-one">
  703. <center>
  704. <li class="current_page_item"><a href="/">home</a></li>
  705. <li><a href="/ask">mail</a></li>
  706. <li>{block:IfShowLink1}<a href="{text:link 1}">{text:link 1 title}</a>{/block:IfShowLink1}</li>
  707. <li>{block:IfShowLink2}<a href="{text:link 2}">{text:link 2 title}</a>{/block:IfShowLink2}</li>
  708. <li>{block:IfShowLink3}<a href="{text:link 3}">{text:link 3 title}</a>{/block:IfShowLink3}</li>
  709. </center></div></ul>
  710.  
  711.  
  712. <div class="description">{Description}</div>
  713.  
  714.  
  715. <div class="pagination">
  716. {block:IfNotEndlessScrolling}
  717. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&lsaquo; back&nbsp;&nbsp;&nbsp;&nbsp;</a>{/block:PreviousPage}
  718. {block:NextPage}<a href="{NextPage}">next &rsaquo;</a>{/block:NextPage}{/block:Pagination}
  719. {/block:IfNotEndlessScrolling}
  720. </div>
  721.  
  722.  
  723. </div>
  724.  
  725. {block:IfEndlessScrolling}
  726. <div class="autopagerize_page_element">
  727. {/block:IfEndlessScrolling}
  728.  
  729. <div class="entries">
  730. {block:Posts}
  731. <div class="posts">
  732.  
  733.  
  734. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1><div class="caption"><div class="textpost">{Body}</div></div>{/block:Text}
  735.  
  736. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:Photo}
  737.  
  738. {block:Photoset}{Photoset-500}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:Photoset}
  739.  
  740. {block:Quote}<div class="quote"><span style="font-size:40px; font-family:times; z-index:-1; position:absolute; margin-top:9px; opacity:0.5; margin-left:-15px; color:#cccccc;">&ldquo;</span>{Quote}<span style="font-size:40px; font-family:times; z-index:-1; position:absolute; margin-top:9px; opacity:0.5; margin-left:-10px; color:#cccccc;">&rdquo;</span></div>{block:Source}<div class="quotesource"> — {Source}</div>{/block:Source}{/block:Quote}
  741.  
  742. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  743.  
  744. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>{/block:Chat}
  745.  
  746. {block:Audio}{block:AudioPlayer}
  747. <div class="audiowrapper">
  748.  
  749. {block:IfAlbumArt}
  750. {block:AlbumArt}
  751. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  752. {/block:AlbumArt}
  753. {/block:IfAlbumArt}
  754.  
  755. <div class="playerbuttonbg">
  756. <div class="newplayerbutton">
  757. <div class="playerbuttonhug">
  758. {block:IfAlbumArt}
  759. {AudioPlayerGrey}
  760. {/block:IfAlbumArt}
  761.  
  762. {block:IfNotAlbumArt}
  763. {AudioPlayerBlack}
  764. {block:IfNotAlbumArt}
  765. </div></div></div>
  766.  
  767. <div class="trackdetails">
  768. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  769. {block:Artist}<i><b>by:</b> {Artist}{/block:Artist}<br/>
  770. <b>plays:</b> {FormattedPlayCount}</div></div></i>
  771. {/block:AudioPlayer}
  772. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  773. {/block:Audio}
  774.  
  775.  
  776. {block:Video}{Video-500}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:Video}
  777.  
  778. {block:Answer}<div class="question">
  779. <div class="asker"><b><u>{Asker} said</u>:</b></div>
  780. {Question}</div><br>
  781. <div class="answer">
  782. {Answer}</div>
  783. {/block:Answer}
  784.  
  785. <div class="info">
  786. {block:Date}<span style="text-transform:uppercase; background-color:#fafafa; padding:5px; font-size:8px; letter-spacing:1px; font-weight:bold;">{DayOfMonthWithZero} {ShortMonth}</span>{/block:Date}
  787.  
  788. &nbsp;&nbsp;<a href="{Permalink}">{NoteCountWithLabel}</a>
  789.  
  790. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParenttitle}">&nbsp;&nbsp;&nbsp;&nbsp;via </a> {block:ContentSource}<a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRoottitle}" style="color:{color:links}">& src</a>{/block:ContentSource}
  791. {/block:RebloggedFrom}
  792. </div>
  793.  
  794. {block:HasTags}
  795. <div class="tags">{block:Tags}<a href="{TagURL}">#{Tag} &nbsp;</a>{/block:Tags}</div>
  796. {/block:HasTags}
  797.  
  798.  
  799. </div>
  800.  
  801. {block:PostNotes}
  802. <div class="pagenotes">
  803. {PostNotes}
  804. </div>
  805. {/block:PostNotes}
  806.  
  807. {/block:Posts}
  808.  
  809.  
  810. {block:ContentSource}
  811. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  812. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  813. {/block:SourceLogo}
  814. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  815. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  816.  
  817.  
  818. </body>
  819.  
  820.  
  821. </div></div></div></div></div></div></div></div></div></div>
  822. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement