tiffxny21

winter ★

Apr 1st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.04 KB | None | 0 0
  1. <head>
  2. <title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}
  6. <meta name="description" content="{MetaDescription}" />
  7. {/block:Description}
  8. </head>
  9.  
  10. <!-- W I N T E R I S C O M I N G T H E M E
  11. ~ code created by AWOKENHOPE.TUMBLR.COM
  12. ~ do not steal this code
  13. ~ do not use as a base code -->
  14.  
  15.  
  16. <!--------------------------- POP UP -------------------------------->
  17.  
  18. <script type="text/javascript"
  19. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  20. <script>
  21. $(document).ready(function() {
  22. //
  23. $('a.poplight[href^=#]').click(function() {
  24. var popID = $(this).attr('rel'); //Get Popup Name
  25. var popURL = $(this).attr('href'); //Get Popup href to define size
  26. var query= popURL.split('?');
  27. var dim= query[1].split('&');
  28. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  29. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  30. var popMargTop = ($('#' + popID).height() + 80) / 2;
  31. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  32. //Apply Margin to Popup
  33. $('#' + popID).css({
  34. 'margin-top' : -popMargTop,
  35. 'margin-left' : -popMargLeft
  36. });
  37. $('body').append('<div id="fade"></div>');
  38. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  39. return false;
  40. });
  41. $('a.close, #fade').live('click', function() {
  42. $('#fade , .popup_block').fadeOut(function() {
  43. $('#fade, a.close').remove(); //fade them both out
  44. });
  45. return false;
  46. });
  47. });
  48. </script>
  49.  
  50. <!-- FONT AWESOME - DON'T TOUCH THIS IF YOU WANT TO USE FONT AWESOME -->
  51.  
  52. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  53.  
  54. <!----------------------------- TOOLTIP -------------------------->
  55.  
  56. </script><!--START TOOLTIP BY MALIHU--><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script><script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script><script>
  57. (function($){
  58. $(document).ready(function(){
  59. $("a[title]").style_my_tooltips({
  60. tip_follows_cursor:true,
  61. tip_delay_time:90,
  62. tip_fade_speed:600,
  63. attribute:"title"
  64. });
  65. });
  66. })(jQuery);
  67. </script>
  68.  
  69. <!---------------------------- TABBED POP UP TITLES ---------------------->
  70. <script>
  71.  
  72. $(document).ready(function(){
  73. $("ul#tabs li").click(function(e){
  74. if (!$(this).hasClass("active")) {
  75. var tabNum = $(this).index();
  76. var nthChild = tabNum+1;
  77. $("ul#tabs li.active").removeClass("active");
  78. $(this).addClass("active");
  79. $("ul#tab li.active").removeClass("active");
  80. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  81. }
  82. });
  83. });
  84. </script>
  85.  
  86. <!-- DROP DOWN VERSES. IF YOU DON'T WANT DROP DOWN VERSES THEN DELETE UNTIL "END." -->
  87.  
  88. <script type="text/javascript" src="https://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  89. <script type="text/javascript">
  90. $(document).ready(function(){
  91. $(".links_body").hide();
  92. $(".links_head").click(function(){
  93. $(this).next(".links_body").slideToggle('fast');
  94. }); }); </script>
  95.  
  96. <!-- END. -->
  97.  
  98. <!------------------------- GOOGLE STYLE FONTS -------------------------->
  99.  
  100. <!--font-family: 'Karma', serif; -->
  101. <link href="https://fonts.googleapis.com/css?family=Karma" rel="stylesheet">
  102.  
  103. <!--font-family: 'Oranienbaum', sans-serif; -->
  104. <link href="https://fonts.googleapis.com/css?family=Oranienbaum" rel="stylesheet">
  105.  
  106. <!--font-family: 'Abel', sans-serif; -->
  107. <link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
  108.  
  109. <!--font-family: 'Parisienne', cursive; -->
  110. <link href="https://fonts.googleapis.com/css?family=Parisienne" rel="stylesheet">
  111.  
  112. <!--font-family: 'Arapey', serif; -->
  113. <link href="https://fonts.googleapis.com/css?family=Arapey" rel="stylesheet">
  114.  
  115. <!--font-family: 'Montez', cursive; -->
  116. <link href="https://fonts.googleapis.com/css?family=Montez" rel="stylesheet">
  117.  
  118. <style type="text/css">
  119.  
  120. /* ------------------------- SMALL TUMBLR CONTROLS ---------------------- */
  121.  
  122. iframe.tmblr-iframe {
  123. z-index:99999999999999!important;
  124. margin-right:20px;
  125. margin-top:10px;
  126. top:0!important;
  127. right:0!important;
  128. opacity:0.4;
  129. transform:scale(0.65);
  130. transform-origin:100% 0;
  131. -webkit-transform:scale(0.65);
  132. -webkit-transform-origin:100% 0;
  133. -o-transform:scale(0.65);
  134. -o-transform-origin:100% 0;
  135. -moz-transform:scale(0.65);
  136. -moz-transform-origin:100% 0;
  137. -ms-transform:scale(0.65);
  138. -ms-transform-origin:100% 0;}
  139.  
  140. iframe.tmblr-iframe:hover {
  141. opacity:0.6!important;}
  142.  
  143.  
  144. /*----------------------------- SCROLLBAR -----------------------*/
  145. ::-webkit-scrollbar-thumb{
  146. background-color: transparent;
  147. border: 1px solid transparent;
  148. height:0px; }
  149.  
  150. ::-webkit-scrollbar {
  151. height:0px;
  152. width: 0px;
  153. background-color: transparent; }
  154.  
  155. /* ------------------------------ BODY --------------------------- */
  156. body {
  157. background-color:#131313; /*BACKGROUND COLOR */
  158. background-image:url('https://static.tumblr.com/b2tj7wo/HWYpajpu5/winter_is_coming.png'); /* BACKGROUND IMAGE. DELETE IF YOU DON'T WANT */
  159. background-repeat:no-repeat;
  160. background-position:fixed;
  161. background-attachment:fixed;
  162. font-family:'Arapey', serif;
  163. text-align:justify;
  164. font-size:12px;
  165. color:#dbdbdb; /* FONT COLOR */
  166. font-weight:100%; }
  167.  
  168. /* ------------------------ DON'T TOUCH FROM HERE ---------------------*/
  169.  
  170. small, sub, sup {
  171. font-size:100%;}
  172.  
  173. /* ------------------------ TO HERE ---------------------*/
  174.  
  175. /*---------------------------- CONTAINER -------------------- */
  176.  
  177. #container {
  178. position:absolute;
  179. background:transparent; /* BACKGROUND COLOR OF CONTAINER */
  180. left:578px; /* POSITIONING FROM LEFT */
  181. top:121px; /* POSITIONING FROM TOP */
  182. height:414px;
  183. width:305px; /* MAKE SURE YOU EDIT THE WIDTH IN POSTS TOO */
  184. text-align:justify;
  185. line-height:175%;
  186. word-spacing:1px;
  187. margin:auto;
  188. position:fixed;
  189. overflow-y:scroll;
  190. overflow-x:hidden;
  191. z-index:999; }
  192.  
  193. /*------------------------------ POSTS ------------------------------*/
  194.  
  195. .posts {
  196. width:284.5px; /*MAKE SURE THIS IS 20.5 PIXELS BELOW YOUR CONTAINER WIDTH */
  197. background-color:transparent;
  198. padding:10px;
  199. padding-top:20px;
  200. margin-bottom:30px; }
  201.  
  202. /* ---- DO NOT TOUCH FROM HERE ----- */
  203. img {
  204. max-width:100%;
  205. border:none; }
  206.  
  207. .caption img {
  208. max-width:100%;
  209. height:auto; }
  210.  
  211. .posts img {
  212. max-width:100%;
  213. margin-top:5px;
  214. margin-bottom:5px;}
  215.  
  216. /* ---- TO HERE ---- */
  217.  
  218.  
  219. /* ----------------------- LINKS IN POSTS ------------------------- */
  220.  
  221. a {
  222. text-decoration:none;
  223. font-size:12px;
  224. text-transform:uppercase;
  225. outline:none;
  226. -moz-outline-style:none;
  227. color:#881313; /* LINK COLOR */
  228. text-shadow:#000 0.1em 0.1em 0.1em; /* LINK SHADOW COLOR */
  229. -moz-transition-duration:0.7s;
  230. -webkit-transition-duration:0.7s;
  231. -o-transition-duration:0.7s; }
  232.  
  233. a:hover {
  234. text-decoration:none;
  235. outline:none;
  236. -moz-outline-style:none;
  237. color:#fff; /* LINK COLOR UPON HOVER */
  238. text-shadow: #fff 0 0 3px; /* LINK SHADOW COLOR UPON HOVER */
  239. text-decoration:none; }
  240.  
  241.  
  242. /*------------------------- BOLD / ITALICS / BIG ----------------------- */
  243.  
  244. b, strong, u {
  245. font-size:14px; /* BOLD FONT SIZE */
  246. font-family: 'Oranienbaum', serif;
  247. text-transform:uppercase;
  248. color:#881313; /* BOLD COLOR */
  249. text-shadow:#000 0.1em 0.1em 0.1em; /* BOLD SHADOW COLOR */}
  250.  
  251. i, em {
  252. color:#fff; /* ITALICS COLOR */
  253. text-transform:lowercase;
  254. font-family: 'Nightingale';
  255. font-size:8px; /* ITALICS FONT SIZE */
  256. line-height:100%;
  257. text-shadow:#000 0.1em 0.1em 0.1em; /* ITALICS SHADOW COLOR */ }
  258.  
  259. big {
  260. font-size:14px; /* BIG TEXT FONT SIZE */
  261. text-transform:uppercase;
  262. letter-spacing:2px;
  263. font-family: 'Oranienbaum', serif;
  264. font-weight:bold;
  265. color:#881313; /* BIG TEXT COLOR */ }
  266.  
  267. /* --------------------------- BLOCKQUOTE -------------------------------- */
  268.  
  269. blockquote {
  270. padding:5px;
  271. margin:1px 1px 1px 1px;
  272. border-left:solid 1px #2a2a2a; /*BLOCKQUOTE COLOR*/ }
  273.  
  274. blockquote img {
  275. max-width:100%;
  276. height:auto; }
  277.  
  278. /* ----------------------------- HEADERS ---------------------------- */
  279.  
  280. h1 {
  281. font-weight:normal;
  282. font-size:22px; /* HEADER FONT SIZE */
  283. text-align:center;
  284. font-family: 'Arapey', serif;
  285. color:#dbdbdb; /* HEADER FONT COLOR */
  286. line-height:18px;
  287. text-transform:uppercase;
  288. line-height:110%;
  289. text-shadow: 1px 1px 1px #000; /* HEADER SHADOW COLOR */ }
  290.  
  291. h2 {
  292. font-weight:normal;
  293. font-size:15px; /* HEADER 2 FONT SIZE */
  294. text-align:center;
  295. font-family: 'Arapey', sans-serif;
  296. line-height:18px;
  297. text-transform:uppercase;}
  298.  
  299. /* --------------------------- BREAK & INFO ---------------------------*/
  300.  
  301. #break {
  302. width:auto;
  303. height:3px; /* HEIGHT OF POST BREAK */
  304. background-image:url('https://static.tumblr.com/b2tj7wo/CHUpajqgc/winter_is_coming_break.png'); /* INFO BACKGROUND */
  305. background-repeat:repeat;
  306. background-attachment:fixed;
  307. text-transform:uppercase; }
  308.  
  309. #info {
  310. width:auto;
  311. height:20px;
  312. padding:2px;
  313. font-family: 'Arapey', serif;
  314. background-color:transparent;
  315. text-transform:uppercase;
  316. text-align:center;
  317. overflow-y:scroll;
  318. word-spacing:10px;
  319. font-size:12px;
  320. position:relative;, }
  321.  
  322. #info a {
  323. color:#2a2a2a; /* INFO DOTS COLOR */
  324. font-style:normal;}
  325.  
  326.  
  327. #info a:hover {
  328. color:#000; /* INFO DOTS COLOR UPON HOVER */
  329. transition-duration:0.9s;
  330. -webkit-transition-duration:0.9s;
  331. -o-transition-duration:0.9s;}
  332.  
  333. /* -------------------------------- TAGS ----------------------------- */
  334. .tags {
  335. background:transparent
  336. text-align:right;
  337. font-family: 'Arapey', serif;
  338. padding-bottom:5px;
  339. height:auto;
  340. width:auto;
  341. overflow-y:scroll;
  342. opacity:1;}
  343.  
  344. .tags a{
  345. font-size:10px; /* TAGS FONT SIZE */
  346. font-family: 'Arapey', serif;
  347. text-transform:none;
  348. color:#696969; /* TAGS COLOR */
  349. text-shadow: 1px 1px 1px #000; /* TAGS SHADOW COLOR */
  350. -moz-transition-duration:0.2s;
  351. -webkit-transition-duration:0.2s;
  352. -o-transition-duration:0.2s;
  353. opacity:1; }
  354.  
  355. .tags a:hover{
  356. text-decoration:none;
  357. color:#fff; /* TAGS COLOR UPON HOVER */
  358. -moz-transition-duration:0.2s;
  359. -webkit-transition-duration:0.2s;
  360. -o-transition-duration:0.2s;
  361. opacity:1; }
  362.  
  363.  
  364. /* --------------------------- HOME LINK --------------------------- */
  365.  
  366. #home {
  367. position:fixed;
  368. top:108px; /* POSITIONING FROM TOP*/
  369. left:585px; /* POSITIONING FROM LEFT*/
  370. text-align:none;
  371. font-style:none;
  372. font-family: 'Nightingale';
  373. z-index:9999;
  374. line-height:0%;}
  375.  
  376. #home a{
  377. margin-right:0px;
  378. color:#fff; /* HOME FONT COLOR */
  379. text-shadow:2px 1px 2px #000000; /* HOME SHADOW */
  380. text-transform:lowercase;
  381. font-size:20px; /* HOME FONT SIZE */
  382. -webkit-filter:blur(0px);
  383. -moz-transition-duration:.7s;
  384. -webkit-transition-duration:.7s;
  385. -o-transition-duration:.7s;
  386. }
  387.  
  388. #home a:hover {
  389. color: transparent; /* HOME COLOR UPON HOVER */
  390. text-shadow: #fff 0 0 0px; /* HOME SHADOW UPON HOVER */
  391. -webkit-filter:blur(0px);
  392. -moz-transition-duration:1s;
  393. -webkit-transition-duration:1s;
  394. -o-transition-duration:1s; }
  395.  
  396. /* ---------------------------- ASK LINK ------------------------- */
  397.  
  398. #asklink {
  399. position:fixed;
  400. top:375px; /* POSITIONING TOP */
  401. left:240px; /* POSITIONING FROM LEFT */
  402. background:transparent; /* BACKGROUND COLOR OF BOX */
  403. text-transform:uppercase; /* BORDER COLOR */
  404. height:20px;
  405. width:20px;
  406. text-align:center;
  407. font-style:none;
  408. font-family:'Karma', serif;
  409. font-size:35px; /* FONT SIZE */
  410. line-height:35%;}
  411.  
  412. #asklink a{
  413. margin-right:0px;
  414. color:#dbdbdb; /* FONT COLOR */
  415. -webkit-filter:blur(0px);
  416. -moz-transition-duration:.7s;
  417. -webkit-transition-duration:.7s;
  418. -o-transition-duration:.7s; }
  419.  
  420. #asklink a:hover {
  421. color: transparent; /* COLOR UPON HOVER */
  422. text-shadow: #d0d0d0 0 0 0px; /* SHADOW COLOR UPON HOVER */
  423. -webkit-filter:blur(0px);
  424. -moz-transition-duration:1s;
  425. -webkit-transition-duration:1s;
  426. -o-transition-duration:1s; }
  427.  
  428. /* ---------------------------- RULES LINK ------------------------ */
  429.  
  430. #law {
  431. position:fixed;
  432. top:375px; /* POSITIONING FROM TOP */
  433. left:270px; /* POSITIONING FROM LEFT */
  434. background:transparent; /* BACKGROUND COLOR OF BOX */
  435. text-transform:uppercase;
  436. height:20px;
  437. width:20px;
  438. text-align:center;
  439. font-style:none;
  440. font-family:'Karma', serif;
  441. font-size:35px; /* FONT SIZE */
  442. line-height:35%;}
  443.  
  444. #law a{
  445. margin-right:0px;
  446. color:#dbdbdb; /* FONT COLOR */
  447. -webkit-filter:blur(0px);
  448. -moz-transition-duration:.7s;
  449. -webkit-transition-duration:.7s;
  450. -o-transition-duration:.7s; }
  451.  
  452. #law a:hover {
  453. color: transparent; /* COLOR UPON HOVER */
  454. text-shadow: #d0d0d0 0 0 0px; /* SHADOW COLOR UPON HOVER */
  455. -webkit-filter:blur(0px);
  456. -moz-transition-duration:1s;
  457. -webkit-transition-duration:1s;
  458. -o-transition-duration:1s; }
  459.  
  460. /* ---------------------------- VERSES LINK ----------------------- */
  461.  
  462. #verses {
  463. position:fixed;
  464. top:375px; /* POSITIONING FROM TOP */
  465. left:300px; /* POSITIONING FROM LEFT */
  466. background:transparent; /* BACKGROUND COLOR OF BOX */
  467. text-transform:uppercase;
  468. height:20px;
  469. width:20px;
  470. text-align:center;
  471. font-style:none;
  472. font-family:'Karma', serif;
  473. font-size:35px; /* FONT SIZE */
  474. line-height:35%;}
  475.  
  476. #verses a{
  477. margin-right:0px;
  478. color:#dbdbdb; /* TEXT COLOR */
  479. -webkit-filter:blur(0px);
  480. -moz-transition-duration:.7s;
  481. -webkit-transition-duration:.7s;
  482. -o-transition-duration:.7s; }
  483.  
  484. #verses a:hover {
  485. color: transparent; /* COLOR UPON HOVER */
  486. text-shadow: #d0d0d0 0 0 0px; /* SHADOW COLOR UPON HOVER */
  487. -webkit-filter:blur(0px);
  488. -moz-transition-duration:1s;
  489. -webkit-transition-duration:1s;
  490. -o-transition-duration:1s; }
  491.  
  492. /* -------------------------- NAVIGATION LINK -------------------- */
  493.  
  494. #nav {
  495. position:fixed;
  496. top:375px; /* POSITIONING FROM TOP */
  497. left:330px; /* POSITIONING FROM LEFT */
  498. background:transparent; /* BACKGROUND COLOR OF BOX */
  499. text-transform:uppercase;
  500. height:20px;
  501. width:20px;
  502. text-align:center;
  503. font-style:none;
  504. font-family:'Karma', serif;
  505. font-size:35px; /* FONT SIZE */
  506. line-height:35%;}
  507.  
  508. #nav a{
  509. margin-right:0px;
  510. color:#dbdbdb; /* TEXT COLOR */
  511. -webkit-filter:blur(0px);
  512. -moz-transition-duration:.7s;
  513. -webkit-transition-duration:.7s;
  514. -o-transition-duration:.7s; }
  515.  
  516. #nav a:hover {
  517. color: transparent; /* COLOR UPON HOVERING */
  518. text-shadow: #d0d0d0 0 0 0px; /* SHADOW COLOR UPON HOVER */
  519. -webkit-filter:blur(0px);
  520. -moz-transition-duration:1s;
  521. -webkit-transition-duration:1s;
  522. -o-transition-duration:1s; }
  523.  
  524. /* -------------------- CREDIT - DO NOT ERASE -------------------------- */
  525.  
  526. #credit {
  527. position:absolute;
  528. position:fixed;
  529. font-family: 'Karma', sans-serif;
  530. text-transform:bold;
  531. width:auto;
  532. height:auto;
  533. bottom:10px; /* POSITIONING FROM BOTTOM */
  534. right:10px; /* POSITIONING FROM RIGHT */
  535. padding: 2px 2px 2px;
  536. font-size:20px;
  537. line-height:100%;
  538. z-index:99999999;
  539. letter-spacing: 1px; }
  540.  
  541. #credit a {
  542. width:30px;
  543. line-height:100%;
  544. margin-bottom:10px;
  545. opacity:1;
  546. color:#dbdbdb; /* TEXT COLOR */
  547. letter-spacing:0px;
  548. text-decoration:none; }
  549.  
  550. #credit a:hover {
  551. color: #696969; /* COLOR UPON HOVER */
  552. width:60px;
  553. text-shadow: 0 0 5px #eee; /* SHADOW COLOR UPON HOVER */
  554. -webkit-filter: blur(1px) ;
  555. -webkit-transition: 0.7s ease-in;
  556. -moz-transition: }
  557.  
  558.  
  559. /* ---------------------------- PAGINATION -------------------------- */
  560.  
  561. #pagination {
  562. position:fixed;
  563. font-size:40px;
  564. top:460px; /* POSITIONING TOP */
  565. left:440px; /* POSITIONING LEFT */
  566. -webkit-transform: rotate(-80deg);}
  567.  
  568. #pagination a {
  569. width:140px;
  570. line-height:100%;
  571. color:#fff; /* TEXT COLOR */
  572. font-size:30px; /* PAGINATION SIZE /*
  573. text-shadow:1px 1px 3px #dbdbdb; /* SHADOW COLOR */
  574. text-decoration:none; }
  575.  
  576. #pagination a:hover {
  577. text-align:center;
  578. color:#8a8e91; /* COLOR UPON HOVER */
  579. width:40px;
  580. -moz-transition-duration:.9s;
  581. -webkit-transition-duration:.9s;
  582. -o-transition-duration:.9s; }
  583.  
  584. #paginationb {
  585. position:fixed;
  586. font-size:30px;
  587. top:445px; /* POSITIONING TOP */
  588. left:60px; /* POSITIONING LEFT */
  589. -webkit-transform: rotate(-15deg);}
  590.  
  591. #paginationb a {
  592. width:140px;
  593. line-height:100%;
  594. color:#fff; /* TEXT COLOR */
  595. font-size:30px; /* PAGINATION SIZE */
  596. text-shadow:1px 1px 3px #dbdbdb; /* SHADOW COLOR */
  597. text-decoration:none; }
  598.  
  599. #paginationb a:hover {
  600. text-align:center;
  601. color:#8a8e91; /* COLOR UPON HOVER */
  602. width:40px;
  603. -moz-transition-duration:.9s;
  604. -webkit-transition-duration:.9s;
  605. -o-transition-duration:.9s; }
  606.  
  607. /* ----------------------------- ASKS --------------------------------- */
  608.  
  609. .askimg {
  610. background-position:absolute;
  611. background-repeat:no-repeat;
  612. margin-top:-15px;}
  613.  
  614. .ask {
  615. background-repeat:repeat;
  616. background-attachment:absolute;
  617. border-bottom:solid 1px #2a2a2a; /* ASK BORDER COLOR */}
  618.  
  619. .askerurl {
  620. height:15px;
  621. text-align:center;}
  622.  
  623. .askerurl a {
  624. font-family: 'Arapey', sans-serif;
  625. font-size:12px; /* ASKER URL FONT SIZE */
  626. text-transform:uppercase;
  627. letter-spacing:1px;
  628. color:#881313; /* ASKER URL FONT COLOR */
  629. text-align:right;
  630. border-bottom:solid 1px #2a2a2a; /* AKSER URL BOTTOM BORDER COLOR */
  631. text-shadow:0.1em 0.1em 0.1em #000; /* SHADOW COLOR */ }
  632.  
  633. .askerurl a:hover {
  634. color: #fff; /* COLOR UPON HOVER */
  635. text-shadow: #000 2px 0px 2px; /* SHADOW COLOR UPON HOVER */
  636. letter-spacing:1px;
  637. -moz-transition-duration:.9s;
  638. -webkit-transition-duration:.9s;
  639. -o-transition-duration:.9s; }
  640.  
  641. .question {
  642. text-align:right;
  643. background-color:transparent;
  644. font-family:'Arapey', sans-serif;
  645. padding:5px 5px 5px;
  646. letter-spacing:1px;
  647. color:#dbdbdb; /* QUESTION TEXT COLOR */
  648. padding-top:5px;
  649. padding-bottom:20px; }
  650.  
  651. /* -------------------------------- QUOTES ------------------------------*/
  652.  
  653. .quote {
  654. font-size:12px;
  655. letter-spacing:1px;
  656. text-align:right;
  657. border-bottom:solid 1px #2a2a2a; /* BORDER COLOR */
  658. margin-bottom:5px;
  659. padding-bottom:5px; }
  660.  
  661. .quotesource {
  662. font-size:9px;
  663. letter-spacing:1px;
  664. text-align:right;
  665. color:#dbdbdb; /* QUOTE SOURCE COLOR */
  666. text-shadow: #000 0.1em 0.1em 0.1em; /* QUOTE SOURCE TEXT SHADOW */
  667. margin-top:5px;
  668. margin-bottom:5px;
  669. text-transform:uppercase;
  670. font-family:'Oranienbaum', serif; }
  671.  
  672.  
  673. /* -------------------------TABBED NAVIGATION -------------------------- */
  674.  
  675. #tabbedpop {
  676. position:fixed;
  677. font-family: 'Arapey', serif;
  678. font-size:9px; /* FONT SIZE */
  679. margin-top:55px; /* POSITIONING TOP */
  680. margin-left:220px; /* POSITIONING LEFT */
  681. width:200px;
  682. height:200px;
  683. color:#dbdbdb; /* FONT COLOR */
  684. text-align:justify;
  685. opacity:1;
  686. padding: 5px 5px 5px;
  687. opacity:1;}
  688.  
  689.  
  690. /* ---------------------------- DESCRIPTION BOX ------------------------- */
  691.  
  692. #descriptionbox {
  693. position:fixed;
  694. background-color:transparent; /* BACKGROUND COLOR */
  695. width:184px; /* WIDTH */
  696. height:97px; /* HEIGHT */
  697. top:408px; /* POSITIONING TOP */
  698. margin-left:188px; /* POSITIONING LEFT */
  699. font-family:'Arapey', serif;
  700. font-size:12px; /* FONT SIZE */
  701. text-align:justify;
  702. line-height:175%;
  703. color:#dbdbdb; /* FONT COLOR */
  704. overflow:scroll;
  705. padding: 5px 5px 5px 5px;
  706. -moz-transition-duration:0.5s;
  707. -webkit-transition-duration:0.5s;
  708. -o-transition-duration:0.5s;}
  709.  
  710. /* ----------------------------- TITLES ------------------------------ */
  711.  
  712. #descriptiontitles {
  713. font-family:'Arapey', sans-serif;
  714. font-size:12px; /* FONT SIZE */
  715. padding: 3px 3px;
  716. margin: 5px 5px 5px 5px;
  717. letter-spacing: 1px;
  718. text-shadow: #696969 1px 1px 1px; /* TEXT SHADOW */
  719. background: url('https://static.tumblr.com/b2tj7wo/CHUpajqgc/winter_is_coming_break.png'); /* BACKGROUND IMAGE */
  720. background-repeat:repeat;
  721. background-attachment:fixed;
  722. border:double 3px #2a2a2a; /* BORDER */
  723. line-height: normal;
  724. text-transform: uppercase;
  725. color: #fff; /* FONT COLOR */
  726. text-align: center;
  727. width:auto;
  728. z-index:9999;}
  729.  
  730. #titles {
  731. font-family:'Arapey', sans-serif;
  732. font-size:10px;
  733. padding: 3px 3px;
  734. margin: 5px 5px 5px 5px;
  735. letter-spacing: 1px;
  736. text-shadow: #696969 1px 1px 1px; /*TEXT SHADOW */
  737. background: url(''); /* BACKGROUND IMAGE */
  738. background-repeat:repeat;
  739. background-attachment:fixed;
  740. border:double 3px #2a2a2a; /* BORDER */
  741. line-height: normal;
  742. text-transform: uppercase;
  743. color: #fff; /* FONT COLOR */
  744. text-align: center;
  745. width:auto;
  746. z-index:9999;}
  747.  
  748. /* ------------------------- PRE WRAP - DO NOT TOUCH -------------------- */
  749. pre {
  750. font-family: 'Oranienbaum', serif;
  751. text-transform:uppercase;
  752. font-style:normal;
  753. white-space: pre-wrap;
  754. white-space: -moz-pre-wrap;
  755. white-space: -pre-wrap;
  756. white-space: -o-pre-wrap;
  757. word-wrap: break-word; }
  758.  
  759. /* ----------------------------- TOOLTIP -------------------------------- */
  760.  
  761. #s-m-t-tooltip {
  762. max-width: 500px;
  763. padding: 5px 8px;
  764. margin: 10px;
  765. font-size: 10px;
  766. letter-spacing: 1px;
  767. font-family: 'Nightingale';
  768. text-transform:lowercase;
  769. background-repeat:repeat;
  770. background-attachment:fixed;
  771. color:#fff; /* TEXT COLOR */
  772. z-index:9999999;
  773. transition: 0.5s ease-in-out;
  774. -webkit-transition: 0.5s ease-in-out;
  775. -moz-transition: 0.5s ease-in-out;
  776. -ms-transition: 0.5s ease-in-out;
  777. -o-transition: 0.5s ease-in-out; }
  778.  
  779.  
  780. /* ------------------------------ POPUPS ------------------------ */
  781.  
  782. .popup_block{
  783. display:none;
  784. height:500px;
  785. width:500px;
  786. background-image:url('https://static.tumblr.com/b2tj7wo/H5bpajs8r/winter_is_coming_pop_up.png'); /* POP UP BLOCK IMAGE */
  787. float:left;
  788. position:fixed;
  789. top:50%;
  790. left:50%;
  791. z-index: 99999;
  792. -webkit-box-shadow: 0px 0px 20px #000;
  793. -moz-box-shadow: 0px 0px 20px #000;
  794. box-shadow: 0px 0px 20px #000; }
  795.  
  796. *html #fade {position: absolute;}
  797. *html .popup_block {position: absolute;}
  798. #fade {
  799. display:none;
  800. position:fixed;
  801. left:0px;
  802. top:0px;
  803. background:transparent; /* SAME COLOR AS BACKGROUND OR TRANSPARENT*/
  804. width:100%;
  805. height:100%;
  806. z-index:999;
  807. -webkit-box-shadow: 0px 0px 0px #000;
  808. -moz-box-shadow: 0px 0px 0px #000;
  809. box-shadow: 0px 0px 0px #000;
  810. }
  811.  
  812. .popupcontent {
  813. position:absolute;
  814. text-align:justify;
  815. padding:5px;
  816. width:235px; /* WIDTH */
  817. height:296px; /* HEIGHT */
  818. line-height:175%;
  819. word-spacing:1px;
  820. overflow-y:scroll;
  821. margin-left:45px; /* POSITIONING LEFT */
  822. margin-top:88px; /* POSITIONING TOP */}
  823.  
  824. .popupnavcontent {
  825. position:absolute;
  826. text-align:justify;
  827. padding:5px;
  828. width:235px;
  829. height:296px;
  830. line-height:175%;
  831. word-spacing:1px;
  832. background:transparent;
  833. overflow-y:scroll;
  834. margin-left:45px;
  835. margin-top:88px;}
  836.  
  837.  
  838. /*----------------------- TABBED TITLES ON POP UP --------------------- */
  839.  
  840. ul#tabs {
  841. list-style-type: none;
  842. text-align:justify;
  843. font-family: 'Arapey', serif;
  844. letter-spacing:1px; }
  845.  
  846. ul#tabs li {
  847. background:#131313; /* BACKGROUND COLOR */
  848. background-image:url(''); /* BACKGROUND IMAGE */
  849. background-repeat:repeat;
  850. background-attachment:fixed;
  851. border:double 3px #2a2a2a; /* BORDER COLOR */
  852. width:75px; /* WIDTH */
  853. height:15px; /* HEIGHT */
  854. display:inline-block;
  855. cursor: pointer;
  856. padding:1px 5px 5px;
  857. font-size:9px; /* FONT SIZE */
  858. font-family: 'Arapey', serif;
  859. text-transform:uppercase;
  860. text-align:center;
  861. line-height:200%;
  862. margin-bottom:5px;
  863. color:#dbdbdb; /* FONT COLOR */
  864. text-shadow: 1px 1px 1px #000; /* TEXT SHADOW */ }
  865.  
  866. ul#tabs li:hover {
  867. background-color:#131313; /* COLOR UPON HOVER */
  868. border:double 3px #2a2a2a; /* BORDER UPON HOVER */
  869. color:#fff; /* TEXT COLOR UPON HOVER */ }
  870.  
  871. ul#tabs li.active {
  872. background:#131313; /* BACKGROUND COLOR OF ACTIVE TAB */
  873. background-repeat:repeat;
  874. background-attachment:fixed;
  875. border:double 3px #2a2a2a; /* BORDER OF ACTIVE TAB */
  876. color:#fff; /* FONT COLOR OF ACTIVE TAB */
  877. display: inline-block;
  878. padding: 1px 5px 5px;
  879. font-size:9px; /* TEXT SIZE OF ACTIVE TAB */
  880. text-transform:uppercase;}
  881.  
  882. ul#tab {
  883. list-style-type: none;
  884. margin: 0;
  885. padding: 0; }
  886.  
  887. ul#tab li {
  888. display: none; }
  889.  
  890. ul#tab li.active {
  891. display: block; }
  892.  
  893. /* ------------------------- POP UP LINKS -----------------------------*/
  894.  
  895. .popuptags {
  896. padding-top:5px;
  897. text-align:center; }
  898.  
  899. .popuptags a {
  900. display:inline-block;
  901. width:60px;
  902. height:15px;
  903. margin:2px;
  904. padding:1px 2px 4px;
  905. text-align:center;
  906. background:transparent; /* BACKGROUND */
  907. border:double 3px #2a2a2a; /* BORDER*/
  908. font-size:9px; /* FONT SIZE */
  909. color:#dbdbdb; /* TEXT COLOR */
  910. font-family: 'Arapey', serif;
  911. text-transform:uppercase;}
  912.  
  913. .popuptags a:hover {
  914. background-color:transparent; /* BACKGROUND COLOR UPON HOVER */
  915. color:#fff; /* TEXT COLOR UPON HOVER */ }
  916.  
  917. /* ---------------------- DROP DOWN VERSES ----------------------------- */
  918.  
  919. .links_list {
  920. margin:0px;
  921. padding:0px;
  922. width:100%; }
  923.  
  924. .links_head {
  925. font-family: 'Arapey', serif;
  926. height:auto;
  927. font-size:12px; /* FONT SIZE */
  928. padding: 3px 3px;
  929. margin: 5px 0px 0px;
  930. letter-spacing: 1px;
  931. text-shadow: 1px 1px 1px #000; /* TEXT SHADOW */
  932. background:transparent; /* BACKGROUND COLOR */
  933. border:3px double #2a2a2a; /* BORDER COLOR */
  934. line-height: normal;
  935. text-transform: uppercase;
  936. color:#fff; /* TEXT COLOR */
  937. text-align: center;
  938. width:auto; }
  939.  
  940. .links_body {
  941. padding:10px;
  942. text-align:left;
  943. display:none; }
  944.  
  945. /* ---------------------------- FONT FACE ------------------------------ */
  946.  
  947. @font-face {
  948. font-family: 'Nightingale';
  949. src: url('https://static.tumblr.com/b2tj7wo/77Dp47rtw/nightingale_sample.ttf'); }
  950.  
  951. @font-face {
  952. font-family: 'fontface';
  953. src: url(data:font/ttf;base64,[https://static.tumblr.com/b2tj7wo/VPWp47rsw/nightingale.css]) format('truetype');
  954. font-weight: normal;
  955. font-style: normal;}
  956.  
  957.  
  958. </style>
  959.  
  960. <body>
  961.  
  962. <!----------------------- DESCRIPTION BOX ------------------------->
  963. <div id="descriptionbox">
  964. {description}
  965. </div></div></div>
  966.  
  967. <!---------------------------- ASK BOX -------------------------->
  968.  
  969. <div id="askbox" class="popup_block">
  970. <div class="popupcontent">
  971. <div id="titles">ASK PHRASE HERE</div><p>
  972. <iframe frameborder="0" height="270" id="ask_form" scrolling="yes" src="https://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  973. </div></div>
  974.  
  975. <!-------------------------- RULES ------------------------------>
  976.  
  977. <div id="rules" class="popup_block">
  978. <div class="popupcontent">
  979. <div id="titles">Rules</div><p>
  980. <center> you can put your rules here</center>
  981. </div></div></div>
  982.  
  983. <!------------------------ VERSES TAB ------------------------------>
  984.  
  985. <div id="universes" class="popup_block">
  986. <div class="popupnavcontent">
  987. <div id="tabbedpop">
  988. <p>
  989. <ul id="tabs">
  990.  
  991. <li class="active">MAIN.</li>
  992.  
  993. <li>ALTERNATE.</li>
  994.  
  995. <li>CROSSOVER.</li>
  996.  
  997. <li>PRIVATE.</li>
  998. </ul>
  999. </div>
  1000.  
  1001. <ul id="tab">
  1002. <li class="active">
  1003.  
  1004. <!----------------------------- MAIN VERSES ----------------------->
  1005. <img src="https://78.media.tumblr.com/a4a4e99864e12ce1ec7c5c9ebdca66a6/tumblr_inline_pajtaosY2a1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1006. <big><a href="/verse-tag">VERSE NAME.</a></big><br>
  1007. verse description
  1008. <br><br><br><p>
  1009. </li>
  1010. <!------------------------- ALTERNATE VERSES ------------------->
  1011. <li>
  1012. <img src="https://78.media.tumblr.com/c027ac83ad16783f84164f3b49bbb9ff/tumblr_inline_pajtirZPWh1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1013. <big><a href="/verse-tag">VERSE NAME.</a></big><br>
  1014. verse description
  1015. <br><br><br><p>
  1016.  
  1017. </li>
  1018. <!------------------------- CROSSOVER VERSES ------------------->
  1019. <li>
  1020. <img src="https://78.media.tumblr.com/2995ab8cc3bd807b1579415e7bd29730/tumblr_inline_pajtirBzGd1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1021. <big><a href="/verse-tag">VERSE NAME.</a></big><br>
  1022. verse description
  1023. <br><br><br><p>
  1024. </li>
  1025.  
  1026. <!------------------------- PRIVATE VERSES ------------------------->
  1027. <li>
  1028. <img src="https://78.media.tumblr.com/86421993bd2c142a0c6af5776278fb84/tumblr_inline_pajtirqWyM1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1029. <big><a href="/verse-tag">VERSE NAME.</a></big><br>
  1030. verse description
  1031. <br><br><br><p>
  1032.  
  1033. </li>
  1034. </div></div></div>
  1035.  
  1036.  
  1037. <!------------------------ NAVIGATION POP UP ------------------->
  1038.  
  1039. <div id="navigation" class="popup_block">
  1040. <div class="popupnavcontent">
  1041. <div id="tabbedpop">
  1042. <p>
  1043. <ul id="tabs">
  1044.  
  1045. <li class="active">ABOUT.</li>
  1046.  
  1047. <li>LINKS.</li>
  1048.  
  1049. <li>MAINS.</li>
  1050.  
  1051. <li>MUN.</li>
  1052.  
  1053. </ul>
  1054. </div>
  1055.  
  1056. <ul id="tab">
  1057. <li class="active">
  1058.  
  1059. <!----------------------- ABOUT TAB STARTS HERE ------------------------->
  1060. <center>character's about can be written here</center>
  1061.  
  1062. </li>
  1063. <!------------------------ ABOUT TAB ENDS HERE ----------------------->
  1064.  
  1065.  
  1066. <!---------------------- LINKS TAB STARTS HERE ------------------------->
  1067. <li>
  1068. <div class="popuptags">
  1069. <div id="titles">TAGS</div><p><p><p>
  1070. <a href="/">LINK.</a>
  1071. <a href="/">LINK.</a>
  1072. <a href="/">LINK.</a>
  1073. </br>
  1074. <a href="/">LINK.</a>
  1075. <a href="/">LINK.</a>
  1076. <a href="/">LINK.</a>
  1077. <br>
  1078. <a href="/">LINK.</a>
  1079. <a href="/">LINK.</a>
  1080. <a href="/">LINK.</a><p>
  1081.  
  1082. <div id="titles">TAGS</div><p>
  1083. <a href="/">LINK.</a>
  1084. <a href="/">LINK.</a>
  1085. <a href="/">LINK.</a>
  1086. <br>
  1087. <a href="/">LINK.</a>
  1088. <a href="/">LINK.</a>
  1089. <a href="/">LINK.</a>
  1090. <br>
  1091.  
  1092.  
  1093. </li>
  1094.  
  1095. <!------------------------ LINKS TAB ENDS HERE ------------------------->
  1096.  
  1097. <!------------------------ MAINS TAB STARTS HERE ----------------------->
  1098.  
  1099. <li>
  1100. <p><p><p>
  1101. <div class="links_list">
  1102. <div class="links_head">Mains</div>
  1103. <div class="links_body">
  1104. <center>
  1105. <p><p>
  1106. <img src="https://78.media.tumblr.com/c027ac83ad16783f84164f3b49bbb9ff/tumblr_inline_pajtirZPWh1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1107. <big><a href="/">character name here.</a></big>
  1108. <br>
  1109. <b>RELATIONSHIP:</b> - <br>
  1110. <b>VERSE:</b> -
  1111. <br><br><br>
  1112. </div>
  1113.  
  1114. <div class="links_list">
  1115. <div class="links_head">Exclusives</div>
  1116. <div class="links_body">
  1117. <center>
  1118. <img src="https://78.media.tumblr.com/c027ac83ad16783f84164f3b49bbb9ff/tumblr_inline_pajtirZPWh1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1119. <big><a href="/">character name here.</a></big>
  1120. <br>
  1121. <b>RELATIONSHIP:</b> - <br>
  1122. <b>VERSE:</b> -
  1123. <br><br><br><p></div>
  1124.  
  1125. <div class="links_list">
  1126. <div class="links_head">Ship Exclusive</div>
  1127. <div class="links_body">
  1128. <center>
  1129. <img src="https://78.media.tumblr.com/c027ac83ad16783f84164f3b49bbb9ff/tumblr_inline_pajtirZPWh1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;">
  1130. <big><a href="/">character name here.</a></big>
  1131. <br>
  1132. <b>RELATIONSHIP:</b> - <br>
  1133. <b>VERSE:</b> -
  1134. <br><br><br><p></div>
  1135.  
  1136.  
  1137. </li>
  1138.  
  1139. <!-----------------------MAINS TAB ENDS HERE --------------------------->
  1140.  
  1141. <!--------------------- MUN TAB STARTS HERE --------------------------->
  1142. <li>
  1143. <div id="titles">MUN</div><p><p>
  1144. <center> here you can write a little something about yourself for your mutuals and followers</center>
  1145.  
  1146. <p>
  1147.  
  1148. </li>
  1149.  
  1150. <!-------------------------- MUN TAB ENDS HERE ------------------------->
  1151. </div></div>
  1152. <!-------------------------- END OF NAVIGATION -------------------------->
  1153.  
  1154.  
  1155. <!--------------------------- LINKS IN DESCRIPTION ---------------------->
  1156. <div id="home"><a href="/" title="the lone wolf dies.">winter is coming</a></div>
  1157. <div id="asklink"><a href="#?w=700" rel="askbox" class="poplight" title="ravens.">I</a></div>
  1158. <div id="law"><a href="#?w=700" rel="rules" class="poplight" title="laws.">II</a></div>
  1159. <div id="verses"><a href="#?w=700" rel="universes" class="poplight" title="worlds.">III</a></div>
  1160. <div id="nav"><a href="#?w=700" rel="navigation" class="poplight" title="map.">IV</a></div>
  1161.  
  1162. <!-------------------- CREDIT IN CORNER - DO NOT TOUCH ----------------->
  1163. <div id="credit"><a href="https://awokenhope.tumblr.com/" title="THEME BY AWOKENHOPE.">𝒶</a></div>
  1164.  
  1165.  
  1166. <!-------------------------- PAGINATION ----------------------------->
  1167. <div id="pagination">{block:Pagination}
  1168. {block:NextPage}<a class="forward"> <a href="{NextPage}" title="Next Page">⇲</a>{/block:NextPage}{/block:Pagination}
  1169. </div>
  1170.  
  1171. <div id="paginationb">{block:Pagination}
  1172. {block:PreviousPage}<a class="back"> <a href="{PreviousPage}" title"Previous Page">⇱</a>{/block:PreviousPage}{/block:Pagination}</a></a>
  1173. </div>
  1174.  
  1175. <div id="container">
  1176. {block:Posts}
  1177. <div class="posts">
  1178.  
  1179. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  1180.  
  1181. {block:Photo}<center><img src="{PhotoURL-HighRes}" width="284.5px" alt="{PhotoAlt}"/></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1182.  
  1183. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  1184.  
  1185. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1186.  
  1187. {block:Quote}<div class="quote"><b>❛</b> {Quote} <b> ❜</b></div>{block:Source}<div class="quotesource"> - {Source}</div>{/block:Source}{/block:Quote}
  1188.  
  1189. {block:Link}<a href="{URL}" class="link" {Target}>{Name}</a>{block:Description}{Description}{/block:Description}{/block:Link}
  1190.  
  1191. {block:Chat}{block:Title}{Title}</a>{/block:Title}
  1192. {block:Lines}<li>{block:Label}{Label}{/block:Label}{Line}</li>{/block:Lines}{/block:Chat}
  1193.  
  1194. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1195.  
  1196. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1197.  
  1198.  
  1199. {block:Answer}
  1200.  
  1201. <div class="askpost"> <!-------- ASK IMAGE ------------------->
  1202. <div class="askimg"><img src="https://78.media.tumblr.com/fb8ce0d58dc2f5d6c9ccce0abc7e5753/tumblr_inline_paju50ZYvt1vv4j7q_540.png" align="left" style="height:70px;width:70px;padding-right:5px;padding-bottom:0px;"></div>
  1203.  
  1204. <div class="ask">
  1205. <div class="askerurl">
  1206. <a href="{AskerURL}">{AskerName}</a>
  1207. </div>
  1208. <div class="question">
  1209. {Question}
  1210. </div>
  1211. </div>
  1212.  
  1213. {Answer}
  1214.  
  1215. </div>
  1216.  
  1217. {/block:Answer}
  1218.  
  1219.  
  1220. {block:date}
  1221. <p>
  1222. <div id="break">
  1223. </div>
  1224. <div id="info">
  1225. <a href="{Permalink}" title="{ShortMonth} {DayOfMonth}"> ● </a>
  1226. <a href="{Permalink}" title="{NoteCount} notes"> ● </a>
  1227. <a href='{ReblogParentURL}' title="via"> ● </a>
  1228. <a href='{ReblogRootURL}' title="source"> ● </a>
  1229. <a href='{ReblogURL}' title="Reblog"> ● </a></div>
  1230. {/block:date}
  1231.  
  1232. {block:HasTags}
  1233. <div class="tags">
  1234. {block:Tags} <a href="{TagURL}" title="{Tag}" data-tooltip="{Tag}" > {Tag} &nbsp; </a> {/block:Tags}
  1235. </div>
  1236. {/block:HasTags}
  1237. </div>
  1238.  
  1239. <!-- {block:NoRebloggedFrom}
  1240. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  1241. {/block:NoRebloggedFrom} -->
  1242.  
  1243. {block:ContentSource}<!-- {SourceURL}
  1244. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  1245. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1246. {/block:ContentSource}
  1247. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1248. {/block:Posts}
  1249.  
  1250. </body>
  1251. </html>
Add Comment
Please, Sign In to add comment