togahimiko

wonderful world theme

Feb 13th, 2019
5,160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 18.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5. WONDERFUL WORLD THEME BY ANNIE @NOODLE
  6.  
  7. "it's not something I should...tell strangers, but you guys, i love you all!"
  8. listsen to this fucked-up wonderful world exists for me, stan hatsune miku... and well, happy valentines day i really do love you all !!
  9.  
  10. base code by animecharacter.tumblr.com again, since this is basically just my first theme...2 !!
  11. ----->
  12.  
  13. {block:ifrainbowlinks}
  14. <script type='text/javascript'>
  15. //<![CDATA[
  16. var rate = 50;
  17. if (document.getElementById)
  18. window.onerror=new Function("return true")
  19.  
  20. var objActive; // The object which event occured in
  21. var act = 0; // Flag during the action
  22. var elmH = 0; // Hue
  23. var elmS = 128; // Saturation
  24. var elmV = 255; // Value
  25. var clrOrg; // A color before the change
  26. var TimerID; // Timer ID
  27. if (document.all) {
  28. document.onmouseover = doRainbowAnchor;
  29. document.onmouseout = stopRainbowAnchor;
  30. }
  31. else if (document.getElementById) {
  32. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  33. document.onmouseover = Mozilla_doRainbowAnchor;
  34. document.onmouseout = Mozilla_stopRainbowAnchor;
  35. }
  36. function doRainbow(obj)
  37. {
  38. if (act == 0) {
  39. act = 1;
  40. if (obj)
  41. objActive = obj;
  42. else
  43. objActive = event.srcElement;
  44. clrOrg = objActive.style.color;
  45. TimerID = setInterval("ChangeColor()",100);
  46. }
  47. }
  48. function stopRainbow()
  49. {
  50. if (act) {
  51. objActive.style.color = clrOrg;
  52. clearInterval(TimerID);
  53. act = 0;
  54. }
  55. }
  56. function doRainbowAnchor()
  57. {
  58. if (act == 0) {
  59. var obj = event.srcElement;
  60. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  61. obj = obj.parentElement;
  62. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  63. break;
  64. }
  65. if (obj.tagName == 'A' && obj.href != '') {
  66. objActive = obj;
  67. act = 1;
  68. clrOrg = objActive.style.color;
  69. TimerID = setInterval("ChangeColor()",100);
  70. }
  71. }
  72. }
  73. function stopRainbowAnchor()
  74. {
  75. if (act) {
  76. if (objActive.tagName == 'A') {
  77. objActive.style.color = clrOrg;
  78. clearInterval(TimerID);
  79. act = 0;
  80. }
  81. }
  82. }
  83. function Mozilla_doRainbowAnchor(e)
  84. {
  85. if (act == 0) {
  86. obj = e.target;
  87. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  88. obj = obj.parentNode;
  89. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  90. break;
  91. }
  92. if (obj.nodeName == 'A' && obj.href != '') {
  93. objActive = obj;
  94. act = 1;
  95. clrOrg = obj.style.color;
  96. TimerID = setInterval("ChangeColor()",100);
  97. }
  98. }
  99. }
  100. function Mozilla_stopRainbowAnchor(e)
  101. {
  102. if (act) {
  103. if (objActive.nodeName == 'A') {
  104. objActive.style.color = clrOrg;
  105. clearInterval(TimerID);
  106. act = 0;
  107. }
  108. }
  109. }
  110. function ChangeColor()
  111. {
  112. objActive.style.color = makeColor();
  113. }
  114. function makeColor()
  115. {
  116. // Don't you think Color Gamut to look like Rainbow?
  117. // HSVtoRGB
  118. if (elmS == 0) {
  119. elmR = elmV; elmG = elmV; elmB = elmV;
  120. }
  121. else {
  122. t1 = elmV;
  123. t2 = (255 - elmS) * elmV / 255;
  124. t3 = elmH % 60;
  125. t3 = (t1 - t2) * t3 / 60;
  126. if (elmH < 60) {
  127. elmR = t1; elmB = t2; elmG = t2 + t3;
  128. }
  129. else if (elmH < 120) {
  130. elmG = t1; elmB = t2; elmR = t1 - t3;
  131. }
  132. else if (elmH < 180) {
  133. elmG = t1; elmR = t2; elmB = t2 + t3;
  134. }
  135. else if (elmH < 240) {
  136. elmB = t1; elmR = t2; elmG = t1 - t3;
  137. }
  138. else if (elmH < 300) {
  139. elmB = t1; elmG = t2; elmR = t2 + t3;
  140. }
  141. else if (elmH < 360) {
  142. elmR = t1; elmG = t2; elmB = t1 - t3;
  143. }
  144. else {
  145. elmR = 0; elmG = 0; elmB = 0;
  146. }
  147. }
  148. elmR = Math.floor(elmR).toString(16);
  149. elmG = Math.floor(elmG).toString(16);
  150. elmB = Math.floor(elmB).toString(16);
  151. if (elmR.length == 1) elmR = "0" + elmR;
  152. if (elmG.length == 1) elmG = "0" + elmG;
  153. if (elmB.length == 1) elmB = "0" + elmB
  154. elmH = elmH + rate;
  155. if (elmH >= 360)
  156. elmH = 0;
  157. return '#' + elmR + elmG + elmB;
  158. }
  159. //]]>
  160. </script>
  161. {/block:ifrainbowlinks}
  162.  
  163. <meta charset="utf-8">
  164. <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  165. {block:Description}
  166. <meta name="description" content="{MetaDescription}" />
  167. {/block:Description}
  168.    
  169. <title>{Title}</title>
  170.        
  171. <link rel="shortcut icon" href="{image:favicon}">
  172. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  173. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  174.  
  175. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  176.  
  177. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><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>
  178.  
  179. <link href="https://fonts.googleapis.com/css?family=Karla|Kosugi+Maru|Roboto|Short+Stack" rel="stylesheet">
  180.  
  181. <meta name="image:sidebar">
  182. <meta name="image:favicon">
  183. <meta name="image:bg">
  184. <meta name="image:post bg">
  185. <meta name="image:thingy">
  186. <meta name="image:footer pixels">
  187. <meta name="color:bg">
  188. <meta name="color:post bg">
  189. <meta name="color:content glow">
  190. <meta name="color:text">
  191. <meta name="color:link">
  192. <meta name="color:link hover">
  193. <meta name="color:text glow">
  194. <meta name="color:link glow">
  195. <meta name="color:link glow hover">
  196. <meta name="color:border color">
  197. <meta name="color:scrollbar">
  198. <meta name="color:selection bg">
  199. <meta name="color:selection text">
  200.  
  201.  
  202. <meta name="select:link decoration" content="none">
  203. <meta name="select:link decoration" content="underline">
  204. <meta name="select:border style" content="none">
  205. <meta name="select:border style" content="solid">
  206. <meta name="select:border style" content="dashed">
  207. <meta name="select:border style" content="dotted">
  208. <meta name="select:border style" content="double">
  209. <meta name="select:border style" content="inset">
  210. <meta name="select:border style" content="outset">
  211. <meta name="select:border style" content="groove">
  212. <meta name="select:border style" content="ridge">
  213. <meta name="if:blackborder" content="0">
  214.  
  215. <meta name="if:postbg">
  216. <meta name="if:fancydesc">
  217. <meta name="if:round">
  218. <meta name="if:rounded sidebar">
  219. <meta name="if:circle sidebar">
  220. <meta name="if:heart sidebar">
  221. <meta name="if:links">
  222. <meta name="if:text glow">
  223. <meta name="if:link border">
  224. <meta name="if:rainbow links">
  225. <meta name="if:cover bg">
  226. <meta name="if:content glow">
  227. <meta name="if:hover tags">
  228.  
  229. <meta name="text:font size" content="12px">
  230. <meta name="text:font" content="">
  231. <meta name="text:desc" content="">
  232. <meta name="text:sidebar hover" content="stan toga">
  233. <meta name="text:border width" content="4px">
  234. <meta name="text:link 1 name" content="link 1">
  235. <meta name="text:link 2 name" content="link 2">
  236. <meta name="text:link 3 name" content="link 3">
  237. <meta name="text:link 1 url" content="/">
  238. <meta name="text:link 2 url" content="/">
  239. <meta name="text:link 3 url" content="/">
  240. <meta name="text:divider" content="/">
  241. <meta name="text:previouspage" content="previous">
  242. <meta name="text:nextpage" content="next">
  243.  
  244. <meta name="text:thingy size" content="35px">
  245.  
  246. <meta name="text:thingy rotation" content="0">
  247. <meta name="text:thingy y axis" content="0px">
  248. <meta name="text:thingy x axis" content="100px">
  249.  
  250.        
  251. <style type="text/css">
  252.  
  253.  
  254. /*
  255. general text styles, fonts and colours
  256. */
  257.  
  258. ::selection {
  259. background: {color:selection bg};
  260. color:{color:selection text};
  261. }
  262. ::-moz-selection {
  263. background: {color:selection bg};
  264. color:{color:selection text};
  265. }
  266.  
  267.  ::-webkit-scrollbar {
  268.             width:5px;
  269.             height:0px;
  270.             background-color: {color:bg};
  271.         }
  272.  
  273. ::-webkit-scrollbar-thumb{
  274. background-color: {color:scrollbar};
  275. }
  276.  
  277.     .tooltip {
  278. display: inline;
  279. position: relative;
  280. }
  281.  
  282.     #s-m-t-tooltip {
  283.         z-index:99999999999999999;
  284.         background: {color:post bg};
  285.         background-image: url('{image:post bg}');
  286.         background-repeat: repeat;
  287.         max-width: 300px;
  288.         margin: 20px;
  289.         padding: 5px;
  290.         border: {text:border width} {select:border style} {color:border color};
  291.         {block:ifcontentglow}
  292.         box-shadow: 0 0 5px 5px {color:content glow};
  293.         {/block:ifcontentglow}
  294.         transition: 0.1s;
  295.         text-align:center;
  296.         {block:ifround}
  297. border-radius:5px
  298. {/block:ifround}
  299. {block:ifblackborder}border-width: 8px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;{/block:ifblackborder}
  300.     }
  301.  
  302. body {
  303. background-color: {color:bg};
  304. background-image: url('{image:bg}');
  305.         {block:ifnotcoverbg}
  306.         background-repeat: repeat;
  307.         background-attachment: fixed;
  308.         {/block:ifnotcoverbg}
  309.         {block:ifcoverbg}
  310.         background-size: cover;
  311.         background-attachment: fixed;
  312.         {/block:ifcoverbg}
  313. font-family:{text:font};
  314. font-size:{text:font size}px;
  315. color:{color:text};
  316. {block:iftextglow}
  317. text-shadow: 0 0 1px {color:text glow}, 0 0 1px {color:text glow}, 0 0 1px {color:text glow}, 0 0 1px {color:text glow};
  318. {/block:iftextglow}
  319. word-wrap:break-word;
  320. }
  321.  
  322. p{
  323. margin:0 0 10px 0;
  324. padding:0;
  325. }
  326.  
  327. pre {
  328. white-space: pre-wrap;
  329. white-space: -moz-pre-wrap;
  330. white-space: -pre-wrap;
  331. white-space: -o-pre-wrap;
  332. word-wrap: break-word;
  333. }
  334.  
  335. a{
  336. color:{color:link};
  337. text-decoration: {select:link decoration};
  338. {block:iftextglow}
  339. text-shadow:0 0 1px {color:link glow},0 0 1px {color:link glow},0 0 1px {color:link glow},0 0 1px {color:link glow};
  340. {/block:iftextglow}
  341. {block:iflinkborder}
  342. text-shadow: -1px 0  {color:link glow}, 0 1px  {color:link glow}, 1px 0  {color:link glow}, 0 -1px  {color:link glow};
  343. {/block:iflinkborder}
  344. font-weight:bold;
  345. }
  346.  
  347. a:hover{
  348. color:{color:link hover};
  349. {block:iftextglow}
  350. text-shadow:-1px 0 {color:link glow hover}, 0 1px {color:link glow hover}, 1px 0 {color:link glow hover}, 0 -1px {color:link glow hover}, 0 0 3px {color:link glow hover}, 0 0 6px {color:link glow hover};
  351. {/block:iftextglow}
  352. {block:iflinkborder}
  353. text-shadow: -1px 0  {color:link glow hover}, 0 1px  {color:link glow hover}, 1px 0  {color:link glow hover}, 0 -1px  {color:link glow hover};
  354. {/block:iflinkborder}
  355. }
  356.  
  357. li{
  358. margin-left:-15px;
  359. }
  360.  
  361. /*
  362. containers etc
  363. */
  364. #wrapper{
  365. width:800px;
  366. margin:50px auto;
  367. }
  368.  
  369. #sidebar{
  370. margin-left:-75px;
  371. margin-top:75px;
  372. width:250px;
  373. position:fixed;
  374. float:left;
  375. text-align:center;
  376. }
  377.  
  378. #descwiption{
  379. {block:iffancydesc}
  380. padding-top:5px;
  381. background: {color:post bg};
  382. background-image: url('{image:post bg}');
  383.         background-repeat: repeat;
  384.         background-attachment: fixed;
  385. {block:ifround}
  386. border-radius:5px;
  387. {/block:ifround}
  388. border: {text:border width} {select:border style} {color:border color};
  389. {block:ifcontentglow}
  390. box-shadow: 0 0 5px 5px {color:content glow};
  391. {/block:ifcontentglow}
  392. text-align:center;
  393. max-width:250px;
  394. {block:ifblackborder}border-width: 8px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;{/block:ifblackborder}
  395. {/block:iffancydesc}
  396. }
  397.  
  398. .sidebarthingy img{
  399.     width:{text:thingy size};
  400.     position:absolute;
  401.     margin-top:{text:thingy y axis};
  402.     margin-left:{text:thingy x axis};
  403.     transform:          rotate({text:thingy rotation}deg);
  404. }
  405.  
  406. #content {
  407.         width:900px;
  408.         margin: 225px;
  409.         margin-top: -20px;
  410.     }
  411.  
  412. .post{
  413. {block:ifpostbg}
  414. background: {color:post bg};
  415. background-image: url('{image:post bg}');
  416.         background-repeat: repeat;
  417. {/block:ifpostbg}
  418. width:500px;
  419. margin: 0 0 50px 0;
  420. overflow:hidden;
  421. padding:5px;
  422. {block:ifcontentglow}
  423.         box-shadow: 0 0 5px 5px {color:content glow};
  424.         {/block:ifcontentglow}
  425. border: {text:border width} {select:border style} {color:border color};
  426. {block:ifround}
  427. border-radius:5px
  428. {/block:ifround}
  429. {block:ifblackborder}border-width: 8px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;{/block:ifblackborder}
  430. }
  431.  
  432. #sidebar img{
  433. max-width:100%;
  434. {block:ifroundedsidebar}
  435. border-radius:10px
  436. {/block:ifroundedsidebar}
  437. {block:ifheartsidebar}
  438. -webkit-mask-image: url(https://cdn.discordapp.com/attachments/291662432298860545/438850568765702144/guhhhhh.png);
  439. display:inline;
  440. {/block:ifheartsidebar}
  441. {block:ifcirclesidebar}
  442. border-radius:800px;
  443. {/block:ifcirclesidebar}
  444. }
  445.  
  446. .post img{
  447. max-width:100%;
  448. height:auto;
  449. {block:ifround}
  450. border-radius:5px
  451. {/block:ifround}
  452. }
  453.  
  454. #nav{
  455. margin:50px 0 0 0;
  456. font-size: 2em;
  457. text-align:center;
  458. }
  459.  
  460. /*
  461. content in the body of the posts - quotes, asks, etc
  462. "media" contains photos, photosets, videos, audio posts
  463. */
  464. .media{
  465. margin:0 0 10px 0;
  466. }
  467.  
  468. .title{
  469. font-weight:bold;
  470. font-size:1.5em;
  471. margin:0 0 10px 0;
  472. }
  473.  
  474. .quote{
  475. font-weight:normal;
  476. font-size:16px;
  477. font-style:italic;
  478. margin:0 0 10px 0;
  479. }
  480.  
  481. .question{
  482. margin-bottom:10px;
  483. }
  484.  
  485. blockquote{
  486. margin:0 0 10px 10px;
  487. padding:0 0 0 10px;
  488. border-left:solid 1px #000;
  489. }
  490.  
  491. /*
  492. post footers - date, tags, via and source
  493. */
  494. .post .footer{
  495. margin:0;
  496. text-align:center;
  497. }
  498.  
  499. /*
  500. post notes
  501. */
  502. ol.notes{
  503. list-style-type:none;
  504. padding:0;
  505. margin:0;
  506. }
  507.  
  508. ol.notes li.note img{
  509. width:16px;
  510. height:16px;
  511. }
  512.  
  513. ol.notes li.note{
  514. margin:0px;
  515. }
  516.  
  517. {block:ifhovertags}
  518.     .tags {
  519.    max-height:0px;
  520.    text-align:center;
  521.    opacity:0;
  522.     -webkit-transition: all 0.7s ease;
  523.    transition: all 0.7s ease;
  524.    -moz-transition: all 0.7s ease;
  525.    -o-transition: all 0.7s ease;}    
  526.  
  527. .post:hover .tags{
  528.    opacity:1;
  529.    max-height:300px;
  530.    -webkit-transition: all 0.7s ease;
  531.    transition: all 0.7s ease;
  532.    -moz-transition: all 0.7s ease;
  533.    -o-transition: all 0.7s ease;}
  534. {/block:ifhovertags}
  535.  
  536. {CustomCSS}
  537. </style>
  538. </head>
  539.  
  540. <body>
  541. <div id="wrapper">
  542.  
  543.  
  544. <div id="sidebar">
  545. <div class="sidebarthingy"><img src="{image:thingy}"></div>
  546.  <a href="/" title="{text:sidebar hover}"><img src="{image:sidebar}" id="hmmm"></a>
  547. {block:Description}
  548. <div id="descwiption">
  549. <p>{text:desc}</p></div>
  550. {/block:Description}
  551. {block:iflinks}
  552.  {block:iflink1url}<a href="{text:link 1 url}">{block:iflink1name}{text:link 1 name}{/block:iflink1name}{block:ifnotlink1name}{text:link 1 url}{/block:ifnotlink1name}</a>{/block:iflink1url}{block:iflink2url} {text:divider} <a href="{text:link 2 url}">{block:iflink2name}{text:link 2 name}{/block:iflink2name}{block:ifnotlink2name}{text:link 2 url}{/block:ifnotlink2name}</a>{/block:iflink2url}{block:iflink3url} {text:divider} <a href="{text:link 3 url}">{block:iflink3name}{text:link 3 name}{/block:iflink3name}{block:ifnotlink3name}{text:link 3 url}{/block:ifnotlink3name}</a>{/block:iflink3url}
  553. {/block:iflinks}
  554.  
  555.  
  556. {block:HasPages}
  557. {block:Pages}
  558. <a href="{URL}">{Label}</a><br>
  559. {/block:Pages}
  560. {/block:HasPages}
  561. </div>
  562.  
  563.  
  564.  
  565. <div id="content">
  566. {block:Posts}
  567.  
  568. <div class="post">
  569.  
  570. {block:Text}
  571. {block:Title}
  572. <div class="title">{Title}</div>
  573. {/block:Title}
  574. {Body}
  575. {/block:Text}
  576.  
  577. {block:Photo}
  578. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  579. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  580. {/block:Photo}
  581.  
  582. {block:Photoset}
  583. <div class="media">{Photoset-400}</div>
  584. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  585. {/block:Photoset}
  586.  
  587. {block:Quote}
  588. <div class="quote">"{Quote}"</div>
  589. {block:Source}
  590. <div class="quotesource">{Source}</div>
  591. {/block:Source}
  592. {/block:Quote}
  593.  
  594. {block:Link}
  595. <div class="title"><a href="{URL}">{Name}</a></div>
  596. {block:Description}
  597. <div class="description">{Description}</div>
  598. {/block:Description}
  599. {/block:Link}
  600.  
  601. {block:Chat}
  602. {block:Title}
  603. <div class="title">{Title}</div>
  604. {/block:Title}
  605.  
  606. {block:Lines}
  607. <div class="{Alt} user_{UserNumber}">
  608. {block:Label}
  609. <b>{Label}</b>{/block:Label}
  610. &nbsp;{Line}
  611. </div>
  612. {/block:Lines}
  613. {/block:Chat}
  614.  
  615. {block:Video}
  616. <div class="media">{Video-400}</div>
  617. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  618. {/block:Video}
  619.  
  620.     {block:Audio}
  621.     <div class="media">
  622.     {block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}
  623.     </div>
  624.     {block:Caption}{Caption}{/block:Caption}
  625.     {/block:Audio}
  626.                
  627. {block:Answer}
  628. <div class="question">{Asker}: {Question}</div>
  629. <div class="caption">{Answer}</div>
  630. {/block:Answer}
  631.  
  632.  
  633. {block:Date}
  634. <div class="footer">
  635. <a href="{Permalink}"><a href="{Permalink}" title="{TimeAgo}{text:notes}">{notecount}%</a>
  636. </a>{block:RebloggedFrom}<img src="{image:footer pixels}"> <a href="{ReblogParentURL}" title="{ReblogParentName}"> via</a> {/block:RebloggedFrom}{block:ContentSource} <img src="{image:footer pixels}"><a href="{SourceURL}" title="{SourceTitle}"> source</a>{/block:ContentSource}
  637.  
  638.  
  639.  <div class="tags"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  640.  
  641. </div>
  642.  
  643. {block:PermalinkPage}
  644. {block:NoteCount}
  645. {block:PostNotes}{PostNotes}{/block:PostNotes}
  646. {/block:NoteCount}
  647. {/block:PermalinkPage}
  648. {/block:Date}
  649.  
  650. </div>
  651. {/block:Posts}
  652.  
  653. {block:Pagination}
  654. <div id="nav">
  655. {block:PreviousPage}<a href="{PreviousPage}">{text:previouspage}</a> {/block:PreviousPage}
  656.  
  657. {block:NextPage}<a href="{NextPage}">{text:nextpage}</a>{/block:NextPage}
  658. </div>
  659. {/block:Pagination}
  660. </div>
  661. </div>
  662.  
  663. </div>
  664.  
  665. <a style="position:fixed;left:3px;bottom:3px;" <a href="https://noodle.tumblr.com/" title="theme by annie!"></a>
  666.  
  667.         <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  668.         <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  669.  
  670.     </body>
  671. </html>
Advertisement
Add Comment
Please, Sign In to add comment