Advertisement
jellyparty

I love my gf tumblr theme

Aug 18th, 2021 (edited)
5,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.46 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <head>
  3. <!-- i love my gf theme by emoticon equinox~
  4. special thanks to twitter user gaalactea <3
  5.  
  6. helpful tips for filling in the empty boxes:
  7.  
  8. 1) <br>, line break
  9. 2) <p>, paragraph (like br but more space)
  10. 3) <img src="url">
  11. 4) <a href="url">link text</a>
  12.  
  13. please let me know if you experience any issues~
  14. -->
  15.  
  16. <!-- Images -->
  17. <meta name="image:favicon" content="">
  18. <meta name="image:background" content="">
  19. <meta name="image:container background" content="">
  20. <meta name="image:sidebar" content="">
  21. <meta name="image:floatie" content="">
  22. <meta name="image:custom cursor" content="">
  23.  
  24. <!-- Text -->
  25. <meta name="text:text size" content="20">
  26. <meta name="text:border size" content="3">
  27. <meta name="text:floatie size" content="100">
  28. <meta name="text:title" content="RAINBOW TITLE">
  29. <meta name="text:desc" content="sweet honeydew melon">
  30. <meta name="text:right sidebar" content="put anything you want here!">
  31. <meta name="text:search text" content="press enter">
  32.  
  33. <!-- Select -->
  34. <meta name="select:border style" content="solid"/>
  35. <meta name="select:border style" content="double"/>
  36. <meta name="select:border style" content="groove"/>
  37. <meta name="select:border style" content="ridge"/>
  38. <meta name="select:border style" content="inset"/>
  39. <meta name="select:border style" content="outset"/>
  40. <meta name="select:border style" content="dashed"/>
  41. <meta name="select:border style" content="dotted"/>
  42.  
  43. <!-- Colors -->
  44. <meta name="color:background color" content="">
  45. <meta name="color:container color" content="">
  46. <meta name="color:content color" content="">
  47. <meta name="color:border color" content="">
  48. <meta name="color:text color" content="">
  49. <meta name="color:link color" content="">
  50. <meta name="color:link border color" content="">
  51. <meta name="color:link hover color" content="">
  52. <meta name="color:text selection color" content="">
  53. <meta name="color:text selection bg color" content="">
  54.  
  55. <!-- Options -->
  56. <meta name="if:custom cursor" content="">
  57. <meta name="if:cursor hearts" content="">
  58. <meta name="if:full background" content="">
  59. <meta name="if:rainbow title" content="">
  60. <meta name="if:link glow" content="">
  61. <meta name="if:link border" content="">
  62. <meta name="if:rainbow links" content="">
  63.  
  64. <!-- Misc -->
  65. <title>{Title}</title>
  66. <link rel="shortcut icon" href="{image:favicon}">
  67. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  68. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  69. {block:Description}
  70. <meta name="description" content="{MetaDescription}" />
  71. {/block:Description}
  72. {block:ifcursorhearts}
  73. <script type="text/javascript">
  74. // <![CDATA[
  75. var colours=new Array('#f00', '#f06', '#f0f', '#f6f', '#f39', '#f9c'); // colours of the hearts
  76. var minisize=16; // smallest size of hearts in pixels
  77. var maxisize=28; // biggest size of hearts in pixels
  78. var hearts=66; // maximum number of hearts on screen
  79. var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
  80.  
  81. /*****************************
  82. *JavaScript Love Heart Cursor*
  83. * (c)2013+ mf2fm web-design *
  84. * http://www.mf2fm.com/rv *
  85. * DON'T EDIT BELOW THIS BOX *
  86. *****************************/
  87. var x=ox=400;
  88. var y=oy=300;
  89. var swide=800;
  90. var shigh=600;
  91. var sleft=sdown=0;
  92. var herz=new Array();
  93. var herzx=new Array();
  94. var herzy=new Array();
  95. var herzs=new Array();
  96. var kiss=false;
  97.  
  98. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  99. var oldonload=window.onload;
  100. if (typeof(oldonload)!='function') window.onload=funky;
  101. else window.onload=function() {
  102. if (oldonload) oldonload();
  103. funky();
  104. }
  105. }
  106.  
  107. addRVLoadEvent(mwah);
  108.  
  109. function mwah() { if (document.getElementById) {
  110. var i, heart;
  111. for (i=0; i<hearts; i++) {
  112. heart=createDiv("auto", "auto");
  113. heart.style.visibility="hidden";
  114. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  115. heart.style.color=colours[i%colours.length];
  116. heart.style.pointerEvents="none";
  117. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  118. else heart.style.opacity=0.75;
  119. heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
  120. document.body.appendChild(heart);
  121. herz[i]=heart;
  122. herzy[i]=false;
  123. }
  124. set_scroll();
  125. set_width();
  126. herzle();
  127. }}
  128.  
  129. function herzle() {
  130. var c;
  131. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  132. ox=x;
  133. oy=y;
  134. for (c=0; c<hearts; c++) if (herzy[c]===false) {
  135. herz[c].firstChild.nodeValue=String.fromCharCode(9829);
  136. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  137. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  138. herz[c].style.fontSize=minisize+"px";
  139. herz[c].style.fontWeight='normal';
  140. herz[c].style.visibility='visible';
  141. herzs[c]=minisize;
  142. break;
  143. }
  144. }
  145. for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  146. setTimeout("herzle()", 40);
  147. }
  148.  
  149. document.onmousedown=pucker;
  150. document.onmouseup=function(){clearTimeout(kiss);};
  151.  
  152. function pucker() {
  153. ox=-1;
  154. oy=-1;
  155. kiss=setTimeout('pucker()', 100);
  156. }
  157.  
  158. function blow_me_a_kiss(i) {
  159. herzy[i]-=herzs[i]/minisize+i%2;
  160. herzx[i]+=(i%5-2)/5;
  161. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  162. herz[i].style.visibility="hidden";
  163. herzy[i]=false;
  164. }
  165. else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
  166. else {
  167. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  168. herz[i].style.top=herzy[i]+"px";
  169. herz[i].style.left=herzx[i]+"px";
  170. }
  171. }
  172.  
  173. function break_my_heart(i) {
  174. var t;
  175. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  176. herz[i].style.fontWeight='bold';
  177. herzy[i]=false;
  178. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  179. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  180. }
  181.  
  182. document.onmousemove=mouse;
  183. function mouse(e) {
  184. if (e) {
  185. y=e.pageY;
  186. x=e.pageX;
  187. }
  188. else {
  189. set_scroll();
  190. y=event.y+sdown;
  191. x=event.x+sleft;
  192. }
  193. }
  194.  
  195. window.onresize=set_width;
  196. function set_width() {
  197. var sw_min=999999;
  198. var sh_min=999999;
  199. if (document.documentElement && document.documentElement.clientWidth) {
  200. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  201. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  202. }
  203. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  204. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  205. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  206. }
  207. if (document.body.clientWidth) {
  208. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  209. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  210. }
  211. if (sw_min==999999 || sh_min==999999) {
  212. sw_min=800;
  213. sh_min=600;
  214. }
  215. swide=sw_min;
  216. shigh=sh_min;
  217. }
  218.  
  219. window.onscroll=set_scroll;
  220. function set_scroll() {
  221. if (typeof(self.pageYOffset)=='number') {
  222. sdown=self.pageYOffset;
  223. sleft=self.pageXOffset;
  224. }
  225. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  226. sdown=document.body.scrollTop;
  227. sleft=document.body.scrollLeft;
  228. }
  229. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  230. sleft=document.documentElement.scrollLeft;
  231. sdown=document.documentElement.scrollTop;
  232. }
  233. else {
  234. sdown=0;
  235. sleft=0;
  236. }
  237. }
  238.  
  239. function createDiv(height, width) {
  240. var div=document.createElement("div");
  241. div.style.position="absolute";
  242. div.style.height=height;
  243. div.style.width=width;
  244. div.style.overflow="hidden";
  245. div.style.backgroundColor="transparent";
  246. return (div);
  247. }
  248. // ]]>
  249. </script>
  250. {/block:ifcursorhearts}
  251. {block:ifrainbowtitle}
  252. <script type="text/javascript">
  253. // <![CDATA[
  254. var speed=100; // speed colours change, 1 second = 1000
  255. var glow=3; // can be set from '0' for no glow, to 10
  256. var raincol=new Array("#ff0000", "#ff5500", "#ffaa00", "#ffff00", "#aaff00", "#55ff00", "#00ff00", "#00ff55", "#00ffaa", "#00ffff", "#00aaff", "#0055ff", "#0000ff", "#5500ff", "#aa00ff", "#ff00ff", "#ff00aa", "#ff0055"); // change the colours if you want to
  257. var alink="http://www.mf2fm.com/rv/"; // page to link text to (set to ="" for no link)
  258.  
  259. /****************************
  260. * Rainbow Text Effect *
  261. *(c)2003-13 mf2fm web-design*
  262. * http://www.mf2fm.com/rv *
  263. * DON'T EDIT BELOW THIS BOX *
  264. ****************************/
  265. var rainbow, raintxt, raincnt=0;
  266.  
  267. function addLoadEvent(funky) {
  268. var oldonload=window.onload;
  269. if (typeof(oldonload)!='function') window.onload=funky;
  270. else window.onload=function() {
  271. if (oldonload) oldonload();
  272. funky();
  273. }
  274. }
  275.  
  276. addLoadEvent(regenbogen);
  277.  
  278. function regenbogen() { if (document.getElementById) {
  279. var i, rainbeau;
  280. rainbow=document.getElementById("rainbow");
  281. raintxt=rainbow.firstChild.nodeValue;
  282. while (rainbow.childNodes.length) rainbow.removeChild(rainbow.childNodes[0]);
  283. for (i=0; i<raintxt.length; i++) {
  284. rainbeau=document.createElement("span");
  285. rainbeau.setAttribute("id", "rain"+i);
  286. rainbeau.appendChild(document.createTextNode(raintxt.charAt(i)));
  287. if (alink) {
  288. rainbeau.style.cursor="pointer";
  289. rainbeau.onclick=function() { top.location.href=alink; }
  290. }
  291. rainbow.appendChild(rainbeau);
  292. }
  293. rainbow=setInterval ("raining()", speed);
  294. }}
  295.  
  296. function raining() {
  297. var i, c;
  298. for (i=0; i<raintxt.length; i++) {
  299. c=raincol[(i+raincnt)%raincol.length];
  300. document.getElementById("rain"+i).style.color=c;
  301. if (glow) document.getElementById("rain"+i).style.textShadow=c+" 0px 0px "+glow+"px";
  302. }
  303. raincnt++;
  304. }
  305. // ]]>
  306. </script>
  307. {/block:ifrainbowtitle}
  308. <style type="text/css">
  309.  
  310. /* Text, Background, Links */
  311. body{
  312. background-color:{color:background color};
  313. background-image:Url('{image:background}');
  314. background-attachment:fixed;
  315. {block:iffullbackground}
  316. background-size: cover;
  317. {/block:iffullbackground}
  318. color:{color:text color};
  319. {block:ifcustomcursor};
  320. cursor:url("{image:custom cursor}"), default;
  321. {/block:ifcustomcursor};
  322. font-size:{text:text size}px;
  323. word-wrap:break-word;}
  324. a{
  325. color:{color:link color};
  326. {block:iflinkborder}
  327. text-shadow: -1px 0 {color:link border color}, 0 1px {color:link border color}, 1px 0 {color:link border color}, 0 -1px {color:link border color};
  328. {/block:iflinkborder}
  329. {block:iflinkglow}
  330. text-shadow: 0 0 10px {color:link color}; 0 0 10px;
  331. {/block:iflinkglow}
  332. text-decoration: none;
  333. {block:ifrainbowlinks}
  334. color: white;
  335. display: inline-block;
  336. background-size: 120% 100%;
  337. -webkit-background-clip: text;
  338. -webkit-text-fill-color: transparent;
  339. -moz-background-clip: text;
  340. -moz-text-fill-color: transparent;
  341. -ms-background-clip: text;
  342. -ms-text-fill-color: transparent;
  343. background-clip: text;
  344. text-fill-color: transparent;
  345. transition: all 0.15s cubic-bezier(0.68, -0.25, 0.265, 1.25);
  346. background-image: linear-gradient(45deg, #ff0000, #ff7d00, #f6ff00, #1dff00, #00ffe9, #001fff, #8800ff, #ff00c9);
  347. {/block:ifrainbowlinks}
  348. text-decoration:none;}
  349. a:hover{
  350. cursor:help;
  351. color:{color:link hover color};
  352. text-decoration:none;}
  353. blockquote{
  354. margin:0 0 10px 10px;
  355. padding:0 0 0 10px;
  356. border-left:solid 1px #000;}
  357. ::selection{
  358. color:{color:text selection color};
  359. background:{color:text selection bg color};}
  360. ::-webkit-scrollbar{
  361. width: 0px;
  362. height: 0px;}
  363. ::-webkit-scrollbar-thumb{
  364. border:1px solid blue;
  365. background:white;}
  366. ::-webkit-scrollbar-track{
  367. background:transparent;}
  368.  
  369. /* Sidebar, Posts */
  370. #content{
  371. width:520px;
  372. margin-left:314px;
  373. margin-top:10px;
  374. overflow:auto;}
  375. .post, .naviga{
  376. width:500px;
  377. margin:0 0 25px 0;
  378. overflow:hidden;
  379. padding:5px;
  380. background-color:{color:content color};
  381. border:{text:border size}px {select:border style} {color:border color};}
  382. #sidebar{
  383. width:275px;
  384. max-height:280px;
  385. background-color:{color:content color};
  386. border:{text:border size}px {select:border style} {color:border color};
  387. position:fixed;
  388. padding:5px;
  389. margin-top:10px;
  390. right:115px;}
  391. #sidebar2{
  392. overflow:auto;
  393. width:275px;
  394. height:170px;
  395. max-height:170px;
  396. background-color:{color:content color};
  397. border:{text:border size}px {select:border style} {color:border color};
  398. position:fixed;
  399. padding:5px;
  400. margin-top:50px;
  401. margin-left:-8px;}
  402. #rightsidebar{
  403. left:115px;
  404. overflow:auto;
  405. margin-top:10px;
  406. width:275px;
  407. background-color:{color:content color};
  408. border:{text:border size}px {select:border style} {color:border color};
  409. position:fixed;
  410. padding:5px;}
  411. #searchie{
  412. width:265px;
  413. border-radius:10px;
  414. padding:5px;
  415. position:fixed;
  416. background-color:transparent;
  417. margin-top:5px;
  418. margin-left:-18px;}
  419. #wrapper{
  420. overflow:auto;
  421. position: relative;
  422. z-index: 10;
  423. background-color:{color:container color};
  424. background-image:Url('{image:container background}');
  425. background-attachment:fixed;
  426. background-size: cover;
  427. border:3px {select:border style} {color:border color};
  428. width:1147px;
  429. max-width:1147px;
  430. height:550px;
  431. max-height:550px;
  432. margin:50px auto;}
  433.  
  434. /* Content */
  435. .title{
  436. font-weight:bold;
  437. font-size:35px;
  438. margin:0 0 10px 0;}
  439. .footer{
  440. padding: 5px;}
  441. #naviga{
  442. left:115px;
  443. overflow:auto;
  444. margin-top:15px;
  445. width:275px;
  446. background-color:{color:content color};
  447. border:{text:border size}px {select:border style} {color:border color};
  448. position:fixed;
  449. padding:5px;
  450. text-align:center;}
  451. .post img{
  452. max-width:100%;}
  453. .sidebar img{
  454. max-height:280px;
  455. max-width:100%;}
  456.  
  457. /* Audio */
  458. #audioplayer{
  459. width:30px;
  460. height:25px;
  461. overflow:hidden;
  462. position:absolute;
  463. margin-top:40px;
  464. margin-bottom:40px;
  465. margin-left:35px;
  466. border-radius: 40px;
  467. opacity: 0.7;}
  468. .trackstuff{
  469. overflow:auto;
  470. margin-left:110px;
  471. margin-top:-75px;
  472. margin-bottom:50px;
  473. display:block;}
  474. .playbutton{
  475. margin-bottom:30px;
  476. margin-top:-60px;
  477. margin-left:35px;
  478. z-index:9;
  479. width:33px;
  480. height:30px;
  481. overflow:hidden;}
  482. #header{
  483. background:transparent;}
  484. #asearch{
  485. padding:5px;}
  486. .textinput{
  487. background-image:Url('https://64.media.tumblr.com/d3b90aee405195699e293f320c7da8df/9e2fb2468a7c651d-9f/s250x400/1952c00e74253264eb65fafbfc0a634a68b86704.png');
  488. padding:5px;
  489. font-size:14px;
  490. color:black;
  491. width:279px;
  492. border:1px solid black;}
  493.  
  494. /* Misc */
  495. #c{
  496. font-size:25px;
  497. position:fixed;
  498. left:0px;
  499. bottom:0px;}
  500. #plz{
  501. left:115px;
  502. margin-top:40px;
  503. width:275px;
  504. position:fixed;}
  505. .plz img{
  506. max-height:100%;
  507. max-width:100%;}
  508. video{
  509. max-width: 100%;
  510. height: auto;}
  511. #rainbowtitle{
  512. font-size:35px;
  513. position: relative;
  514. z-index: 11;
  515. margin-top:-500px;
  516. left:1010px;
  517. transform: rotate(10deg);}
  518.  
  519. {CustomCss}
  520. </style>
  521. </head>
  522. <body>
  523. <div id="wrapper">
  524. <div id="sidebar">
  525. <div class="sidebar img">
  526. <center>
  527. <a href="/"><img src="{image:sidebar}"></a>
  528. </center>
  529. </div>
  530. <div id="searchie">
  531. <div id="header">
  532. <form id="asearch" method="get">
  533. <input type="text" placeholder="{text:search text}" class="textinput" name="q" size="21" maxlength="120">
  534. </form>
  535. </div>
  536. </div>
  537. <div id="sidebar2">
  538. <center>
  539. {text:desc}
  540. </center>
  541. </div>
  542. </div>
  543.  
  544. <div id="rightsidebar">
  545. <center>
  546. {text:right sidebar}
  547. </center>
  548. {block:Pagination}
  549. <div id="naviga">
  550. {block:PreviousPage}
  551. <a href="{PreviousPage}">&#171; Back /</a>
  552. {/block:PreviousPage}
  553. {block:NextPage}
  554. <a href="{NextPage}">Next &#187;</a>
  555. {/block:NextPage}
  556. </div>
  557. {/block:Pagination}
  558. <div id="plz">
  559. <center>
  560. <div class="plz img">
  561. <img src="{image:floatie}" width="{text:floatie size}">
  562. </div>
  563. </center>
  564. </div>
  565. </div>
  566.  
  567.  
  568.  
  569. <div id="content">
  570. {block:Posts}
  571. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} --> {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  572. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  573. {/block:ContentSource}
  574. <div class="post">
  575.  
  576. <!-- Text -->
  577. {block:Text}
  578. {block:Title}
  579. <div class="title">{Title}</div>
  580. {/block:Title}
  581. {Body}
  582. {/block:Text}
  583. {block:Chat}
  584. {block:Title}
  585. <div class="title">
  586. <h3><a href="{Permalink}">{Title}</a></h3></div>
  587. {/block:Title}
  588. {block:Lines}
  589. <div class="{Alt} user_{UserNumber}">
  590. {block:Label}
  591. <span class="label">{Label}</span>
  592. {/block:Label}{Line}
  593. </div>
  594. {/block:Lines}
  595. {/block:Chat}
  596.  
  597. <!-- Images --->
  598. {block:Photo}
  599. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  600. {block:Caption}{Caption}{/block:Caption}
  601. {/block:Photo}
  602. {block:Photoset}
  603. {Photoset}
  604. {block:Caption}
  605. {Caption}
  606. {/block:Caption}
  607. {/block:Photoset}
  608.  
  609. <!-- Video -->
  610. {block:Video}
  611. {Video-500}
  612. {block:Caption}
  613. {Caption}
  614. {/block:Caption}
  615. {/block:Video}
  616.  
  617. <!-- Audio -->
  618. {block:Audio}
  619. <div id= "audioplayer">{AudioPlayerWhite}</div>
  620. {block:AlbumArt}
  621. <div id="albumart">
  622. <img src="{AlbumArtURL}" width="100">
  623. </div>
  624. {/block:AlbumArt}
  625. <div class="trackstuff">
  626. {block:TrackName}<b><i>{TrackName}</i></b>{/block:TrackName}<br>{block:Artist}<i>{Artist}</i>{/block:Artist}</div>
  627. {Caption}
  628. {/block:Audio}
  629.  
  630. <!-- Quote -->
  631. {block:Quote}
  632. <div class="quote">
  633. "{Quote}"
  634. {block:Source}
  635. <div class="source">- <i>{Source}</i></div>
  636. {/block:Source}
  637. </div>
  638. {/block:Quote}
  639.  
  640. <!-- Link -->
  641. {block:Link}
  642. <a href="{URL}" class="link" {Target}>{Name}</a>
  643. {block:Description}
  644. {Description}
  645. {/block:Description}
  646. {/block:Link}
  647.  
  648. <!-- Ask -->
  649. {block:Answer}
  650. <div class="question">{Asker}: {Question}</div>
  651. <div class="caption">{Answer}</div>
  652. {/block:Answer}
  653.  
  654. <!-- Footer -->
  655. {block:Date}
  656. <div class="footer">
  657. <hr width="100%" size="1" color="{color:text color}">
  658. <center><a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>, <a href="{ReblogUrl}">&#8634;</a>
  659. {block:HasTags}<br>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</center>
  660. </div>
  661. {block:PermalinkPage}
  662. {block:NoteCount}
  663. {block:PostNotes}{PostNotes}{/block:PostNotes}
  664. {/block:NoteCount}
  665. {/block:PermalinkPage}
  666. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  667. {/block:Date}
  668.  
  669. </div>
  670. {/block:Posts}
  671.  
  672. </div>
  673. <!-- please do not edit link or remove -->
  674. <div id="c"><a href="https://cloverparty.tumblr.com/tagged/mine">ミ★</a></div>
  675. <!-- please do not edit link or remove -->
  676.  
  677. </div>
  678. {block:ifrainbowtitle}
  679. <div id="rainbowtitle">
  680. <span id="rainbow">{text:title}</span>
  681. </div>
  682. {/block:ifrainbowtitle}
  683. </body>
  684. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement