Advertisement
Sky_Blue

for 3132

Jul 17th, 2023
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5.  
  6. for @3132. thank you!!!!! <33333
  7.  
  8. ----->
  9.  
  10. <script src="https://kit.fontawesome.com/f936906ae0.js" crossorigin="anonymous"></script>
  11.  
  12. {block:ifrainbowlinks}
  13. <script type='text/javascript'>
  14. //<![CDATA[
  15. var rate = 50;
  16. if (document.getElementById)
  17. window.onerror=new Function("return true")
  18.  
  19. var objActive; // The object which event occured in
  20. var act = 0; // Flag during the action
  21. var elmH = 0; // Hue
  22. var elmS = 128; // Saturation
  23. var elmV = 255; // Value
  24. var clrOrg; // A color before the change
  25. var TimerID; // Timer ID
  26. if (document.all) {
  27. document.onmouseover = doRainbowAnchor;
  28. document.onmouseout = stopRainbowAnchor;
  29. }
  30. else if (document.getElementById) {
  31. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  32. document.onmouseover = Mozilla_doRainbowAnchor;
  33. document.onmouseout = Mozilla_stopRainbowAnchor;
  34. }
  35. function doRainbow(obj)
  36. {
  37. if (act == 0) {
  38. act = 1;
  39. if (obj)
  40. objActive = obj;
  41. else
  42. objActive = event.srcElement;
  43. clrOrg = objActive.style.color;
  44. TimerID = setInterval("ChangeColor()",100);
  45. }
  46. }
  47. function stopRainbow()
  48. {
  49. if (act) {
  50. objActive.style.color = clrOrg;
  51. clearInterval(TimerID);
  52. act = 0;
  53. }
  54. }
  55. function doRainbowAnchor()
  56. {
  57. if (act == 0) {
  58. var obj = event.srcElement;
  59. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  60. obj = obj.parentElement;
  61. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  62. break;
  63. }
  64. if (obj.tagName == 'A' && obj.href != '') {
  65. objActive = obj;
  66. act = 1;
  67. clrOrg = objActive.style.color;
  68. TimerID = setInterval("ChangeColor()",100);
  69. }
  70. }
  71. }
  72. function stopRainbowAnchor()
  73. {
  74. if (act) {
  75. if (objActive.tagName == 'A') {
  76. objActive.style.color = clrOrg;
  77. clearInterval(TimerID);
  78. act = 0;
  79. }
  80. }
  81. }
  82. function Mozilla_doRainbowAnchor(e)
  83. {
  84. if (act == 0) {
  85. obj = e.target;
  86. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  87. obj = obj.parentNode;
  88. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  89. break;
  90. }
  91. if (obj.nodeName == 'A' && obj.href != '') {
  92. objActive = obj;
  93. act = 1;
  94. clrOrg = obj.style.color;
  95. TimerID = setInterval("ChangeColor()",100);
  96. }
  97. }
  98. }
  99. function Mozilla_stopRainbowAnchor(e)
  100. {
  101. if (act) {
  102. if (objActive.nodeName == 'A') {
  103. objActive.style.color = clrOrg;
  104. clearInterval(TimerID);
  105. act = 0;
  106. }
  107. }
  108. }
  109. function ChangeColor()
  110. {
  111. objActive.style.color = makeColor();
  112. }
  113. function makeColor()
  114. {
  115. // Don't you think Color Gamut to look like Rainbow?
  116. // HSVtoRGB
  117. if (elmS == 0) {
  118. elmR = elmV; elmG = elmV; elmB = elmV;
  119. }
  120. else {
  121. t1 = elmV;
  122. t2 = (255 - elmS) * elmV / 255;
  123. t3 = elmH % 60;
  124. t3 = (t1 - t2) * t3 / 60;
  125. if (elmH < 60) {
  126. elmR = t1; elmB = t2; elmG = t2 + t3;
  127. }
  128. else if (elmH < 120) {
  129. elmG = t1; elmB = t2; elmR = t1 - t3;
  130. }
  131. else if (elmH < 180) {
  132. elmG = t1; elmR = t2; elmB = t2 + t3;
  133. }
  134. else if (elmH < 240) {
  135. elmB = t1; elmR = t2; elmG = t1 - t3;
  136. }
  137. else if (elmH < 300) {
  138. elmB = t1; elmG = t2; elmR = t2 + t3;
  139. }
  140. else if (elmH < 360) {
  141. elmR = t1; elmG = t2; elmB = t1 - t3;
  142. }
  143. else {
  144. elmR = 0; elmG = 0; elmB = 0;
  145. }
  146. }
  147. elmR = Math.floor(elmR).toString(16);
  148. elmG = Math.floor(elmG).toString(16);
  149. elmB = Math.floor(elmB).toString(16);
  150. if (elmR.length == 1) elmR = "0" + elmR;
  151. if (elmG.length == 1) elmG = "0" + elmG;
  152. if (elmB.length == 1) elmB = "0" + elmB
  153. elmH = elmH + rate;
  154. if (elmH >= 360)
  155. elmH = 0;
  156. return '#' + elmR + elmG + elmB;
  157. }
  158. //]]>
  159. </script>
  160. {/block:ifrainbowlinks}
  161.  
  162. <meta charset="utf-8">
  163. <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  164. {block:Description}
  165. <meta name="description" content="{MetaDescription}" />
  166. {/block:Description}
  167.  
  168. <title>{Title}</title>
  169.  
  170. <link rel="shortcut icon" href="{image:favicon}">
  171. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  172. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  173.  
  174. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  175.  
  176. {block:ifsmoothscrolling}
  177. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
  178. {/block:ifsmoothscrolling}
  179.  
  180. <link rel="stylesheet" href="https://static.tumblr.com/p6yopnt/PxJr3vu6k/scrollbar.css">
  181.  
  182. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  183. <script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script>
  184. <script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  185.  
  186. <link href="https://fonts.googleapis.com/css?family=Kosugi+Maru|Short+Stack" rel="stylesheet">
  187.  
  188. <meta name="image:favicon" content=""/>
  189. <meta name="image:icon" content=""/>
  190. <meta name="image:background" content=""/>
  191. <meta name="image:post background" content=""/>
  192. <meta name="image:pagedoll" content=""/>
  193.  
  194. <meta name="color:background" content=""/>
  195. <meta name="color:post background" content=""/>
  196. <meta name="color:sidebar background" content=""/>
  197. <meta name="color:text" content=""/>
  198. <meta name="color:links" content=""/>
  199. <meta name="color:links hover" content=""/>
  200. <meta name="color:links glow" content=""/>
  201. <meta name="color:links glow hover" content=""/>
  202. <meta name="color:links outline" content=""/>
  203. <meta name="color:links outline hover" content=""/>
  204. <meta name="color:border color" content=""/>
  205. <meta name="color:tooltip background" content="#fff"/>
  206. <meta name="color:tooltip text" content="#000"/>
  207. <meta name="color:box shadow" content=""/>
  208. <meta name="color:selection background" content=""/>
  209. <meta name="color:selection text" content=""/>
  210.  
  211. <meta name="if:rainbow links" content=""/>
  212. <meta name="if:smooth scrolling" content="1"/>
  213. <meta name="if:redirect" content=""/>
  214. <meta name="if:box shadow" content=""/>
  215. <meta name="if:grayscale icon" content=""/>
  216. <meta name="if:links glow" content=""/>
  217. <meta name="if:links outline" content=""/>
  218. <meta name="if:hover blur" content=""/>
  219. <meta name="if:hover tags" content=""/>
  220. <meta name="if:captions" content="1"/>
  221. <meta name="if:show tags" content="1"/>
  222. <meta name="if:round borders" content=""/>
  223. <meta name="if:box shadow" content=""/>
  224. <meta name="if:background cover" content=""/>
  225. <meta name="if:post background cover" content=""/>
  226.  
  227. <meta name="select:border style" content="solid"/>
  228. <meta name="select:border style" content="dashed"/>
  229. <meta name="select:border style" content="dotted"/>
  230. <meta name="select:border style" content="double"/>
  231. <meta name="select:border style" content="inset"/>
  232. <meta name="select:border style" content="outset"/>
  233. <meta name="select:border style" content="groove"/>
  234. <meta name="select:border style" content="ridge"/>
  235.  
  236. <meta name="text:font size" content="20"/>
  237. <meta name="text:font" content=""/>
  238. <meta name="text:title font" content=""/>
  239. <meta name="text:title" content="title"/>
  240. <meta name="text:title size" content""/>
  241. <meta name="text:description" content="description"/>
  242. <meta name="text:link 1" content="1"/>
  243. <meta name="text:link 1 url" content=""/>
  244. <meta name="text:link 2" content="2"/>
  245. <meta name="text:link 2 url" content=""/>
  246. <meta name="text:link 3" content="3"/>
  247. <meta name="text:link 3 url" content=""/>
  248. <meta name="text:border width" content="2"/>
  249. <meta name="text:redirect" content="">
  250.  
  251. <style type="text/css">
  252.  
  253. ::selection {
  254. background: {color:selection background};
  255. color:{color:selection text};
  256. }
  257.  
  258. ::-moz-selection {
  259. background: {color:selection background};
  260. color:{color:selection text};
  261. }
  262.  
  263. #s-m-t-tooltip{
  264. margin: 20px 0 0 20px;
  265. padding: 5px;
  266. max-width: 300px;
  267. background-color:{color:tooltip background};
  268. color:{color:tooltip text};
  269. border:{text:border width}px {select:border style} {color:border color};
  270. z-index: 9999;
  271. {block:ifroundborders}
  272. border-radius:10px;
  273. {/block:ifroundborders}
  274. }
  275.  
  276. @font-face{
  277. font-family: 'Magica';
  278. src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  279. }
  280. @font-face{
  281. font-family: 'DEAD END';
  282. src: url(https://static.tumblr.com/pvnotae/DzVqdg2j5/dead_end.ttf);
  283. }
  284. @font-face{
  285. font-family: 'Decibil';
  286. src: url(https://static.tumblr.com/pvnotae/kwwqdg2pw/decibel_2.ttf);
  287. }
  288. @font-face{
  289. font-family: 'Aachen';
  290. src: url(https://static.tumblr.com/pvnotae/YIoqdg2yp/aachen-bold-opentype.otf);
  291. }
  292.  
  293. body {
  294. margin:0px;
  295. background:{color:background};
  296. background-image: url('{image:background}');
  297. {block:ifbackgroundcover}
  298. background-size: cover;
  299. {/block:ifbackgroundcover}
  300. {block:ifnotbackgroundcover}
  301. background-repeat:repeat;
  302. {/block:ifnotbackgroundcover}
  303. background-attachment:fixed;
  304. font-family:{text:font};
  305. font-size:{text:font size}px;
  306. color:{color:text};
  307. line-height:140%;
  308. }
  309.  
  310. p{
  311. margin:0 0 0px 0;
  312. padding:0;
  313. }
  314.  
  315. pre {
  316. white-space: pre-wrap;
  317. white-space: -moz-pre-wrap;
  318. white-space: -pre-wrap;
  319. white-space: -o-pre-wrap;
  320. word-wrap: break-word;
  321. }
  322.  
  323. a{
  324. color:{color:links};
  325. {block:iflinksglow}
  326. text-shadow:0 0 2px {color:links glow},0 0 2px {color:links glow},0 0 2px {color:links glow}, 0 0 1px {color:links glow};
  327. {/block:iflinksglow}
  328. {block:iflinksoutline}
  329. text-shadow: -1px 0 {color:links outline}, 0 1px {color:links outline}, 1px 0 {color:links outline}, 0 -1px {color:links outline};
  330. {/block:iflinksoutline}
  331. transition:0.5s;
  332. text-decoration:none;
  333. }
  334.  
  335. a:hover{
  336. color:{color:links hover};
  337. {block:iflinksglow}
  338. text-shadow:0 0 2px {color:links glow hover},0 0 2px {color:links glow hover},0 0 2px {color:links glow hover},0 0 1px {color:links glow hover};
  339. {/block:iflinksglow}
  340. {block:iflinksoutline}
  341. text-shadow: -1px 0 {color:links outline hover}, 0 1px {color:links outline hover}, 1px 0 {color:links outline hover}, 0 -1px {color:links outline hover};
  342. {/block:iflinksoutline}
  343. {block:ifhoverblur}
  344. -webkit-filter: blur(.9px);
  345. {/block:ifhoverblur}
  346. cursor:help;
  347. }
  348.  
  349. a.tumblr_blog{
  350. display:inline-block;
  351. margin-bottom:5px;
  352. }
  353.  
  354. li{
  355. margin-left:-15px;
  356. }
  357.  
  358. #wrapper{
  359. width:800px;
  360. margin:20px auto;
  361. }
  362.  
  363. #sidebarcontainer{
  364. position:fixed;
  365. margin-left:-10px;
  366. }
  367.  
  368. #sidebar{
  369. width:250px;
  370. text-align:center;
  371. margin-top:20px;
  372. background:{color:sidebar background};
  373. {block:ifboxshadow}
  374. box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  375. {/block:ifboxshadow}
  376. {block:ifroundborders}
  377. border-radius:5px;
  378. {/block:ifroundborders}
  379. border: {text:border width}px {select:border style} {color:border color};
  380. }
  381.  
  382. #sidebar img{
  383. width:250px;
  384. height:250px;
  385. box-sizing: border-box;
  386. {block:ifgrayscaleicon}
  387. filter: grayscale(100%);
  388. {/block:ifgrayscaleicon}
  389. display:block;
  390. }
  391.  
  392. #title{
  393. width:100%;
  394. font-size:{text:title size}px;
  395. padding:10px;
  396. text-align:center;
  397. z-index:100;
  398. font-family:{text:title font};
  399. border: {text:border width}px {select:border style} {color:border color};
  400. box-sizing:border-box;
  401. background:{color:sidebar background};
  402. {block:ifboxshadow}
  403. box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  404. {/block:ifboxshadow}
  405. {block:ifroundborders}
  406. border-radius:5px;
  407. {/block:ifroundborders}
  408. }
  409.  
  410. #description{
  411. text-align:center;
  412. font-size:{text:font size}px;
  413. border-top: {text:border width}px {select:border style} {color:border color};
  414. box-sizing: border-box;
  415. padding:10px;
  416. background:{color:sidebar background};
  417. background-image: url('{image:post background}');
  418. overflow:hidden;
  419. }
  420.  
  421. #links{
  422. text-align:center;
  423. margin-top:20px;
  424. display:flex;
  425. box-sizing:border-box;
  426. padding:10px;
  427. justify-content:space-around;
  428. {block:ifboxshadow}
  429. box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  430. {/block:ifboxshadow}
  431. {block:ifroundborders}
  432. border-radius:5px;
  433. {/block:ifroundborders}
  434. border: {text:border width}px {select:border style} {color:border color};
  435. background:{color:sidebar background};
  436. }
  437.  
  438. #pagedoll img{
  439. margin-top:20px;
  440. width:250px;
  441. height:auto;
  442. }
  443.  
  444. #content{
  445. margin-bottom:20px;
  446. width:530px;
  447. float:right;
  448. }
  449.  
  450. .post{
  451. width:520px;
  452. margin:0 0 20px 0;
  453. overflow:hidden;
  454. padding:10px;
  455. border: {text:border width}px {select:border style} {color:border color};
  456. background:{color:post background};
  457. background-image: url('{image:post background}');
  458. box-sizing:border-box;
  459. {block:ifboxshadow}
  460. box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  461. {/block:ifboxshadow}
  462. {block:ifroundborders}
  463. border-radius:5px;
  464. {/block:ifroundborders}
  465. }
  466.  
  467. .post img{
  468. max-width:100%;
  469. height:auto;
  470. {block:ifroundborders}
  471. border-radius:5px;
  472. {/block:ifroundborders}
  473. }
  474.  
  475. .post .footer{
  476. text-align:center;
  477. }
  478.  
  479. #nav{
  480. width:520px;
  481. display:flex;
  482. justify-content:space-between;
  483. padding:10px;
  484. border: {text:border width}px {select:border style} {color:border color};
  485. background:{color:post background};
  486. box-sizing:border-box;
  487. {block:ifboxshadow}
  488. box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  489. {/block:ifboxshadow}
  490. {block:ifroundborders}
  491. border-radius:5px;
  492. {/block:ifroundborders}
  493. }
  494.  
  495. video{
  496. max-width:100%;
  497. height:auto!important;
  498. }
  499.  
  500. .video-container {
  501. overflow: hidden;
  502. }
  503.  
  504. .video-container iframe,
  505. .video-container object,
  506. .video-container embed {
  507. position: center;
  508. max-width: 500px;
  509. max-height: 500px;
  510. }
  511.  
  512. .video-wrapper {
  513. max-width: 500px;
  514. max-height: 500px;
  515.  
  516. }
  517.  
  518. .media{
  519. margin:0 0 0px 0;
  520. text-align:center;
  521. {block:ifroundborders}
  522. border-radius:10px;
  523. {/block:ifroundborders}
  524. }
  525.  
  526. .media:hover{
  527. {block:ifhoverblur}
  528. -webkit-filter: blur(.9px);
  529. {/block:ifhoverblur}
  530. }
  531.  
  532. .title{
  533. font-size:{text:title size}px;
  534. font-weight:bold;
  535. margin:10px 0 10px 0;
  536. color:#000;
  537. }
  538.  
  539. h1, h2, h3, h4, h5, h6{
  540. font-size:{text:title size};
  541. font-weight:bold;
  542. margin:10px 0 10px 0;
  543. color:#000;
  544. }
  545.  
  546. .quote{
  547. font-weight:normal;
  548. font-size:{text:font size};
  549. font-style:italic;
  550. margin:0 0 10px 0;
  551. }
  552.  
  553. .question{
  554. margin-bottom:10px;
  555. border:dotted 1px {color:text};
  556. padding:10px;
  557. }
  558.  
  559. blockquote{
  560. margin:0 0 10px 10px;
  561. padding:0 0 0 10px;
  562. border-left:dotted 1px {color:text};
  563. {block:ifroundborders}
  564. border-radius:10px;
  565. {/block:ifroundborders}
  566. }
  567.  
  568. ol.notes{
  569. list-style-type:none;
  570. padding:0;
  571. margin:0;
  572. }
  573.  
  574. ol.notes li.note img{
  575. width:16px;
  576. height:16px;
  577. margin-right:3px;
  578. }
  579.  
  580. ol.notes li.note{
  581. margin:0px;
  582. }
  583.  
  584. {block:ifhovertags}
  585. .tags {
  586. max-height:0px;
  587. text-align:center;
  588. opacity:0;
  589. -webkit-transition: all 0.7s ease;
  590. transition: all 0.7s ease;
  591. -moz-transition: all 0.7s ease;
  592. -o-transition: all 0.7s ease;}
  593.  
  594. .post:hover .tags{
  595. opacity:1;
  596. max-height:300px;
  597. -webkit-transition: all 0.7s ease;
  598. transition: all 0.7s ease;
  599. -moz-transition: all 0.7s ease;
  600. -o-transition: all 0.7s ease;}
  601. {/block:ifhovertags}
  602.  
  603. {CustomCSS}
  604. </style>
  605. </head>
  606.  
  607. <body>
  608.  
  609. {block:ifredirect}
  610. {block:IndexPage}
  611. <script type="text/javascript">
  612. var url = location.href;
  613. if (url == "{BlogURL}") {
  614. window.location = "{BlogURL}tagged/{text:redirect}";
  615. }
  616. </script>
  617. {/block:IndexPage}
  618. {/block:ifredirect}
  619.  
  620. <div id="wrapper">
  621.  
  622. <div id="sidebarcontainer">
  623. <div id="title">
  624. <a href="/">{text:title}</a>
  625. </div>
  626. <div id="sidebar">
  627. <img src="{image:icon}">
  628. <div id="description">
  629. {text:description}
  630. </div>
  631. </div>
  632.  
  633. <div id="links">
  634. <a href="{text:link 1 url}">{text:link 1}</a> <a href="{text:link 2 url}">{text:link 2}</a> <a href="{text:link 3 url}">{text:link 3}</a>
  635. </div>
  636.  
  637. <div id="pagedoll"><img src="{image:pagedoll}"></div>
  638.  
  639. </div>
  640.  
  641. <div id="content">
  642. {block:Posts}
  643.  
  644. <div class="post">
  645.  
  646. {block:Text}
  647. {block:Title}
  648. <div class="title">{Title}</div>
  649. {/block:Title}
  650. {Body}
  651. {/block:Text}
  652.  
  653. {block:Photo}
  654. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  655. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  656. {/block:Photo}
  657.  
  658. {block:Photoset}
  659. <div class="media">{Photoset}</div>
  660. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  661. {/block:Photoset}
  662.  
  663. {block:Quote}
  664. <div class="quote">"{Quote}"</div>
  665. {block:Source}
  666. <div class="quotesource">{Source}</div>
  667. {/block:Source}
  668. {/block:Quote}
  669.  
  670. {block:Link}
  671. <div class="title"><a href="{URL}">{Name}</a></div>
  672. {block:Description}
  673. <div class="description">{Description}</div>
  674. {/block:Description}
  675. {/block:Link}
  676.  
  677. {block:Chat}
  678. {block:Title}
  679. <div class="title">{Title}</div>
  680. {/block:Title}
  681.  
  682. {block:Lines}
  683. <div class="{Alt} user_{UserNumber}">
  684. {block:Label}
  685. <b>{Label}</b>{/block:Label}
  686. &nbsp;{Line}
  687. </div>
  688. {/block:Lines}
  689. {/block:Chat}
  690.  
  691. {block:Video}
  692. <div class="media"><div class="video-wrapper">
  693. <div class="video-container">{video-500}</div>
  694. </div></div>
  695. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  696. {/block:Video}
  697.  
  698. {block:Audio}
  699. <div class="media" style="margin-bottom:-85px">
  700. {block:AudioEmbed}<div class="video-wrapper"><div class="video-container">{AudioEmbed-500}</div></div>{/block:AudioEmbed}
  701. </div>
  702. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  703. {/block:Audio}
  704.  
  705. {block:Answer}
  706. <div class="question" style="font-style:italic">{Asker}: {Question}</div>
  707. <div class="caption">{Answer}</div>
  708. {/block:Answer}
  709.  
  710.  
  711. {block:Date}
  712. <div class="footer">
  713. <a href="{Permalink}"><a href="{Permalink}" title="{notecount}%">{24hourwithzero}:{minutes}</a>
  714.  
  715. <!-- {block:NoRebloggedFrom}
  716. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  717. {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
  718. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  719. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  720. {/block:ContentSource}
  721.  
  722. {block:ifshowtags} {block:HasTags}<div class="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  723.  
  724. </div>
  725.  
  726. {block:PermalinkPage}
  727. {block:NoteCount}
  728. {block:PostNotes}{PostNotes}{/block:PostNotes}
  729. {/block:NoteCount}
  730. {/block:PermalinkPage}
  731. {/block:Date}
  732.  
  733. </div>
  734. {/block:Posts}
  735.  
  736. {block:Pagination}
  737. <div id="nav">
  738. {block:PreviousPage}<a href="{PreviousPage}"><i class="fas fa-arrow-left"></i></a></a>{/block:PreviousPage}
  739.  
  740. {block:NextPage}<a href="{NextPage}"><i class="fas fa-arrow-right"></i></a></a>{/block:NextPage}
  741. </div>
  742. {/block:Pagination}
  743. </div>
  744. </div>
  745.  
  746. </div>
  747.  
  748. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  749. <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  750.  
  751.  
  752. </body>
  753. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement