Advertisement
flyawayfromzayn

Theme #10- Old Times by Hayley

May 12th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.44 KB | None | 0 0
  1. <DOCTYPE html>
  2. <html>
  3. <!--Theme by flyawayfromzayn.tumblr.com-->
  4. <!--If you steal this and i find out about it you will have a few less limbs, if i put it nicely. Have a good day and enjoy my theme:) -->
  5. <!--If you have any questions about my theme or HTML in general i can help you:)-->
  6. <head>
  7. <!--this makes stuff like infinite scrolling work-->
  8. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  9. <script type="text/javascript">//** jQuery Scroll to Top Control script- (c) I made this script myself (Kyle Monk) and it is hosted on my personal site so would appreciate if you followed my blog at kylemonk.tumblr.com if you use it or for details on how to change the location.
  10. //** Graphic originally from tumbler dashboard, for details on how to change graphic colour, contact me at kylemonk.tumblr.com
  11. //** v1.1 (April 7th, 10'):
  12. //** 1) Adds ability to scroll to an absolute position (from top of page) or specific element on the page instead.
  13. //** 2) Fixes scroll animation not working in Opera.
  14.  
  15.  
  16. var scrolltotop={
  17. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  18. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
  19. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  20. controlHTML: '<img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQfH7VkEdytASyPxjEeCf_skBrxHhdeJna-3YIlGWGtu6j2xEPh" style="filter:alpha(opacity=70); -moz-opacity:0.7;" width="100"/>', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  21. controlattrs: {offsetx:35, offsety:60}, //offset of control relative to right/ bottom of window corner
  22. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  23.  
  24. state: {isvisible:false, shouldvisible:false},
  25.  
  26. scrollup:function(){
  27. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  28. this.$control.css({opacity:0}) //hide control immediately after clicking it
  29. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  30. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  31. dest=jQuery('#'+dest).offset().top
  32. else
  33. dest=0
  34. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  35. },
  36.  
  37. keepfixed:function(){
  38. var $window=jQuery(window)
  39. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  40. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  41. this.$control.css({left:controlx+'px', top:controly+'px'})
  42. },
  43.  
  44. togglecontrol:function(){
  45. var scrolltop=jQuery(window).scrollTop()
  46. if (!this.cssfixedsupport)
  47. this.keepfixed()
  48. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  49. if (this.state.shouldvisible && !this.state.isvisible){
  50. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  51. this.state.isvisible=true
  52. }
  53. else if (this.state.shouldvisible==false && this.state.isvisible){
  54. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  55. this.state.isvisible=false
  56. }
  57. },
  58.  
  59. init:function(){
  60. jQuery(document).ready(function($){
  61. var mainobj=scrolltotop
  62. var iebrws=document.all
  63. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  64. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  65. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  66. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  67. .attr({title:'back to top'})
  68. .click(function(){mainobj.scrollup(); return false})
  69. .appendTo('body')
  70. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  71. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  72. mainobj.togglecontrol()
  73. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  74. mainobj.scrollup()
  75. return false
  76. })
  77. $(window).bind('scroll resize', function(e){
  78. mainobj.togglecontrol()
  79. })
  80. })
  81. }
  82. }
  83.  
  84. scrolltotop.init()</script>
  85. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script>
  86. <title>{Title}</title>
  87. <link rel="shortcut icon" href="{Favicon}">
  88. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  89. {block:Description}
  90. <meta name="description" content="{MetaDecription}">
  91. {/block:Description}
  92. <!--These are the presets. They are what makes things show up on the page it first goes to when you go to customize. -->
  93. <meta name="color:Background" content="#ffffff">
  94. <meta name="color:Text" content="#000000">
  95. <meta name="image:sidebar img" content="">
  96. <meta name="text:Link1URL" content="/">
  97. <meta name="text:Link1Title" content="/">
  98. <meta name="text:Link2URL" content="/">
  99. <meta name="text:Link2Title" content="/">
  100. <meta name="text:Link3URL" content="/">
  101. <meta name="text:Link3Title" content="/">
  102. <meta name="text:Link4URL" content="/">
  103. <meta name="text:Link4Title" content="/">
  104. <meta name="text:Link5URL" content="/">
  105. <meta name="text:Link5Title" content="/">
  106. <meta name="text:Link6URL" content="/">
  107. <meta name="text:Link6Title" content="/">
  108. <meta name="text:Link7URL" content="/">
  109. <meta name="text:Link7Title" content="/">
  110. <meta name="color:Links" content="">
  111. <meta name="text:bigletter" content="Put your name here">
  112. <meta name="color:first letter background" content="#dadada"/>
  113. <meta name="text:Updates" content="These are your updates. There is a scroll bar, so it wont get too long.">
  114. <meta name="if:lampeffect" content="0">
  115. <meta name="if:updatestab" content="0">
  116. <meta name="if:movingtitle" content="0">
  117. <meta name="if:rightclick" content="0">
  118.  
  119. {block:ifrightclick}
  120. <script language=JavaScript>
  121. <!--//Disable right click script III- By Renigade (renigade@mediaone.net)
  122. //For full source code, visit http://www.dynamicdrive.com
  123.  
  124. var message="";
  125. ///////////////////////////////////
  126. function clickIE() {if (document.all) {(message);return false;}}
  127. function clickNS(e) {if
  128. (document.layers||(document.getElementById&&!document.all)) {
  129. if (e.which==2||e.which==3) {(message);return false;}}}
  130. if (document.layers)
  131. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  132. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  133.  
  134. document.oncontextmenu=new Function("return false")
  135. // -->
  136. </script>
  137.  
  138.  
  139. <script type="text/javascript">
  140.  
  141. /***********************************************
  142. * Disable select-text script- © Dynamic Drive (www.dynamicdrive.com)
  143. * This notice MUST stay intact for legal use
  144. * Visit http://www.dynamicdrive.com/ for full source code
  145. ***********************************************/
  146.  
  147. //form tags to omit in NS6+:
  148. var omitformtags=["input", "textarea", "select"]
  149. omitformtags=omitformtags.join("|")
  150. function disableselect(e){
  151. if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
  152. return false
  153. }
  154. function reEnable(){
  155. return true
  156. }
  157. if (typeof document.onselectstart!="undefined")
  158. document.onselectstart=new Function ("return false")
  159. else{
  160. document.onmousedown=disableselect
  161. document.onmouseup=reEnable
  162. }
  163. </script>
  164. {/block:ifrightclick}
  165.  
  166. <!--this is what the web page goes through to know where and how to show up-->
  167.  
  168. <style type="text/css">
  169.  
  170. #ocehans {
  171. position:fixed;
  172. text-align:center;
  173. font-size: 10px;
  174. opacity: .5;
  175. right:0px;
  176. opacity: 1;
  177. background-color:#888888;
  178. width:65px;
  179. height:auto;
  180. margin-top:35px;
  181. opacity: 1;
  182. padding:5px;
  183. border: 1px solid #eee;
  184. right:965px;
  185. font-size:8px;
  186. font-family:consolas;
  187. text-transform:uppercase;
  188. line-height:9px;
  189. letter-spacing:1px;
  190. overflow:hidden;
  191. z-index:999;
  192. -moz-border-radius:3px;
  193. border-radius:9px;
  194. color:#fff;
  195. overflow:scroll;
  196. max-height:100px;
  197. max-width:70px;
  198.  
  199.  
  200. }
  201. }
  202. #ocehans2 {
  203. height:10px;
  204. width:55px;
  205. background-color: auto;
  206. z-index: 99;
  207.  
  208. }
  209. ::-webkit-scrollbar-thumb:vertical {border:1px solid #fff;height:12px; background-color:#838282;border-radius:9px}
  210. ::-webkit-scrollbar {background-color:#838282;height:7px;width:12px;border:5px solid #fff;border-radius:9px;}
  211. img{
  212. -webkit-filter: grayscale(100%);
  213. -webkit-transition-duration: 0.8s;
  214. -moz-transition-duration: 0.8s;
  215. -o-transition-duration: 0.8s;
  216. -ms-transition-duration: 0.8s;
  217. }
  218.  
  219. img:hover{
  220. -webkit-filter: grayscale(0%);
  221. -webkit-transition-duration: 0.8s;
  222. -moz-transition-duration: 0.8s;
  223. -o-transition-duration: 0.8s;
  224. -ms-transition-duration: 0.8s;
  225. z-index: 2px;
  226. }
  227. #bigletter {
  228. color: white;
  229. font-size: 16px;
  230. text-transform:uppercase;
  231. float: center;
  232. margin-right:4px;
  233. padding: 3px;
  234. background: {color:first letter background};}
  235. body {
  236. background:{color:Background};
  237. font-family:{font:Body};
  238. font-size:11px;
  239. color:{color:Text};
  240. text-transform:none;
  241. }
  242.  
  243. a {
  244. text-decoration:none;
  245. color:#484848;
  246. margin:2px;
  247. }
  248.  
  249. a:link, a:active, a:visited {
  250. text-decoration: none;
  251. color: {color:Link};
  252. -moz-transition-duration:1s;
  253. -webkit-tran
  254. sition-duration:1s;
  255. -o-transition-duration:1s;
  256. }
  257.  
  258. a:hover {
  259. text-decoration:line-through;
  260. color:#303030;
  261. -moz-transition-duration:1s;
  262. -webkit-tran
  263. sition-duration:1s;
  264. -o-transition-duration:1s;
  265. transform: rotate(45deg);
  266. -ms-transform: rotate(350deg);
  267. -webkit-transform: rotate(350deg);
  268. -o-transform: rotate(350deg);
  269. -moz-transform: rotate(350deg);
  270. }
  271.  
  272. h1 {
  273. font-family:Ariel;
  274. text-align:center;
  275. text-transform:uppercase
  276. }
  277. h2 {
  278. font-family:{font:Body}
  279. text-align:center;
  280. text-transform:lowercase;
  281. }
  282. #question {
  283. font-family: calibri;
  284. font-size: 9.25px;
  285. text-align: left;
  286. border: 1.5px dotted {color:border};
  287. padding: 5px;
  288. }
  289.  
  290. #answer {
  291. font-size: 9.25px;
  292. margin-top: 5px;
  293. }
  294.  
  295. blockquote {
  296. margin: 10px 2px 10px 10px;
  297. border-left: 4px solid {color:border};
  298. padding-left: 3px;
  299. }
  300.  
  301. blockquote img, blockquote a img {
  302. max-width: 490px;
  303. }
  304.  
  305. p {
  306. margin-top: 5px;
  307. margin-bottom: 10px;
  308. }
  309.  
  310. img a{
  311. border: none;
  312. }
  313.  
  314. img a:hover {
  315. opacity: 1;
  316. }
  317.  
  318. .audio{
  319. background-color: black;
  320. display: block;
  321. }
  322.  
  323.  
  324. .notes img{
  325. width: 10px;
  326. position: relative;
  327. top: 1px;
  328. }
  329.  
  330. ol.notes, .notes li{
  331. list-style: none;
  332. margin: 0px;
  333. padding: 0px;
  334. }
  335. #title {
  336. position:fixed;
  337. margin-top:0px;
  338. height:60px;
  339. width:100%;
  340. font-size:20px;
  341. text-align:center;
  342. font-weight:normal;
  343. background:{color:first letter background};
  344. color:#ffffff;
  345. float:center;
  346. font:{font:title};
  347. -moz-transition-duration:1s;
  348. -webkit-tran
  349. sition-duration:1s;
  350. -o-transition-duration:1s;
  351. }
  352. #sidebar {
  353. position:fixed;
  354. height:100%;
  355. width:200px;
  356. padding:8px;
  357. }
  358. #sidebar img {
  359. height:350px;
  360. width:175px;
  361. border-top:300px;
  362. padding:10px;
  363. border-radius:100px
  364. }
  365.  
  366. #sidebar img:hover {
  367. height:350px;
  368. width:175px;
  369. border-top:300px;
  370. padding:10px;
  371. border-radius:100px
  372. transform: rotate(400deg);
  373. -ms-transform: rotate(400deg);
  374. -webkit-transform: rotate(400deg);
  375. -o-transform: rotate(400deg);
  376. -moz-transform: rotate(400deg);
  377. }
  378. #description {
  379.  
  380. overflow:scroll;
  381. max-height:100px;
  382. max-width:250px;
  383. text-align:center;
  384. font-size:12px;
  385. }
  386.  
  387. #pagination {
  388. position: fixed;
  389. display: block;
  390. top: 48%;
  391. font-size: 20px;
  392. font-family: cambria;
  393. left: 355px;
  394. width: 71px;
  395. text-align: center;
  396. margin-top: -25px;
  397. opacity: .8;
  398. color: black;
  399. }
  400.  
  401. #links {
  402. text-align:center;
  403. position:fixed;
  404. margin-top:50px;
  405. margin-left:245px;
  406. padding:3px;
  407. color:#ffffff;
  408.  
  409. }
  410.  
  411.  
  412. #links a{
  413. display:block;
  414. background:#202020;
  415. padding:5px;
  416. color:#c8c8c8;
  417. --moz-transition-duration:1s;
  418. -webkit-tran
  419. sition-duration:1s;
  420. -o-transition-duration:1s;
  421.  
  422. }
  423.  
  424. #links a:hover{
  425. color:{color:Background};
  426. background:#303030;
  427. -moz-transition-duration:1s;
  428. -webkit-tran
  429. sition-duration:1s;
  430. -o-transition-duration:1s;
  431.  
  432. }
  433.  
  434.  
  435. #entries {
  436. font-size:10px;
  437. margin-left: 390px;
  438. margin-top:40px;
  439. float: center;
  440. text-align: justify;
  441. }
  442.  
  443. #post {
  444. font-size:14px;
  445. padding: 5px;
  446. margin-top:70px;
  447. margin-left:421px;
  448. width: 500px;
  449. height:800px;
  450. color:{color:Body};
  451. text-align: center;
  452. overflow:hidden;
  453. float:center;
  454. }
  455.  
  456. #info {
  457. padding: 5px;
  458. border-top:1px solid black;
  459. }
  460.  
  461.  
  462. #credit a{
  463. position:fixed;
  464. right:3px;
  465. bottom:3px;
  466. padding:4px;
  467. background:white;
  468. font-size:11px;
  469. color:black;
  470. -moz-transition-duration:1s;
  471. -webkit-tran
  472. sition-duration:1s;
  473. -o-transition-duration:1s;
  474. }
  475.  
  476. #credit a:hover {
  477. opacity:1;
  478. color:white;
  479. background:black;
  480. -moz-transition-duration:1s;
  481. -webkit-transition-duration:1s;
  482. -o-transition-duration:1s;
  483. }
  484.  
  485. </style>
  486. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  487. {block:ifmovingtitle}
  488. <!--------------- TYPING/MOVING TITLE ----------------------->
  489.  
  490. <script type="text/javascript">
  491. var rev = "fwd";
  492. function titlebar(val)
  493. {
  494. var msg = "{Title}";
  495. var res = " ";
  496. var speed = 100;
  497. var pos = val;
  498. msg = "{Title}";
  499. var le = msg.length;
  500. if(rev == "fwd"){
  501. if(pos < le){
  502. pos = pos+1;
  503. scroll = msg.substr(0,pos);
  504. document.title = scroll;
  505. timer = window.setTimeout("titlebar("+pos+")",speed);}
  506. else{
  507. rev = "bwd";
  508. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  509. else{
  510. if(pos > 0){
  511. pos = pos-1;
  512. var ale = le-pos;
  513. scrol = msg.substr(ale,le);
  514. document.title = scrol;
  515. timer = window.setTimeout("titlebar("+pos+")",speed);}
  516. else{
  517. rev = "fwd";
  518. timer = window.setTimeout("titlebar("+pos+")",speed);
  519. }}}
  520. titlebar(0);
  521. </script>
  522. {/block:ifmovingtitle}
  523. </head>
  524. <!--this is what makes everything in the webpage function. It is pretty much the basis of a website.-->
  525. <body>
  526.  
  527. <body onkeydown="return false">
  528.  
  529.  
  530. {block:ifupdatestab}
  531. <div id="ocehans">
  532. <div id="ocehans2">
  533. <samp>{text:Updates}
  534. </div> </div>
  535. {/block:ifupdatestab}
  536.  
  537.  
  538. {block:iflampeffect}
  539. <!--koddostu.com lamp effect start-->
  540. <!DOCTYPE HTML><style type="text/css">div.tht-position{position:fixed;z-index:6010;}div.tht-s-e{top:72px;right:0px;}</style><style type="text/css">div.tht-position{_position:absolute;}div.tht-s-e{_bottom:auto;_top:expression(ie6=(document.documentElement.scrollTop+document.documentElement.clientHeight - 52+"px") );}</style><div class="tht-position tht-s-e"><a id="lambakapali" onclick="document.getElementById('lambaacik').style.display='block';document.getElementById('lambakapali').style.display='none';document.getElementById('gölgem').style.display='none';" style="margin:0px !important;padding:0px !important;border:none !important;background-color:transparent !important;cursor:pointer;" title="Lambayı Aç"><img style="margin:0px !important;padding:0px !important;border:none !important;background-color:transparent !important;" src="http://1.bp.blogspot.com/-Ont9cH8VCJg/TvBiv-Ng47I/AAAAAAAADR8/bw36Ge18Wt0/s1600/LampOff.png" border="0"></a><Script Language='Javascript'>
  541. <!--
  542. document.write(unescape('%3C%61%20%68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%65%6E%2E%6B%6F%64%64%6F%73%74%75%2E%63%6F%6D%2F%32%30%31%32%2F%31%31%2F%6C%61%6D%70%2D%69%6E%74%72%6F%2D%65%66%66%65%63%74%2D%66%6F%72%2D%74%75%6D%62%6C%72%2E%68%74%6D%6C%22%20%74%61%72%67%65%74%3D%22%5F%62%6C%61%6E%6B%22%20%69%64%3D%22%6C%61%6D%62%61%61%63%69%6B%22%20%20%73%74%79%6C%65%3D%22%64%69%73%70%6C%61%79%3A%6E%6F%6E%65%3B%6D%61%72%67%69%6E%3A%30%70%78%20%21%69%6D%70%6F%72%74%61%6E%74%3B%70%61%64%64%69%6E%67%3A%30%70%78%20%21%69%6D%70%6F%72%74%61%6E%74%3B%62%6F%72%64%65%72%3A%6E%6F%6E%65%20%21%69%6D%70%6F%72%74%61%6E%74%3B%62%61%63%6B%67%72%6F%75%6E%64%2D%63%6F%6C%6F%72%3A%74%72%61%6E%73%70%61%72%65%6E%74%20%21%69%6D%70%6F%72%74%61%6E%74%3B%74%65%78%74%2D%64%65%63%6F%72%61%74%69%6F%6E%3A%6E%6F%6E%65%3B%22%3E%0A%3C%69%6D%67%20%73%74%79%6C%65%3D%22%6D%61%72%67%69%6E%3A%30%70%78%20%21%69%6D%70%6F%72%74%61%6E%74%3B%70%61%64%64%69%6E%67%3A%30%70%78%20%21%69%6D%70%6F%72%74%61%6E%74%3B%62%6F%72%64%65%72%3A%6E%6F%6E%65%20%21%69%6D%70%6F%72%74%61%6E%74%3B%62%61%63%6B%67%72%6F%75%6E%64%2D%63%6F%6C%6F%72%3A%74%72%61%6E%73%70%61%72%65%6E%74%20%21%69%6D%70%6F%72%74%61%6E%74%3B%22%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%31%2E%62%70%2E%62%6C%6F%67%73%70%6F%74%2E%63%6F%6D%2F%2D%4E%51%62%4E%32%63%36%46%71%69%38%2F%54%76%42%69%77%6B%38%73%43%70%49%2F%41%41%41%41%41%41%41%41%44%53%45%2F%68%45%56%66%46%58%47%58%64%46%55%2F%73%31%36%30%30%2F%4C%61%6D%70%4F%6E%2E%70%6E%67%22%20%62%6F%72%64%65%72%3D%22%30%22%2F%3E%3C%2F%61%3E'));
  543. //-->
  544. </Script></div><style type="text/css">div.gtg-position{position:fixed;text-align:center;z-index:6008;background-color:black;opacity:0.98;
  545. filter:alpha(opacity=98);width:100%;height:100%;}div.gtg-s-e{top:0px;right:0px;padding-top:20%;}</style><style type="text/css">div.gtg-position{_position:absolute;}div.gtg-s-e{_bottom:auto;_top:expression(ie6=(document.documentElement.scrollTop+document.documentElement.clientHeight - 52+"px") );}</style><div id="gölgem" class="gtg-position gtg-s-e"><a style="opacity:1;
  546. filter:alpha(opacity=100);color:#777;font-size:26px;margin:0px;padding:0px;background-color:transparent;border:none;text-decoration:none;font-weight:normal;">Can you turn on the light, <br/> please?</a>
  547. </div>
  548. <!--koddostu.com lamp effect stop-->
  549. {/block:iflampeffect}
  550. <center><div id="title"><samp>{Title}</div></center><br><br>
  551. <div id="sidebar">
  552. <div id="links">
  553. <a href="{text:Link1URL}"><samp>{text:Link1Title}</a><br>
  554. <a href="{text:Link2URL}"><samp>{text:Link2Title}</a><br>
  555. <a href="{text:Link3URL}"><samp>{text:Link3Title}</a><br>
  556. <a href="{text:Link4URL}"><samp>{text:Link4Title}</a><br>
  557. <a href="{text:Link5URL}"><samp>{text:Link5Title}</a><br>
  558. <a href="{text:Link6URL}"><samp>{text:Link6Title}</a><br>
  559. <a href="{text:Link7URL}"><samp>{text:Link7Title}</a><br>
  560.  
  561. </div>
  562. <div id="sidebar img"><img src="{image:sidebar img}"/></a></div>
  563. <div id="description"> <div id="bigletter"><samp>
  564. {text:bigletter}</div><samp>{Description}
  565. </div>
  566. <center>
  567. {block:PreviousPage}<a href="{PreviousPage}"><font-size="12">«</font></a>{/block:PreviousPage} {block:NextPage} <a href="{NextPage}"><font-size="12">»</font></a>{/block:NextPage}
  568. </center></div>
  569.  
  570. <div id="entry">
  571. <div class= "autopagerize_page_element">
  572. {block:Posts}
  573. <samp><div id="post">
  574.  
  575. {block:Text}{Body}{/block:Text}
  576.  
  577. {block:Quote}<h3><i>"</i>{Quote} {Source}</h3>{/block:Quote}
  578.  
  579. {block:Link}<a href="{URL}" class="link" {Target}> <h2>{Name}</h2></a>
  580. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  581.  
  582. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  583. {block:Photoset}<center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  584.  
  585. {block:Chat}{block:Title}<t>{Title}</t><br>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  586. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  587.  
  588. {block:Answer}
  589. <div class="question">
  590. <b>{Asker}</b> whispered:<br>
  591. {Question}</div>{Answer}
  592. {/block:Answer}
  593.  
  594.  
  595.  
  596. {block:Audio}<span class="audio"><center>{AudioPlayerwhite}</center></span>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  597.  
  598. <div id="info">this happened <a href="{Permalink}">{TimeAgo}</a>{/block:Date}{block:NoteCount} • <a href="{Permalink}">{NoteCount}</a> notes{/block:NoteCount}{block:RebloggedFrom} (<a href="{ReblogParentURL}">{ReblogParentName}</a>
  599. {block:ContentSource} source <a href="{SourceURL}">{SourceLink}</a>){block:ContentSource}{/block:RebloggedFrom}<br>
  600. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div></div><br>
  601. {/block:Posts}</div>
  602.  
  603. {block:PostNotes}{PostNotes}{/block:PostNotes}
  604.  
  605. </body>
  606.  
  607. <div id="credit"><a href="http://flyawayfromzayn.tumblr.com"><samp>Credit</a></div>
  608. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement