Advertisement
misslinds

Steve Old

May 24th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.52 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head><title>{Title}</title>
  6. <script type="text/javascript"
  7. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  8. <script>
  9. $(document).ready(function() {
  10. //
  11. $('a.poplight[href^=#]').click(function() {
  12. var popID = $(this).attr('rel'); //Get Popup Name
  13. var popURL = $(this).attr('href'); //Get Popup href to define size
  14. var query= popURL.split('?');
  15. var dim= query[1].split('&');
  16. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  17. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"> <class="btn_close" title="Close" alt="Close" /></a>');
  18. var popMargTop = ($('#' + popID).height() + 80) / 2;
  19. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  20. //Apply Margin to Popup
  21. $('#' + popID).css({
  22. 'margin-top' : -popMargTop,
  23. 'margin-left' : -popMargLeft
  24. });
  25. $('body').append('<div id="fade"></div>');
  26. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  27. return false;
  28. });
  29. $('a.close, #fade').live('click', function() {
  30. $('#fade , .popup_block').fadeOut(function() {
  31. $('#fade, a.close').remove(); //fade them both out
  32. });
  33. return false;
  34. });
  35. });
  36. </script>
  37. <link rel="shortcut icon" href="{Favicon}">
  38. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  39. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  40.  
  41. <!---- this is theme 48 by Hollywhood
  42. please don't remove the credit
  43. thank you
  44. --->
  45.  
  46. <meta name="color:Background" content="#ffffff"/>
  47. <meta name="image:Background" content=""/>
  48. <meta name="color:Text" content="#9B9B9B"/>
  49. <meta name="color:Link" content="#b8b8b8"/>
  50. <meta name="color:Link Hover" content="#eeeeee"/>
  51. <meta name="color:border" content="#DDDDDD"/>
  52. <meta name="color:scrollbar" content="#999999">
  53. <meta name="color:title" content="#888888">
  54. <meta name="color:title background" content="#f7f7f7">
  55.  
  56. <meta name="image:sidebar" content=""/>
  57. <meta name="text:sidebartitle" content="">
  58.  
  59. <meta name="text:link 1" content="Link 1"/>
  60. <meta name="text:link 1 url" content="/"/>
  61. <meta name="text:link 2" content="Link 2"/>
  62. <meta name="text:link 2 url" content="/"/>
  63. <meta name="text:link 3" content="Link 3"/>
  64. <meta name="text:link 3 url" content="/"/>
  65. <meta name="text:link 4" content="Link 4"/>
  66. <meta name="text:link 4 url" content="/"/>
  67. <meta name="text:link 5" content="Link 5"/>
  68. <meta name="text:link 5 url" content="/"/>
  69.  
  70. <style type="text/css">
  71. *, body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), auto;}
  72. #fade { /*--Transparent background layer--*/
  73. display: none; /*--hidden by default--*/
  74. background: #000;
  75. position: fixed; left: 100; top: 0;
  76. width: 100%; height: 100%;
  77. opacity: .80;
  78. z-index: 9999;
  79. }
  80. .popup_block{
  81. display: none; /*--hidden by default--*/
  82. background: #white;
  83. padding: 10px;
  84. float: left;
  85. font-size: 10;
  86. position: fixed;
  87. top: 50%; left: 50%;
  88. z-index: 99999;
  89. /*--CSS3 Box Shadows--*/
  90. -webkit-box-shadow: 0px 0px 20px #000;
  91. -moz-box-shadow: 0px 0px 20px #000;
  92. box-shadow: 0px 0px 20px #000;
  93. }
  94. img.btn_close {
  95. float: right;
  96. margin: -20 -20px 0 0;
  97. }
  98. /*--Making IE6 Understand Fixed Positioning--*/
  99. *html #fade {
  100. position: absolute;
  101. }
  102. *html .popup_block {
  103. position: absolute;
  104. }
  105.  
  106. #birdthingie {
  107. text-align: center;
  108. font-size:10px;
  109. font-family:times;
  110. color:white;
  111. position:fixed;
  112. right:20px;
  113. bottom:100px;
  114. -webkit-transition: all .7s ease-in-out;
  115. -moz-transition: all .7s ease-in-out;
  116. -o-transition: all .7s ease-in-out;
  117. z-index:999;
  118. opacity:1;
  119. background:{color:background};
  120. }
  121.  
  122. #birdthingie:hover #singthingie{
  123. bottom:100px;
  124. opacity:1;
  125. }
  126.  
  127. #singthingie {
  128. padding: 5px 0 5px 0;
  129. background:{color:background};
  130. width:100px;
  131. height:auto;
  132. z-index: 9999;
  133. opacity:0;
  134. -webkit-transition:opacity 0.8s linear;
  135. -webkit-transition:all 0.5s ease-out;
  136. -moz-transition:all 0.5s ease-out;
  137. transition: all 0.5s ease-out;
  138. }
  139.  
  140. #thepic img{
  141. width:70px;
  142. bottom: 10px;
  143. right: 50px;
  144. position:fixed;
  145. z-index:;
  146. }
  147.  
  148.  
  149.  
  150. /* PUT THIS BETWEEN < style type="text/css"> AND < /style> */
  151.  
  152. #updatestab {
  153. /* UPDATES TAB BY: MARIESTHEMES.TUMBLR.COM
  154. DO NOT REMOVE THIS CREDIT, EDIT AS MUCH AS YOU LIKE */
  155. height:15px;
  156. width:114px;
  157. left:0px;
  158. top:10px;
  159. z-index:999999;
  160. position:fixed;}
  161. #updatestab:hover {
  162. height:auto;}
  163.  
  164. .updatescontent {
  165. width:110px;
  166. height:auto;
  167. margin-left:-110px;
  168. padding:10px 5px 14px 5px;
  169. font-size:8px; /* CHANGE THE FONT SIZE */
  170. letter-spacing:1px; /* CHENGE THE LETTER SPACING*/
  171. font-family:times; /* CHANGE THE FONT */
  172. line-height:1.15; /* CHAGE THE LINE HEIGHT */
  173. text-transform:lowercase; /* UPPERCASE OR LOWERCASE */
  174. color:#80817c; /* TEXT COLOR */
  175.  
  176. text-align:center;
  177. background-color:#black;
  178. -webkit-transition:all 0.6s ease-out;
  179. -moz-transition:all 0.6s ease-out;
  180. transition:all 0.6s ease-out;}
  181. #updatestab:hover .updatescontent {
  182. margin-left:4px;
  183. -webkit-transition:all 0.6s ease-out;
  184. -moz-transition:all 0.6s ease-out;
  185. transition:all 0.6s ease-out;}
  186.  
  187. .updatesheadline {
  188. padding:3px 5px;
  189. font-size:20px; /* CHANGE THE TITLE FONT SIZE */
  190. letter-spacing:1px; /* CHENGE THE TITLE LETTER SPACING*/
  191. font-family:times; /* CHANGE THE TITLE FONT */
  192. text-transform:lowercase; /* TITLE UPPERCASE OR LOWERCASE */
  193. color:#c0b388; /* UN-HOVER TITLE TEXT COLOR */
  194. background-color:#black; /* UN-HOVER TITLE BACKGROUND COLOR */
  195. -webkit-transition:all 0.7s ease-out;
  196. -moz-transition:all 0.7s ease-out;
  197. transition:all 0.7 ease-out;}
  198. #updatestab:hover .updatesheadline {
  199.  
  200. color:#dbdbdb; /* HOVER TITLE TEXT COLOR */
  201. background-color:#black; /* HOVER TITLE BACKGROUND COLOR */
  202. border-left:4px solid #black; /* HOVER TITLE BORDER COLOR */
  203. -webkit-transition:all 0.4s ease-out;
  204. -moz-transition:all 0.4s ease-out;
  205. transition:all 0.4s ease-out;}
  206.  
  207. .big { /* YOU DON'T HAVE TO USE THESE IF YOU DON'T WANT TO */
  208. font-size:7px;
  209. letter-spacing:1px;
  210. font-family:times;
  211. line-height:1.15;
  212. text-transform:uppercase;}
  213.  
  214. .bodytext { /* YOU DON'T HAVE TO USE THESE IF YOU DON'T WANT TO */
  215. font-family:times;
  216. font-size:8px;
  217. letter-spacing:1px;
  218. text-transform:none;
  219. text-align:justify;
  220. line-height:1.15;}
  221.  
  222.  
  223. ::-webkit-scrollbar-thumb{
  224. background-color: {color:scrollbar};
  225. border: 2px solid {color:background};
  226. height:auto;
  227. }
  228.  
  229. ::-webkit-scrollbar {
  230. height:auto;
  231. width:11px;
  232. background-color: {color:scrollbar};
  233. border:5px solid {color:background};
  234. }
  235.  
  236.  
  237. iframe#tumblr_controls {
  238. white-space:nowrap;
  239. -webkit-filter: invert(100%);
  240. -moz-filter: invert(100%);
  241. -o-filter: invert(100%);
  242. -ms-filter: invert(100%);
  243. filter: invert(100%);
  244. opacity:.2;transition: .8s ease-in-out;
  245. -webkit-transition: .8s ease-in-out;
  246. -moz-transition: .8s ease-in-out;
  247. -o-transition: .8s ease-in-out;
  248. }
  249.  
  250. h1 {
  251. font-weight:normal;
  252. font-size:13px;
  253. text-align:center;
  254. font-style:normal;
  255. line-height:100%;
  256. letter-spacing:1px;
  257. text-transform:normal;
  258. color:{color:text};
  259. }
  260.  
  261. h2 {
  262. font-size:10px;
  263. text-align:center;
  264. line-height:100%;
  265. letter-spacing:-0.5px;
  266. color:{color:text};
  267. font-weight:bold;
  268. text-transform:uppercase;
  269. padding:5px;
  270. padding-bottom:2px;
  271. }
  272.  
  273.  
  274. blockquote {
  275. border-left:1px dotted #ccc;
  276. padding:12px;
  277. margin:10px 2px 0px 10px
  278. background-color:#fafafa;
  279. }
  280.  
  281. body {
  282. background:{color:background};
  283. background-image:url({image:Background});
  284. background-attachment: fixed;
  285. background-repeat: no-repeat;
  286. background-position:top left;
  287. margin:0px;
  288. color:{color:text};
  289. font-family:cambria;
  290. font-size:10px;
  291. line-height:100%;
  292. }
  293.  
  294. a {
  295. text-decoration:none;
  296. outline:none;
  297. -moz-outline-style:none;
  298. color:{color:link};
  299. -moz-transition-duration:0.5s;
  300. -webkit-transition-duration:0.5s;
  301. -o-transition-duration:0.5s;
  302. }
  303.  
  304. a:hover {
  305. outline:none;
  306. -moz-outline-style:none;
  307. color:{color:link hover};
  308.  
  309. }
  310.  
  311. a: visited {
  312. outline: none;
  313. -moz-outline-style:none;
  314. color: color:#f0c9c2;
  315.  
  316. }
  317.  
  318. img {
  319. border:none;
  320. }
  321.  
  322.  
  323.  
  324.  
  325. #post {
  326. width:370px;
  327. margin-bottom:40px;
  328. margin-left:20px;
  329. padding:10px;
  330. }
  331.  
  332. #entries {
  333. position:center;
  334. height:280px;
  335. overflow-x:hidden;
  336. overflow-y:auto;
  337. width:450px;
  338. text-align:justify;
  339. padding:20px;
  340. border:1px dotted #c8bc8f;
  341. background-color:#fff;
  342. margin-top:295px;
  343. z-index:999;
  344. margin-left:-20px;
  345. }
  346.  
  347.  
  348.  
  349.  
  350. #theme {
  351. width:500px;
  352. margin:0 auto -12px auto;
  353. }
  354.  
  355.  
  356.  
  357. #links {
  358. font-family:calibri;
  359. width:330px;
  360. margin-top:7px;
  361. margin-left: 235px;
  362. letter-spacing:0px;
  363. font-size:9px5
  364. text-transform: uppercase;
  365. text-align:center;
  366. line-height:280%;
  367. }
  368.  
  369. #links a{
  370. line-height:280%;
  371. margin-top:4px;
  372. margin-left:8px;
  373. margin-right:8px;
  374. color:{color:link};
  375. text-decoration:none;
  376. -moz-transition-duration:.2s;
  377. -webkit-transition-duration:.2s;
  378. -o-transition-duration:.2s;
  379. }
  380.  
  381. #links a:hover {
  382. text-shadow: 0 0 10px #black;
  383. color: transparent;
  384. text-decoration:none;
  385.  
  386.  
  387.  
  388.  
  389. -moz-transition-duration:0.2s;
  390. -webkit-transition-duration:0.2s;
  391. -o-transition-duration:0.2s;
  392. }
  393.  
  394.  
  395. .sidebartitle {
  396. position:fixed;
  397. width:1613px;
  398. background:{color:title background};
  399. text-shadow:2px 2px 0px #fff;
  400. text-align:center;
  401. font-family: 'Bodoni MT Condensed';
  402. line-height:260%;
  403. margin-left:-715px;
  404. border-bottom:4px solid {color:background};
  405. word-spacing:10px;
  406. letter-spacing:1px;
  407. font-style:italic;
  408. font-size:32px;
  409. z-index:999;
  410. margin-top:-195px;
  411. }
  412.  
  413. .sidebartitle a{
  414. color:{color:title};
  415. }
  416.  
  417. .sidebartitle a:hover{
  418. color:{color:link hover};
  419. }
  420.  
  421. #pagination {
  422. font-family:times;
  423. width:250px;
  424. font-size:40px;
  425. margin-top:25px;
  426. margin-left:-8px;
  427. padding-left:5px;
  428. letter-spacing:1px;
  429. text-align:center;
  430. text-transform:lowercase;
  431. }
  432.  
  433. #pagination a {
  434. color:{color:link};
  435. }
  436.  
  437. #info {
  438. font-family:cambria;
  439. width:250px;
  440. margin-top:10px;
  441. padding-top:7px;
  442. font-size:8px;
  443. border-top:1px solid {color:border};
  444. color:{color:text};
  445. text-transform:uppercase;
  446. letter-spacing:1px;
  447. font-style:normal;
  448. text-align:left;
  449. -moz-transition-duration:0.2s;
  450. -webkit-transition-duration:0.2s;
  451. -o-transition-duration:0.2s;
  452. }
  453.  
  454. #info a {
  455. color:{color:link};
  456. font-style:normal;
  457. }
  458.  
  459. #info a:hover {
  460. color:{color:link hover};
  461. -moz-transition-duration:0.2s;
  462. -webkit-transition-duration:0.2s;
  463. -o-transition-duration:0.2s;
  464. }
  465.  
  466. .tags {
  467. font-family:cambria;
  468. font-style:normal;
  469. width:250px;
  470. text-transform:normal;
  471. font-style:normal;
  472. line-height:120%;
  473. padding-top:2px;
  474. font-size:8px;
  475. opacity:0;
  476. text-align:left;
  477. -moz-transition-duration:0.5s;
  478. -webkit-transition-duration:0.5s;
  479. -o-transition-duration:0.5s;
  480. }
  481. .tags a{
  482. color:{color:link};
  483. -moz-transition-duration:0.2s;
  484. -webkit-transition-duration:0.2s;
  485. -o-transition-duration:0.2s;
  486. }
  487. .tags a:hover{
  488. color:{color:link hover};
  489. -moz-transition-duration:0.2s;
  490. -webkit-transition-duration:0.2s;
  491. -o-transition-duration:0.2s;
  492. }
  493.  
  494. #post:hover .tags{
  495. opacity:1;
  496. -moz-transition-duration:0.5s;
  497. -webkit-transition-duration:0.5s;
  498. -o-transition-duration:0.5s;
  499. }
  500.  
  501. .audio{
  502. background-color:#e5e5e5;
  503. height:65px;
  504. overflow:hidden;
  505. }
  506.  
  507. #ask {
  508. float:left;
  509. color:{color:text};
  510. }
  511.  
  512. #credit {
  513. font-size:9px;
  514. font-family:cambria;
  515. font-style:italic;
  516. letter-spacing:1px;
  517. -moz-transition-duration:0.5s;
  518. -webkit-transition-duration:0.5s;
  519. -o-transition-duration:0.5s;
  520. }
  521.  
  522. #credit a {
  523. background-color:#fff;
  524. padding:5px;
  525. border:1px solid #e9e9e9;
  526. position:fixed;
  527. right:15px;
  528. bottom:10px
  529. }
  530.  
  531. #credit a:hover {
  532. color:#fff;
  533. background-color:#191919;
  534. }
  535.  
  536.  
  537.  
  538.  
  539. /************** FLAGS UPDATES TAB **************/
  540. /* tutorial by deanlirium|tumblr (clarence.tk) */
  541.  
  542. #flags {
  543. position:fixed;
  544. top:340px; /* distance from the top of the page - adjust as you wish! */
  545. right:953px;
  546. text-align:center;
  547. text-transform;lowrecase /* the text is in all caps - delete this line and it won't be */
  548. color:#505050; /* change text color: use sites like http://www.colorpicker.com/ or the tumblr thing, copy the code it gives you and paste it! remember the #! */
  549. font-size:9px; /* adjust font size */
  550. letter-spacing:1px;
  551. z-index:2147483607;
  552. font-family:times;
  553.  
  554. }
  555.  
  556. #flag1 {
  557. border:solid 6px #632320; /* flag color */
  558. border-left:solid 6px transparent; /* IMPORTANT! -- to make the flag thicker increase the border and border-right value; it looks better if they both have the same number! */
  559. padding-right:10px;
  560. right:00px;
  561. width:40px; /* increase or decrease to change the lenght of the CLOSED flag */
  562. height:0px;
  563. position:absolute;
  564. -moz-transition:all 0.7s ease-out;
  565. -webkit-transition:all 0.7s ease-out;
  566. -o-transition:all 0.7s ease-out;}
  567.  
  568. #flag1:hover {
  569. width:180px;} /* lenght of the OPEN flag */
  570.  
  571. #upd1 {
  572. position:absolute;
  573. width:110px;
  574. padding:10px;
  575. padding-right:60px; /* adjust this if you've changed the length of the open flag, subtract what you add here to the 'left' value below */
  576. right:-180px;
  577. margin-top:6px; /* keep this number equal to the 'border' value for the flag */
  578. opacity:0;
  579. -moz-transition:all 0.7s ease-out;
  580. -webkit-transition:all 0.7s ease-out;
  581. -o-transition:all 0.7s ease-out;}
  582.  
  583. #flag1:hover #upd1{
  584. right:0px;
  585. opacity:1;}
  586.  
  587. /* following is the coding for the other flags - same as above! */
  588.  
  589. #flag2 {
  590. border:solid 6px #313657;
  591. margin-top:20px;
  592. position:absolute;
  593. border-left:solid 6px transparent;
  594. padding-right:10px;
  595. right:00px;
  596. width:30px;
  597. height:0px;
  598. -moz-transition:all 0.7s ease-out;
  599. -webkit-transition:all 0.7s ease-out;
  600. -o-transition:all 0.7s ease-out;}
  601.  
  602. #flag2:hover {
  603. width:180px;}
  604.  
  605. #upd2 {
  606. position:absolute;
  607. width:110px;
  608. padding:10px;
  609. padding-right:60px;
  610. right:-180px;
  611. margin-top:6px;
  612. opacity:0;
  613. -moz-transition:all 0.7s ease-out;
  614. -webkit-transition:all 0.7s ease-out;
  615. -o-transition:all 0.7s ease-out;}
  616.  
  617. #flag2:hover #upd2{
  618. right:0px;
  619. opacity:1;}
  620.  
  621. /*if you want more flags, just copy the part of the code below and change the numbers - then increase the margin-top value for the #flag(number) adding 20px each new flag! copy from here: */
  622.  
  623. #flag3 {
  624. border:solid 6px #fff;
  625. position:absolute;
  626. margin-top:40px; /* this one! */
  627. border-left:solid 6px transparent;
  628. padding-right:10px;
  629. right:0px;
  630. width:20px;
  631. height:0px;
  632. -moz-transition:all 0.7s ease-out;
  633. -webkit-transition:all 0.7s ease-out;
  634. -o-transition:all 0.7s ease-out;}
  635.  
  636. #flag3:hover {
  637. width:180px;}
  638.  
  639. #upd3 {
  640. position:absolute;
  641. width:110px;
  642. padding:10px;
  643. padding-right:60px;
  644. right:-180px;
  645. margin-top:6px;
  646. opacity:0;
  647. -moz-transition:all 0.7s ease-out;
  648. -webkit-transition:all 0.7s ease-out;
  649. -o-transition:all 0.7s ease-out;}
  650.  
  651. #flag3:hover #upd3{
  652. right:0px;
  653. opacity:1;}
  654.  
  655. /* to here */
  656.  
  657.  
  658.  
  659.  
  660. {CustomCSS}</style></head><body>
  661.  
  662.  
  663. <div id="flags">
  664. <div id="flag1"><div id="upd1">
  665.  
  666. <center><div style="font-size: 10px; letter-spacing: 1px;"><a href="/index" title="home"><font color="#ce8478">▲</font></a>&nbsp;&nbsp; <a href="/ask" title="ask"><font color="#ce8478">▲</font></a>&nbsp;&nbsp; <a href="/about" title="read!"><font color="#ce8478">▲</font></a></div></center>
  667.  
  668. <p><small>roleplay blog for <u>mcu's</u></small><br><big><b><i>captain america</big></i></b></i></b><p><small>this blog <i>is</i> selective.</small> </p>
  669.  
  670. <p>
  671. <center><script language="JavaScript">
  672. var ref = (''+document.referrer+'');
  673. var w_h = window.screen.width + " x " + window.screen.height;
  674. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID4655962&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  675. </script> | <script language="JavaScript" src="http://freehostedscripts.net/ocount.php?site=ID2805548&name="></script>
  676. </center>
  677.  
  678. </div></div>
  679.  
  680. <div id="flag2"><div id="upd2">
  681.  
  682. <font style="text-transform: lowercase;">
  683. currently writing: <br><big><b><i>drafts & memes</i></b></big>
  684. <p>
  685. <small>writes with a variety of fandoms && is multi-verse friendly (pre and post serum steve included), please read my rules prior to interacting <i>!</i></i></small>
  686. </div></div>
  687.  
  688. <!---- if you want more flags, copy from here ---->
  689.  
  690. <div id="flag3"><div id="upd3">
  691.  
  692. here for the third one
  693.  
  694. </div></div>
  695.  
  696. <!---- to here and change the numbers according to your css! ---->
  697.  
  698. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  699.  
  700. </div>
  701.  
  702. <div id="birdthingie"><center>
  703. <div id="thepic"><img src=""></div>
  704. <div id="singthingie">
  705. <p>passion. sympathy. <I>courage</I> --- you are the acolyte for the weak. soldier in a <u>spangled</u> crown. uwanted <big><b><i>glories</i></b></big> && <i>frozen</i> memories. a man <s>out of time</s>
  706. <img src="https://31.media.tumblr.com/cea68a8e292bff3fb8cda395a71b375d/tumblr_inline_narqehEX6U1suxiiv.png"><br>
  707.  
  708.  
  709. </div></div>
  710.  
  711.  
  712.  
  713.  
  714. <div id="theme">
  715.  
  716. <div id="sidebar">
  717.  
  718. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  719.  
  720. <div class="sidebartitle"><a href="/">{text:sidebartitle}</a></div>
  721.  
  722. <div id="description">{description}</div>
  723.  
  724.  
  725. </div>
  726.  
  727. <div id="entries">{block:Posts}<div id="post">
  728.  
  729. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  730.  
  731. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  732.  
  733. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  734.  
  735. {block:Quote}<center><big><big>"{Quote}"</big></big></center>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  736.  
  737. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  738.  
  739. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  740.  
  741. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  742.  
  743. {block:Video}{Video-300}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  744.  
  745. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  746.  
  747. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  748. {/block:Date} &nbsp;({24Hour}:{Minutes})&nbsp; {block:NoteCount}&nbsp; ( <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  749.  
  750. <br>{block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} & <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} </br>
  751. </div>
  752.  
  753.  
  754. {block:HasTags}
  755. <div class="tags">
  756. {block:Tags} <a href="{TagURL}"> <big>#</big> {Tag} &nbsp; </a> {/block:Tags}</div>
  757. {/block:HasTags}
  758. <div class="postnote">
  759. {block:PostNotes}{PostNotes}{/block:PostNotes}
  760. </div>
  761. </div>
  762. {/block:Posts}
  763.  
  764. <div id="pagination">
  765. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&nbsp;&nbsp;&nbsp; -</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">+&nbsp;&nbsp;&nbsp; </a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  766.  
  767. </div>
  768.  
  769. </body>
  770. <div id="02" class="popup_block">
  771.  
  772. <Center><iframe frameborder="0" scrolling="yes" width="100%" height="150" src="http://www.tumblr.com/ask_form/{name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  773. </center></div>
  774.  
  775. </div></div></div></div></div></div></div></div></div></div>
  776. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement