mikit20

Angel with shot gun.

Sep 17th, 2014
1,477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.95 KB | None | 0 0
  1. <!--
  2. Base Code by disikes.tumblr.com
  3.  
  4. Edit this code to your heart's content! You don't have to credit me anywhere on the theme, but if people ask where you got your base, it'd be cool if you sent them my way!
  5.  
  6. PLEASE DO NOT REDISTRIBUTE THIS CODE AS YOUR OWN BASE CODE.
  7. -->
  8.  
  9. <html lang="en">
  10. <head>
  11.  
  12. <meta name="image:Background" content=""/>
  13. <meta name="image:Sidebar" content=""/>
  14.  
  15. <meta name="color:Background" content="#FFFFFF"/>
  16. <meta name="color:Title" content="#999999"/>
  17. <meta name="color:Blog Title" content="#999999"/>
  18. <meta name="color:Link" content="#555555"/>
  19. <meta name="color:Hover" content="#999999"/>
  20. <meta name="color:Text" content="#777777"/>
  21. <meta name="color:Permalink" content="#e1e1e1"/>
  22. <meta name="color:Permalink Hover" content="#e1e1e1"/>
  23. <meta name="color:Speech" content="#FFFFFF"/>
  24. <meta name="color:Speech Text" content="#FFFFFF"/>
  25. <meta name="color:Buttons" content="#FFFFFF"/>
  26. <meta name="color:Scroll" content="#FFFFFF"/>
  27.  
  28. <meta name="text:Link One URL" content=""/>
  29. <meta name="text:Link One Title" content="link"/>
  30. <meta name="text:Link 2" content=""/>
  31. <meta name="text:Link 2 URL" content=""/>
  32. <meta name="text:Link 3" content=""/>
  33. <meta name="text:Link 3 URL" content=""/>
  34. <meta name="text:Link 4" content=""/>
  35. <meta name="text:Link 4 URL" content=""/>
  36. <meta name="text:Link 5" content=""/>
  37. <meta name="text:Link 5 URL" content=""/>
  38.  
  39. <title>{Title}</title>
  40. {block:Description}
  41. <meta name="description" content="{MetaDescription}" />
  42. {/block:Description}
  43. <link rel="shortcut icon" href="{Favicon}">
  44.  
  45. <!---------------DO NOT REMOVE THESE SCRIPTS--------------->
  46.  
  47. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  48.  
  49. <script src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  50. <script>
  51. (function($){$(document)
  52. .ready(function(){$("[title]")
  53. .style_my_tooltips();});})
  54. (jQuery);
  55. </script>
  56.  
  57.  
  58. <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/d94956a3e0cc69942c151b25428039ff/tumblr_inline_movbflYxO91qz4rgp.png), progress;}</style>
  59.  
  60.  
  61. <script type="text/javascript">
  62. // <![CDATA[
  63. var colour="pink"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  64. var sparkles=50;
  65.  
  66. /****************************
  67. * Tinkerbell Magic Sparkle *
  68. *(c)2005-13 mf2fm web-design*
  69. * http://www.mf2fm.com/rv *
  70. * DON'T EDIT BELOW THIS BOX *
  71. ****************************/
  72. var x=ox=400;
  73. var y=oy=300;
  74. var swide=800;
  75. var shigh=600;
  76. var sleft=sdown=0;
  77. var tiny=new Array();
  78. var star=new Array();
  79. var starv=new Array();
  80. var starx=new Array();
  81. var stary=new Array();
  82. var tinyx=new Array();
  83. var tinyy=new Array();
  84. var tinyv=new Array();
  85.  
  86. window.onload=function() { if (document.getElementById) {
  87. var i, rats, rlef, rdow;
  88. for (var i=0; i<sparkles; i++) {
  89. var rats=createDiv(3, 3);
  90. rats.style.visibility="hidden";
  91. rats.style.zIndex="999";
  92. document.body.appendChild(tiny[i]=rats);
  93. starv[i]=0;
  94. tinyv[i]=0;
  95. var rats=createDiv(5, 5);
  96. rats.style.backgroundColor="transparent";
  97. rats.style.visibility="hidden";
  98. rats.style.zIndex="999";
  99. var rlef=createDiv(1, 5);
  100. var rdow=createDiv(5, 1);
  101. rats.appendChild(rlef);
  102. rats.appendChild(rdow);
  103. rlef.style.top="2px";
  104. rlef.style.left="0px";
  105. rdow.style.top="0px";
  106. rdow.style.left="2px";
  107. document.body.appendChild(star[i]=rats);
  108. }
  109. set_width();
  110. sparkle();
  111. }}
  112.  
  113. function sparkle() {
  114. var c;
  115. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  116. ox=x;
  117. oy=y;
  118. for (c=0; c<sparkles; c++) if (!starv[c]) {
  119. star[c].style.left=(starx[c]=x)+"px";
  120. star[c].style.top=(stary[c]=y+1)+"px";
  121. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  122. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  123. star[c].style.visibility="visible";
  124. starv[c]=50;
  125. break;
  126. }
  127. }
  128. for (c=0; c<sparkles; c++) {
  129. if (starv[c]) update_star(c);
  130. if (tinyv[c]) update_tiny(c);
  131. }
  132. setTimeout("sparkle()", 40);
  133. }
  134.  
  135. function update_star(i) {
  136. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  137. if (starv[i]) {
  138. stary[i]+=1+Math.random()*3;
  139. starx[i]+=(i%5-2)/5;
  140. if (stary[i]<shigh+sdown) {
  141. star[i].style.top=stary[i]+"px";
  142. star[i].style.left=starx[i]+"px";
  143. }
  144. else {
  145. star[i].style.visibility="hidden";
  146. starv[i]=0;
  147. return;
  148. }
  149. }
  150. else {
  151. tinyv[i]=50;
  152. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  153. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  154. tiny[i].style.width="2px";
  155. tiny[i].style.height="2px";
  156. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  157. star[i].style.visibility="hidden";
  158. tiny[i].style.visibility="visible"
  159. }
  160. }
  161.  
  162. function update_tiny(i) {
  163. if (--tinyv[i]==25) {
  164. tiny[i].style.width="1px";
  165. tiny[i].style.height="1px";
  166. }
  167. if (tinyv[i]) {
  168. tinyy[i]+=1+Math.random()*3;
  169. tinyx[i]+=(i%5-2)/5;
  170. if (tinyy[i]<shigh+sdown) {
  171. tiny[i].style.top=tinyy[i]+"px";
  172. tiny[i].style.left=tinyx[i]+"px";
  173. }
  174. else {
  175. tiny[i].style.visibility="hidden";
  176. tinyv[i]=0;
  177. return;
  178. }
  179. }
  180. else tiny[i].style.visibility="hidden";
  181. }
  182.  
  183. document.onmousemove=mouse;
  184. function mouse(e) {
  185. if (e) {
  186. y=e.pageY;
  187. x=e.pageX;
  188. }
  189. else {
  190. set_scroll();
  191. y=event.y+sdown;
  192. x=event.x+sleft;
  193. }
  194. }
  195.  
  196. window.onscroll=set_scroll;
  197. function set_scroll() {
  198. if (typeof(self.pageYOffset)=='number') {
  199. sdown=self.pageYOffset;
  200. sleft=self.pageXOffset;
  201. }
  202. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  203. sdown=document.body.scrollTop;
  204. sleft=document.body.scrollLeft;
  205. }
  206. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  207. sleft=document.documentElement.scrollLeft;
  208. sdown=document.documentElement.scrollTop;
  209. }
  210. else {
  211. sdown=0;
  212. sleft=0;
  213. }
  214. }
  215.  
  216. window.onresize=set_width;
  217. function set_width() {
  218. var sw_min=999999;
  219. var sh_min=999999;
  220. if (document.documentElement && document.documentElement.clientWidth) {
  221. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  222. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  223. }
  224. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  225. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  226. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  227. }
  228. if (document.body.clientWidth) {
  229. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  230. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  231. }
  232. if (sw_min==999999 || sh_min==999999) {
  233. sw_min=800;
  234. sh_min=600;
  235. }
  236. swide=sw_min;
  237. shigh=sh_min;
  238. }
  239.  
  240. function createDiv(height, width) {
  241. var div=document.createElement("div");
  242. div.style.position="absolute";
  243. div.style.height=height+"px";
  244. div.style.width=width+"px";
  245. div.style.overflow="hidden";
  246. return (div);
  247. }
  248.  
  249. function newColour() {
  250. var c=new Array();
  251. c[0]=255;
  252. c[1]=Math.floor(Math.random()*256);
  253. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  254. c.sort(function(){return (0.5 - Math.random());});
  255. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  256. }
  257. // ]]>
  258. </script>
  259.  
  260. {block:IndexPage}
  261. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  262. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  263.  
  264. <script type="text/javascript">
  265. $(window).load(function(){
  266. var $wall = $('#entries');
  267. $wall.imagesLoaded(function(){
  268. $wall.masonry({
  269. itemSelector: '#post, #post_photo',
  270. isAnimated : false
  271. });
  272. });
  273.  
  274. $wall.infinitescroll({
  275. navSelector : '#pagination',
  276. nextSelector : '#pagination a',
  277. itemSelector : '#post, #post_photo',
  278. bufferPx : 2000,
  279. debug : false,
  280. errorCallback: function() {
  281. $('#scroll').fadeOut('normal');
  282. }},
  283. function( newElements ) {
  284. var $newElems = $( newElements );
  285. $newElems.hide();
  286. $newElems.imagesLoaded(function(){
  287. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  288. });
  289. }); $('#entries').show(500);
  290. });
  291. </script>
  292. {/block:IndexPage}
  293.  
  294. <!---------------END SCRIPTS--------------->
  295.  
  296. <style type="text/css">
  297.  
  298.  
  299. /************EDIT BODY HERE************/
  300.  
  301. body{
  302. margin:0px;
  303. background-color: {color:Background};
  304. background-image:url({image:Background});
  305. background-attachment:fixed;
  306. background-repeat:100%;
  307. background-position:bottom-right;
  308. font-family: Calibri;
  309. font-size:8px;
  310. letter-spacing:1px;
  311. text-transform:uppercase;
  312. text-align:left;
  313. line-height:11px;
  314. color: {color:Text};}
  315.  
  316.  
  317. a:link, a:active, a:visited{
  318. text-decoration: none;
  319. color: {color:Link};}
  320.  
  321. a:hover {
  322. color:{color:Link};
  323. text-decoration:none;}
  324.  
  325. ::-webkit-scrollbar {
  326. height: 6px;
  327. width: 8px;
  328. background: #ffffff;
  329. }
  330. ::-webkit-scrollbar-thumb {
  331. background: {color:Scroll};
  332. border-radius: 10px;
  333. }
  334.  
  335.  
  336. /************EDIT TOOLTIP HERE************/
  337.  
  338.  
  339. #s-m-t-tooltip {
  340. padding: 3px;
  341. height:auto;
  342. display: none;
  343. font-family: consolas;
  344. font-size: 8px;
  345. text-transform:uppercase;
  346. text-align: center;
  347. letter-spacing:1px;
  348. margin-top:10px;
  349. margin-left: 15px;
  350. line-height: 8px;
  351. z-index: 999999999999;
  352. border-radius:3px;
  353. border: 1px solid #f5f5f5;
  354. background:#ffffff;
  355. color: #888;}
  356.  
  357. /************EDIT POST POSITION/WIDTH HERE************/
  358.  
  359. /*To increase the amount of columns, increase the width. To decrease the amount of columns, decrease the width.*/
  360.  
  361. #entries{
  362. text-align:left;
  363. width:780px;
  364. margin-left:-120px;
  365. margin-top:50px;
  366. position:relative;
  367. overflow: hidden;
  368. }
  369.  
  370. /************EDIT OVERALL POSTS HERE************/
  371.  
  372. /*When increasing the amount of columns, you may have to decrease the #post width. Otherwise, to get larger posts, increase the width.*/
  373.  
  374. #post{
  375. text-align:left;
  376. margin:25px;
  377. background:#ffffff;
  378. max-width: 100%;
  379. display:block;
  380. overflow:hidden;
  381. width:250px;
  382. font-size:10px;
  383. text-transform:uppercase;
  384. line-height:18px;
  385. letter-spacing:1px;
  386. padding:12px;
  387. opacity:.9;
  388. border:1px solid #eee;
  389. box-shadow: 8px 8px rgba(0,0,0,.05);
  390. -webkit-transition: all 0.4s ease-out;
  391. -moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  392. outline-offset:-6px;
  393. outline:1px dashed #eee;
  394. {block:PermalinkPage}
  395. width:500px;
  396. {/block:PermalinkPage}}
  397.  
  398. /*Do not delete #post img.*/
  399.  
  400. #post img{
  401. max-width:100%;
  402. border-radius:5px;
  403. }
  404.  
  405. #post:hover{
  406. opacity:1;
  407. -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
  408. }
  409.  
  410. /*Edit the permalinks all posts.*/
  411.  
  412. .permalink{
  413. text-transform:lowercase;
  414. font-size:9px;
  415. background-color:#D7EAFF;
  416. border: 0px solid #E0F1FF;
  417. text-align:right;
  418. color:{color:Permalink};
  419. margin-top: 8px;
  420. padding-right:4px;
  421. line-height:12px;
  422. border-radius:3px;
  423. text-shadow:1px 1px 0px #BBBBBB;
  424. }
  425. .permalink a{
  426. text-transform:uppercase;
  427. line-height:15px;
  428. color:{color:Permalink};
  429. -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  430. }
  431.  
  432. .permalink a:hover{
  433. color:{color:Permalink Hover};
  434. -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  435. }
  436.  
  437. .notes {
  438. float: left;
  439. text-align: left;
  440. padding-left:4px;
  441. }
  442.  
  443. /*Edit the titles on any text-based post.*/
  444.  
  445. .posttitle{
  446. font-size:10px;
  447. text-align:center;
  448. color:{color:Link};}
  449.  
  450. .posttitle a{
  451. color:{color:Link};}
  452.  
  453. /************EDIT QUOTE POSTS HERE************/
  454.  
  455. .quote{
  456. margin-right: 5px;}
  457.  
  458. .source{
  459. padding-top:5px;
  460. display:block;
  461. text-align:right;}
  462.  
  463.  
  464. /************EDIT ANSWER POSTS HERE************/
  465.  
  466. .bubble {align:right;background: #FFE2E2; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px; font-size:8px;}
  467. .bubble p {margin:1px 0px;}
  468. .bubble span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px;left:-10px;top:10px;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:10px solid #FFE2E2;}
  469.  
  470. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #eee; border-radius:33px;}
  471.  
  472. .ask{
  473. padding:4px;
  474. background:#f9f9f9;}
  475. .asker{
  476. color:{color:Link};}
  477. .answer{
  478. margin-top:10px;}
  479.  
  480. /************EDIT AUDIO POSTS HERE************/
  481.  
  482. .audio{
  483. {block:IndexPage}width:180px;{/block:IndexPage}
  484. {block:PermalinkPage}width:239px;{/block:PermalinkPage};}
  485. .info{
  486. padding:2px 0px 1px 57px;}
  487. .i {
  488. text-transform:uppercase;
  489. letter-spacing:1px;
  490. font-size:8px;}
  491. .pl b,strong{
  492. text-transform:lowercase;
  493. font-size:9px;}
  494. .player{
  495. position:absolute;
  496. overflow:hidden;
  497. margin-top:0px;
  498. margin-left:15px;
  499. background:#ffffff;
  500. width:24px;
  501. height:23px;}
  502.  
  503. /************EDIT VIDEO POSTS HERE************/
  504. /***********DO NOT DELETE THIS CODE************/
  505.  
  506. .video-container {
  507. position:relative;
  508. padding-bottom:56.25%;
  509. padding-top: 30px;
  510. height:0;
  511. overflow:hidden;}
  512.  
  513. .video-container iframe,
  514. .video-container object,
  515. .video-container embed {
  516. position: absolute;
  517. top: 0;
  518. left: 0;
  519. width: 100%;
  520. height: 100%;}
  521.  
  522. /************EDIT CHAT POSTS HERE************/
  523.  
  524. .chat{
  525. line-height:12px;
  526. list-style:none;}
  527. .chat ul{
  528. list-style:none;
  529. padding:0px 5px;
  530. line-height:15px;}
  531. .label{
  532. color:{color:Link};}
  533.  
  534. /************EDIT SIDEBAR HERE************/
  535.  
  536. #sidebar{
  537. background:transparent;
  538. border:0px #eee solid;
  539. margin-left:720px;
  540. margin-top:150px;
  541. width:150px;
  542. position:fixed;
  543. text-align:center;}
  544.  
  545. .blogtitle{
  546. padding:5px;
  547. padding-bottom:0px;
  548. text-align:center;
  549. font-size:12px;}
  550.  
  551. .blogtitle a{
  552. color:{color:Blog Title};}
  553.  
  554. @font-face {
  555. font-family: "silkscreen";
  556. src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf');
  557. }
  558.  
  559. .description{
  560. font:8px silkscreen;
  561. padding:5px;
  562. text-transform:normal;
  563. text-decoration:none;
  564. }
  565.  
  566. .links{
  567. margin-left:-15px;
  568. padding:0px 10px 5px 10px;
  569. margin-top:5px;}
  570.  
  571. .links a{
  572. margin-left:15px;}
  573.  
  574. .links a:hover{
  575. color:{color:Hover};}
  576.  
  577. .downarrowdiv{
  578. width:150px;
  579. min-height:auto; /*min height of DIV should be set to at least 2x the width of the arrow*/
  580. background: {color:Speech};
  581. color:{color:Speech Text};
  582. padding:5px;
  583. margin-left:720px;
  584. margin-top:180px;
  585. position:fixed;
  586. word-wrap:break-word;
  587. -moz-border-radius:7px; /*add some nice CSS3 round corners*/
  588. -webkit-border-radius:7px;
  589. border-radius:7px;
  590. margin-bottom:2em;
  591. }
  592.  
  593. .downarrowdiv:after{ /*arrow added to downarrowdiv DIV*/
  594. content:'';
  595. display:block;
  596. position:absolute;
  597. top:100%; /*should be set to 100% */
  598. left:70px;
  599. width:0;
  600. height:0;
  601. border-color: {color:Speech} transparent transparent transparent; /*border color should be same as div div background color*/
  602. border-style: solid;
  603. border-width: 10px;
  604. }
  605.  
  606. a.you{
  607. width:8px;
  608. display:inline-block;
  609. color:#fff;
  610. text-align:left;
  611. padding:2px;
  612. overflow:hidden;
  613. height:13px;
  614. text-decoration:none;
  615. padding-left:7px;
  616. -webkit-transition: all 0.5s ease-in-out;
  617. -moz-transition: all 0.5s ease-in-out;
  618. -o-transition: all 0.5s ease-in-out;
  619. -ms-transition: all 0.5s ease-in-out;
  620. transition: all 0.5s ease-in-out;
  621. font-family:calibri;
  622. margin:2px;
  623. font-size:10px;
  624. border-radius:333px;
  625. }
  626.  
  627. a.you:hover{
  628. width:70px;
  629. {
  630.  
  631. /************EDIT TEXT SETTINGS HERE************/
  632.  
  633. i, em{
  634. color:{color:Link};}
  635. b, strong{
  636. font-weight:normal;
  637. text-transform:uppercase;
  638. color:{color:Link};}
  639. ul,ol{
  640. margin:0px;
  641. margin-left:-5px;}
  642. p{
  643. padding:0px;
  644. margin:2px;}
  645. u{
  646. text-decoration:none;
  647. color:{color:Title};}
  648.  
  649. blockquote {
  650. margin:0px;
  651. padding:4px;
  652. background:#f7f7f7;}
  653.  
  654. /************DO NOT DELETE #SCROLL************/
  655.  
  656. #scroll{
  657. bottom:-20px;
  658. position: absolute;
  659. left: 50%;
  660. width:10px;
  661. height:5px;
  662. overflow:hidden;
  663. margin-bottom:80px;}
  664.  
  665. /************EDIT CREDIT HERE************/
  666.  
  667. #credit{
  668. position:fixed;
  669. right:10px;
  670. bottom:10px;
  671. text-transform:uppercase;
  672. font-family:Calibri;
  673. font-size:8px;}
  674.  
  675. #credit a{
  676. color:#aaaaaa;}
  677.  
  678. </style>
  679. </head>
  680.  
  681. <body>
  682.  
  683.  
  684. <center>
  685.  
  686. <div id="entries">
  687.  
  688.  
  689. <div style=" background-image: url('http://33.media.tumblr.com/a9bb09bb5ccef6c37c20dff59fa31081/tumblr_mnasjpq27Q1qkxkfvo1_250.png'); top: 0px; width: 100%; left:0px; height: 30px; z-index: 100; position: fixed; background-hover:filter:alpha(opacity=100);"></div>
  690.  
  691.  
  692. <!---------------EDIT SIDEBAR CONTENT HERE--------------->
  693.  
  694. <a href="/"><div style="position:fixed; left:940px; top:360px; z-index:9; width:75px;" ><img src="{image:Sidebar}"></div></a>
  695.  
  696. <div id="sidebar">
  697. <div class="links">
  698. <a href="/"><img src="http://media.tumblr.com/e66292d646491f8aa301e35fc0f0b0cc/tumblr_inline_muh35q7q7g1qcza22.png"></a>
  699. <a href="/ask"><img src="http://media.tumblr.com/aac188e4cb1e24a3b37f9e0cd3fda61d/tumblr_inline_muh35whV6c1qcza22.png"></a>
  700. <a href="{text:Link One URL}"><img src="http://media.tumblr.com/a8652db86b0eb68cab2871c67a04382c/tumblr_inline_muh36b5xuI1qcza22.png"></a>
  701. </div>
  702. </div>
  703. <div class="downarrowdiv">
  704.  
  705. <div class="blogtitle"><a href="/">{Title}</a></div>
  706. <div class="description">{Description}</div>
  707.  
  708. </div>
  709.  
  710. <div style="position:fixed; top:200px;left:1120px;"><br />
  711. <a class="you" style="background:{color:Buttons};" href="{text:link 2 url}"> <span style="padding-right:10px;font-size:16;">+</span>{text:link 2}</a></br>
  712. <br />
  713. <a class="you" style="background:{color:Buttons};" href="{text:link 3 url}"> <span style="padding-right:10px;font-size:16;">+</span>{text:link 3}</a><br />
  714. <br />
  715. <a class="you" style="background:{color:Buttons};" href="{text:link 4 url}"> <span style="padding-right:10px;font-size:16;">+</span>{text:link 4}</a><br />
  716. <br />
  717. <a class="you" style="background:{color:Buttons};" href="{text:link 5 url}"> <span style="padding-right:10px;font-size:16;">+</span>{text:link 5}</a><br />
  718. <br />
  719. </div>
  720.  
  721. {block:Posts}
  722.  
  723. <!---------------DO NOT DELETE block:ContentSource--------------->
  724.  
  725. {block:ContentSource}
  726. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  727. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  728. {/block:SourceLogo}
  729. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  730. {/block:ContentSource}
  731.  
  732. <div id="post">
  733.  
  734. <!---------------EDIT TEXT POSTS HERE--------------->
  735.  
  736. {block:Text}
  737. <div class="text">
  738. <div class="posttitle">{block:Title}{Title}{/block:Title}</div>
  739. {Body}{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
  740. </div>{/block:IndexPage}</div>
  741. {/block:Text}
  742.  
  743. <!---------------EDIT LINK POSTS HERE--------------->
  744.  
  745. {block:Link}
  746. <a href="{URL}"><div class="posttitle">{Name}</div></a>
  747. {block:Description}{Description}{/block:Description}
  748. {block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
  749. </div>{/block:IndexPage}
  750. {/block:Link}
  751.  
  752. <!---------------EDIT PHOTO POSTS HERE--------------->
  753.  
  754. {block:Photo}
  755. {block:IndexPage}
  756. <img src="{PhotoURL-250}" alt="{PhotoAlt}" width="250px"/>{/block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
  757. </div>{block:PermalinkPage}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{/block:PermalinkPage}</a>
  758. {/block:Photo}
  759.  
  760. <!---------------EDIT PHOTOSET POSTS HERE--------------->
  761.  
  762. {block:Photoset}
  763. {block:IndexPage}<a href="{Permalink}">{Photoset-250}</a><div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>
  764. </div>{/block:IndexPage}
  765. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  766. {/block:Photoset}
  767.  
  768. <!---------------EDIT QUOTE POSTS HERE--------------->
  769.  
  770. {block:Quote}
  771. {Quote}{block:Source}
  772. <div class="source">{Source}</div>{/block:Source}
  773. {block:IndexPage}
  774. <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>{/block:IndexPage}</div>
  775. {/block:Quote}
  776.  
  777. <!---------------EDIT ANSWER POSTS HERE--------------->
  778.  
  779. {block:Answer}
  780. <img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>
  781. <div class="answer">{Answer}</div>
  782. {block:IndexPage}
  783. <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div>{/block:IndexPage}</div>
  784. {/block:Answer}
  785.  
  786. <!---------------EDIT CHAT POSTS HERE--------------->
  787.  
  788. {block:Chat}
  789. {block:Title}<div class="posttitle">{Title}</div>{/block:Title}
  790. <div class="chat"><ul>{block:Lines}
  791. <li class="person{UserNumber}">{block:Label}
  792. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
  793. {/block:IndexPage}
  794. {/block:Chat}
  795.  
  796. <!---------------EDIT AUDIO POSTS HERE--------------->
  797.  
  798. {block:Audio}<div class="player">{AudioPlayerWhite}</div>
  799. <div class="info"><div class="i"><span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}</div><div class="i">by<span{block:Artist} style="display: none;"{block:Artist}>Unknown</span> {block:Artist}{Artist}{/block:Artist}</div></div>{block:IndexPage}<<div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
  800. {/block:IndexPage}
  801. {/block:Audio}
  802.  
  803. <!---------------EDIT VIDEO POSTS HERE--------------->
  804.  
  805. {block:Video}
  806. {block:IndexPage}<div class="video-container">{Video-250}</div>
  807. <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>{/block:IndexPage}
  808. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  809. {/block:Video}
  810.  
  811. <!---------------EDIT PERMALINK PAGE HERE--------------->
  812.  
  813. {block:PermalinkPage}
  814. {block:Caption}{Caption}{/block:Caption}
  815. <p>{block:Date} {Month} {DayofMonthWithSuffix}, {Year}{/block:Date} {block:NoteCount}, {NoteCountWithLabel}{/block:NoteCount} {block:RebloggedFrom} , (via <a href="{ReblogParentURL}">{ReblogParentName}</a>){/block:RebloggedFrom}
  816. <div class="permapage">
  817. <div style="margin-top:10px; margin-left:-10px;">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>{/block:PermalinkPage}
  818. </div>
  819. {/block:Posts}
  820. </div>
  821.  
  822. <!---------------DO NOT DELETE THIS--------------->
  823.  
  824. {block:IndexPage}
  825. {block:Pagination}
  826. <div id="pagination">
  827. {block:NextPage}
  828. <a id="nextPage" href="{NextPage}"></a>
  829. {/block:NextPage}
  830. {block:PreviousPage}
  831. <a href="{PreviousPage}"></a>
  832. {/block:PreviousPage}
  833. </div>
  834. {/block:Pagination}
  835. {/block:IndexPage}
  836. </center>
  837. </body>
  838.  
  839. <BODY onselectstart="return false;" ondragstart="return false;">
  840. <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
  841. <a href="http://themesbymiki.tumblr.com/tagged/cute-themes">✿</a></div>
  842.  
  843. <!---------------EDIT CREDIT CONTENT HERE--------------->
  844.  
  845. <div id="credit"><a href="http://dislikes.tumblr.com/">credit</a></div>
  846. </html>
Advertisement
Add Comment
Please, Sign In to add comment