Advertisement
sabrinaamorgan

piercisms

Apr 25th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.03 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><title>{Title}</title>
  4.  
  5. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  7. <script>
  8. $(document).ready(function() {
  9. //
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  17. var popMargTop = ($('#' + popID).height() + 80) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36.  
  37.  
  38. <link rel="shortcut icon" href="{Favicon}">
  39. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  40. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  41.  
  42. <!---- this is theme 36 by Hollywhood
  43. please don't remove the credit
  44. thank you
  45. --->
  46.  
  47. <meta name="color:Background" content="#ffffff"/>
  48. <meta name="color:Text" content="#9B9B9B"/>
  49. <meta name="color:Link" content="#b8b8b8"/>
  50. <meta name="color:scrollbar" content="#D6D5D5">
  51. <meta name="color:Link Hover" content="#eeeeee"/>
  52. <meta name="image:sidebar" content=""/>
  53. <meta name="text:link 1" content="Link 1"/>
  54. <meta name="text:link 1 url" content="/"/>
  55. <meta name="text:link 2" content="Link 2"/>
  56. <meta name="text:link 2 url" content="/"/>
  57. <meta name="text:link 3" content="Link 3"/>
  58. <meta name="text:link 3 url" content="/"/>
  59. <meta name="text:link 4" content="Link 4"/>
  60. <meta name="text:link 4 url" content="/"/>
  61. <meta name="text:link 5" content="Link 5"/>
  62. <meta name="text:link 5 url" content="/"/>
  63. <meta name="text:link 6" content="Link 6"/>
  64. <meta name="text:link 6 url" content="/"/>
  65.  
  66.  
  67. <style type="text/css">
  68.  
  69. .popup_block{
  70. width: 500px;
  71. height: 400px;
  72. overflow-y:scroll;
  73. overflow-x:hidden;
  74. display:none;
  75. background:#0a0909;
  76. font-size:11px;
  77. padding:20px;
  78. border:1px solid #444250; /* if you want a solid white pop-up, delete this */
  79. float:left;
  80. position:fixed;
  81. top:50%;left:50%;
  82. z-index: 99999;
  83. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  84. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  85. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  86. }
  87.  
  88. *html #fade {position: absolute;}
  89. *html .popup_block {position: absolute;}
  90. #fade {
  91. display:none;
  92. position:fixed;
  93. left:0px;
  94. top:0px;
  95. width:100%;
  96. height:100%;
  97. z-index:9999;
  98. background:#000; /* change to #fff for solid white */
  99. opacity:0.5; /* change to opacity:1; */
  100. }
  101.  
  102. /************** FLAGS UPDATES TAB **************/
  103. /* tutorial by deanlirium|tumblr (clarence.tk) */
  104.  
  105. #flags {
  106. position:fixed;
  107. top:-10px;
  108. left:70px; /* distance from the left of the page - adjust as you wish! */
  109. text-align:center;
  110. color:#8C8C8C; /* 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 #! */
  111. font-size:10px; /* adjust font size */
  112. letter-spacing:1px;
  113. z-index:2147483607;
  114. font-family:calibri;}
  115.  
  116. /* okay real talk - this updates tab is currently to the top left of your page - if you want to move it to right, just change every 'left' into 'right' and 'right' into 'left'! and I mean every. single. one. Such as the left:100px; above will become right:100px; there are also a bunch of 'margin-left's here below, so change them to margin-right. look for left and right stuff and switch.
  117. On the contrary, if you want to move it to the bottom of the page, switch every 'top' with 'bottom' and vice versa. That's really it! c: */
  118.  
  119. #flag1 {
  120. border:solid 6px #444250; /* flag color */
  121. margin-left:-15px;
  122. border-bottom: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! */
  123. padding-top:20px;
  124. width:0px;
  125. height:45px; /* increase or decrease to change the lenght of the CLOSED flag */
  126. position:absolute;
  127. -moz-transition:all 0.7s ease-out;
  128. -webkit-transition:all 0.7s ease-out;
  129. -o-transition:all 0.7s ease-out;}
  130.  
  131. #flag1:hover {
  132. height:180px;} /* lenght of the OPEN flag */
  133.  
  134. #upd1 {
  135. position:absolute;
  136. width:110px;
  137. height:200px; /* adjust to fit the text if you write a lot! */
  138. padding:10px;
  139. padding-top:60px; /* adjust this if you've changed the length of the closed flag */
  140. top:-270px; /* IMPORTANT! keep this number equal to the sum of the padding-top, padding and height values!!!! */
  141. margin-left:6px; /* keep this number equal to the 'border' value for the flag */
  142. opacity:0;
  143. overflow:hidden;
  144. -moz-transition:all 0.7s ease-out;
  145. -webkit-transition:all 0.7s ease-out;
  146. -o-transition:all 0.7s ease-out;}
  147.  
  148. #flag1:hover #upd1{
  149. top:0px;
  150. opacity:1;}
  151.  
  152. /* following is the coding for the other flags - same as above! */
  153.  
  154. #flag2 {
  155. border:solid 6px #3a3844;
  156. margin-left:5px;
  157. position:absolute;
  158. border-bottom:solid 6px transparent;
  159. padding-top:20px;
  160. width:0px;
  161. height:30px;
  162. -moz-transition:all 0.7s ease-out;
  163. -webkit-transition:all 0.7s ease-out;
  164. -o-transition:all 0.7s ease-out;}
  165.  
  166. #flag2:hover {
  167. height:180px;}
  168.  
  169. #upd2 {
  170. position:absolute;
  171. width:110px;
  172. padding:10px;
  173. padding-top:60px;
  174. height:200px; /* adjust to fit the text if you write a lot! */
  175. top:-270px; /* IMPORTANT! keep this number equal to the sum of the padding-top, padding and height values!!!! */
  176. overflow:hidden;
  177. margin-left:6px;
  178. opacity:0;
  179. -moz-transition:all 0.7s ease-out;
  180. -webkit-transition:all 0.7s ease-out;
  181. -o-transition:all 0.7s ease-out;}
  182.  
  183. #flag2:hover #upd2{
  184. top:0px;
  185. opacity:1;}
  186.  
  187. /*if you want more flags, just copy the part of the code below and change the numbers - then increase the margin-left value for the #flag(number) adding 20px each new flag! copy from here: */
  188.  
  189. #flag3 {
  190. border:solid 6px #57565d;
  191. position:absolute;
  192. margin-left:25px;
  193. border-bottom:solid 6px transparent;
  194. padding-top:20px;
  195. height:20px;
  196. width:0px;
  197. -moz-transition:all 0.7s ease-out;
  198. -webkit-transition:all 0.7s ease-out;
  199. -o-transition:all 0.7s ease-out;}
  200.  
  201. #flag3:hover {
  202. height:180px;}
  203.  
  204. #upd3 {
  205. position:absolute;
  206. width:110px;
  207. padding:10px;
  208. padding-top:60px;
  209. height:200px; /* adjust to fit the text if you write a lot! */
  210. top:-270px; /* IMPORTANT! keep this number equal to the sum of the padding-top, padding and height values!!!! */
  211. overflow:hidden;
  212. margin-left:6px;
  213. opacity:0;
  214. -moz-transition:all 0.7s ease-out;
  215. -webkit-transition:all 0.7s ease-out;
  216. -o-transition:all 0.7s ease-out;}
  217.  
  218. #flag3:hover #upd3{
  219. top:0px;
  220. opacity:1;}
  221.  
  222. /* to here */
  223.  
  224.  
  225. ::-webkit-scrollbar-thumb{
  226. background-color:transparent;
  227. border: 2px solid transparent;
  228. height:auto;
  229. }
  230.  
  231. ::-webkit-scrollbar {
  232. height:auto;
  233. width:11px;
  234. background-color:transparent;
  235. border:5px solid transparent;
  236. }
  237.  
  238.  
  239. iframe#tumblr_controls {
  240. white-space:nowrap;
  241. -webkit-filter: invert(100%);
  242. -moz-filter: invert(100%);
  243. -o-filter: invert(100%);
  244. -ms-filter: invert(100%);
  245. filter: invert(100%);
  246. opacity:.2;transition: .8s ease-in-out;
  247. -webkit-transition: .8s ease-in-out;
  248. -moz-transition: .8s ease-in-out;
  249. -o-transition: .8s ease-in-out;
  250. }
  251.  
  252. h1 {
  253. font-weight:normal;
  254. font-size:13px;
  255. text-align:center;
  256. font-style:normal;
  257. line-height:100%;
  258. letter-spacing:1px;
  259. text-transform:normal;
  260. color:{color:text};
  261. }
  262.  
  263. h2 {
  264. font-size:10px;
  265. text-align:center;
  266. line-height:100%;
  267. letter-spacing:-0.5px;
  268. color:{color:text};
  269. font-weight:bold;
  270. text-transform:uppercase;
  271. padding:5px;
  272. padding-bottom:2px;
  273. }
  274.  
  275.  
  276. blockquote {
  277. padding:0px 0 0px 10px;
  278. border-left:3px solid #a27b7b;
  279. margin:0;
  280. text-align:left;
  281. border-radius: 7px 7px
  282. }
  283.  
  284.  
  285. body {
  286. background:{color:background};
  287. margin:0px;
  288. color:{color:text};
  289. font-family:verdana;
  290. font-size:12px;
  291. line-height:100%;
  292. background-image:url("http://i.imgur.com/MgsBGxY.jpg");
  293. background-attachment: fixed;
  294. background-image:stretch;
  295. background-repeat: no-repeat;
  296. background-image:cover;
  297. background-position:left top;
  298. }
  299.  
  300.  
  301. b, strong {
  302. font-weight: bold; color:#a8a6b0;}
  303. i, em {text-shadow:1px 1px 1px #797784; text-transform: italic; color:#a8a6b0;} /*this will make whatever you bold or italicize look different than normal text */
  304.  
  305. a {
  306. text-decoration:none;
  307. outline:none;
  308. -moz-outline-style:none;
  309. color:{color:link};
  310. -moz-transition-duration:0.5s;
  311. -webkit-transition-duration:0.5s;
  312. -o-transition-duration:0.5s;
  313. }
  314.  
  315. a:hover {
  316. text-decoration:none;
  317. outline:none;
  318. -moz-outline-style:none;
  319. color:{color:link hover};
  320. }
  321.  
  322. img {
  323. border:none;
  324. }
  325.  
  326. blockquote {
  327. padding-left:5px;
  328. border-left:2px solid;
  329. }
  330.  
  331. blockquote blockquote {
  332. padding-left:5px;
  333. border-left:2px solid;
  334. }
  335.  
  336. #post {
  337. width:500px;
  338. padding-bottom:30px;
  339. margin-top:20px;
  340. }
  341.  
  342. #entries {
  343. padding:10px;
  344. left:645px;
  345. top:50px;
  346. position:fixed;
  347. background-color:transparent;
  348. width:500px;
  349. height:280px;
  350. top:170px;
  351. padding: 20px;
  352. overflow-x:scroll;
  353. scroll:left;
  354. overflow-x:hidden;
  355. }
  356.  
  357. #sidebar {
  358. color:#000;
  359. position:fixed;
  360. width:91px;
  361. height:auto;
  362. top:330px;
  363. left:1065px;
  364. text-align:left;
  365. }
  366.  
  367. #sidebar img {
  368. width:100px;
  369. height:100px;
  370. margin-top:0px;
  371. margin-bottom:5px;
  372. padding:-1px;
  373. outline-offset:4px;
  374. }
  375.  
  376. #links {
  377. position:fixed;
  378. font-family:OptimusPrinceps;
  379. width:200px;
  380. top:130px;
  381. left:500px;
  382. font-size:23px;
  383. text-transform:lowercase;
  384. text-align:center;
  385. line-height:190%;
  386. }
  387.  
  388. #links a{
  389. line-height:190%;
  390. padding:1px;
  391. margin-top:1px;
  392. margin-left:3px;
  393. color:#d1d1d1;
  394. -moz-transition-duration:.7s;
  395. -webkit-transition-duration:.7s;
  396. -o-transition-duration:.7s;
  397. }
  398.  
  399. #links a:hover {
  400. color: #d1d1d1;
  401. -moz-transition-duration:.4s;
  402. -webkit-transition-duration:.4s;
  403. -o-transition-duration:.4s;
  404.  
  405. }
  406.  
  407. #description {
  408. width:100px;
  409. font-family: 'Lato', sans-serif;
  410. margin-bottom:0px;
  411. margin-top:8px;
  412. margin-left:0px;
  413. text-align:right;
  414. font-size:9px;
  415. color: #777;
  416. line-height:145%;
  417. }
  418.  
  419. #description a {
  420. color:#999;
  421. }
  422.  
  423. #description a:hover {
  424. color:#fff;
  425. }
  426.  
  427. #actualnews {
  428. font-family:calibri;
  429. font-size:10px;
  430. color: #b8b8b8;
  431. width:100px;
  432. height:auto;
  433. padding-top:3px;
  434. border:1px solid#b8b8b8;
  435. margin-left: 30px;
  436. margin-top:10px;
  437. text-align:center;
  438. position:fixed;
  439. }
  440.  
  441. #thekey img{
  442. width:60px;
  443. margin-top: -40px;
  444. margin-left: 45px;
  445. position:fixed;
  446. }
  447.  
  448. #pagination {
  449. font-family:arial;
  450. width:100px;
  451. font-size:10px;
  452. text-transform:normal;
  453. margin-top:25px;
  454. margin-left:-8px;
  455. padding-left:5px;
  456. letter-spacing:1px;
  457. font-style:bold;
  458. text-align:right;
  459. }
  460.  
  461. #pagination a {
  462. color:#fff;
  463. }
  464.  
  465. #info {
  466. font-family:calibri;
  467. width:500px;
  468. margin-top:6px;
  469. padding-top:1px;
  470. word-spacing:1px;
  471. font-size:8px;
  472. color:{color:text};
  473. text-transform:uppercase;
  474. font-style:normal;
  475. text-align:left;
  476. border-top:1px solid #ccc;
  477. -moz-transition-duration:0.5s;
  478. -webkit-transition-duration:0.5s;
  479. -o-transition-duration:0.5s;
  480. }
  481.  
  482. #info a {
  483. margin-right:2px;
  484. color:{color:link};
  485. font-style:normal;
  486. }
  487.  
  488. #info a:hover {
  489. color:{color:link hover};
  490. }
  491.  
  492. .tags {
  493. font-family:calibri;
  494. width:500px;
  495. text-transform:normal;
  496. line-height:120%;
  497. font-size:10px;
  498. text-align:left;
  499. padding-top:5px;
  500. padding-bottom:15px;
  501. -moz-transition-duration:0.2s;
  502. -webkit-transition-duration:0.2s;
  503. -o-transition-duration:0.2s;
  504. }
  505. .tags a{
  506. font-style:italic;
  507. color:{color:link};
  508. -moz-transition-duration:0.2s;
  509. -webkit-transition-duration:0.2s;
  510. -o-transition-duration:0.2s;
  511. }
  512. .tags a:hover{
  513. color:{color:link hover};
  514. -moz-transition-duration:0.2s;
  515. -webkit-transition-duration:0.2s;
  516. -o-transition-duration:0.2s;
  517. }
  518.  
  519. .audio{
  520. background-color:#e5e5e5;
  521. height:65px;
  522. overflow:hidden;
  523. }
  524.  
  525. #ask {
  526. padding:5px;
  527. padding-bottom:10px;
  528. padding-left:10px;
  529. text-align:left;
  530. color:{color:text};
  531. line-height:140%;
  532. background-color:#f7f7f7;
  533. }
  534. #ask img {
  535. margin-left:-2px;
  536. margin-bottom:-9px;
  537. padding:3px;
  538. }
  539. #ans {
  540. text-align:left;
  541. padding:5px;
  542. color:{color:text};
  543. }
  544.  
  545. #credit {
  546. font-size:9px;
  547. font-family:cambria;
  548. font-style:italic;
  549. letter-spacing:1px;
  550. -moz-transition-duration:0.5s;
  551. -webkit-transition-duration:0.5s;
  552. -o-transition-duration:0.5s;
  553. }
  554.  
  555. #credit a {
  556. background-color:#fff;
  557. padding:5px;
  558. border:1px solid #e9e9e9;
  559. position:fixed;
  560. right:15px;
  561. bottom:10px
  562. }
  563.  
  564. #credit a:hover {
  565. color:#fff;
  566. background-color:#191919;
  567. }
  568.  
  569. {CustomCSS}</style>
  570.  
  571. <div id="box1" class="popup_block">
  572. <center>
  573.  
  574. pop up box 1
  575.  
  576. </center></div>
  577. </div></div></div></div></div></div></div></div></div></div>
  578.  
  579.  
  580. <div id="box2" class="popup_block">
  581. <center><p><b><i><u> ask</u></i></b></center>
  582. <br/><br/><iframe frameborder="0" height="300" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/oftypewriter.tumblr.com" width="100%"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  583. </div>
  584.  
  585. </div></div></div></div></div></div></div></div></div></div>
  586.  
  587. <div id="box3" class="popup_block">
  588. <center>
  589.  
  590. pop up box 2
  591.  
  592. </center>
  593. </div>
  594.  
  595. </div></div></div></div></div></div></div></div></div></div>
  596.  
  597. <div id="box4" class="popup_block">
  598. <center>
  599.  
  600. pop up box 3
  601.  
  602. </center>
  603. </div>
  604.  
  605. </div></div></div></div></div></div></div></div></div></div>
  606.  
  607.  
  608. </head>
  609.  
  610.  
  611.  
  612. <div id="flags">
  613. <div id="flag1"><div id="upd1">
  614.  
  615. updates tab 1
  616.  
  617. </div></div>
  618.  
  619. <div id="flag2"><div id="upd2">
  620.  
  621. update tabs 2
  622.  
  623. </div></div>
  624.  
  625. <!---- if you want more flags, copy from here ---->
  626.  
  627. <div id="flag3"><div id="upd3">
  628.  
  629. update tabs 3
  630.  
  631.  
  632. </div></div>
  633.  
  634. <!---- to here and change the numbers according to your css! ---->
  635.  
  636. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  637. </div>
  638.  
  639. </div>
  640. </div>
  641.  
  642.  
  643. <body>
  644.  
  645. <div id="sidebar">
  646.  
  647. <div id="sidebarimage">
  648. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  649.  
  650.  
  651. <div id="description">
  652. {Description}</div>
  653. <p></p>
  654. <div id="links">
  655. <a title="home" href="/"><b>i.</b></a>
  656. <a title="ask" href="#?w=507" rel="box2" class="poplight"><b>ii.</b></a>
  657. <a title="rules" href="#?w=507" rel="box3" class="poplight"><b>iii.</b></a>
  658. <a title="navi" href="#?w=507" rel="box1" class="poplight"><b>iv.</b></a>
  659. <a title="verses" href="#?w=507" rel="box4" class="poplight"><b>v.</b></a>
  660.  
  661. </div>
  662. <div style="float:right;"><p></p><br><br><div id="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><b><i>&larr; previous</i></b></a>{/block:PreviousPage}&nbsp;{block:NextPage}<a href="{NextPage}"><b><i>next &rarr;</i></b></a>{/block:NextPage}{/block:Pagination} </div></div></div>
  663.  
  664.  
  665. <div id="entries">{block:Posts}<div id="post">
  666.  
  667. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  668.  
  669. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  670.  
  671. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  672.  
  673. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  674.  
  675. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  676.  
  677. {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}
  678.  
  679. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  680. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  681.  
  682. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  683.  
  684. {block:Answer}<div id="ask"> <i>{Asker}said:</i> {Question}</div><div id="ans">{Answer}</div>{/block:answer}
  685.  
  686. {block:Date}<div id="info"> <a href="{Permalink}" style="background-color:transparent;padding:2px;padding-left:5px;padding-right:5px;color:#dad5d5;">{TimeAgo}</a>
  687. {/block:Date} {block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a> {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  688. {block:ContentSource} © <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource}<div style="float:right;"> <big><big>+</big></big> <a href="{ReblogURL}" target="_blank" class="details">Reblog</a> {/block:Date}</div></div>
  689. {block:HasTags}
  690. <div class="tags">
  691. <big>✎</big> {block:Tags} <a href="{TagURL}"> # {Tag}</a> {/block:Tags}</div>
  692. {/block:HasTags}
  693. <div class="postnote">
  694. {block:PostNotes}{PostNotes}{/block:PostNotes}
  695. </div>
  696. </div>
  697. {/block:Posts}
  698.  
  699. </div>
  700. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div>
  701.  
  702. </body>
  703.  
  704. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement