Advertisement
manon15

stcr theme code

Mar 10th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:border" content="#000000"/>
  12. <meta name="color:hoverlink text" content="#000000"/>
  13. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  14. <meta name="color:tooltip color" content="#6b6d6d"/>
  15. <meta name="color:title color" content="#000000"/>
  16. <meta name="color:blockquote color" content="#000000"/>
  17.  
  18.  
  19.  
  20. <meta name="text:bg image url" content=""/>
  21. <meta name="color:bold" content=""/>
  22. <meta name="color:bold shadow" content=""/>
  23. <meta name="color:italics" content=""/>
  24. <meta name="color:italics shadow" content=""/>
  25. <meta name="text:title text" content="title">
  26. <meta name="text:Link 1 URL" content="" />
  27. <meta name="text:Link 1" content="link 1" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 2" content="link 2" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 3" content="link 3" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 4" content="link 4" />
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. <head><title>{Title}</title>
  42. <link rel="shortcut icon" href="{Favicon}">
  43. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  44. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  45.  
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  50. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  52. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  53. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  57. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  58. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  59. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  60. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  65. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  66. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  67. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  68. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  69. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  70. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  71.  
  72.  
  73. <script type="text/javascript"
  74. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  75. <script>
  76. $(document).ready(function() {
  77. //
  78. $('a.poplight[href^=#]').click(function() {
  79. var popID = $(this).attr('rel'); //Get Popup Name
  80. var popURL = $(this).attr('href'); //Get Popup href to define size
  81. var query= popURL.split('?');
  82. var dim= query[1].split('&');
  83. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  84. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  85. var popMargTop = ($('#' + popID).height() + 80) / 2;
  86. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  87. //Apply Margin to Popup
  88. $('#' + popID).css({
  89. 'margin-top' : -popMargTop,
  90. 'margin-left' : -popMargLeft
  91. });
  92. $('body').append('<div id="fade"></div>');
  93. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  94. return false;
  95. });
  96. $('a.close, #fade').live('click', function() {
  97. $('#fade , .popup_block').fadeOut(function() {
  98. $('#fade, a.close').remove(); //fade them both out
  99. });
  100. return false;
  101. });
  102. });
  103. </script>
  104.  
  105.  
  106.  
  107.  
  108. <style type="text/css">
  109.  
  110. .popup_block{
  111. display:none;
  112. font-size:12px;
  113. background:#bebaba;
  114. background-image:url("");
  115. font-family:'calibri';
  116. padding:20px;
  117. border:;
  118. float:left;
  119. position:fixed;
  120. top:50%;left:50%;
  121. z-index: 99999;
  122. -webkit-box-shadow: ;
  123. -moz-box-shadow: ;
  124. box-shadow: ;
  125. }
  126.  
  127. *html #fade {position: absolute;}
  128. *html .popup_block {position: absolute;}
  129. #fade {
  130. display:none;
  131. position:fixed;
  132. left:0px;
  133. top:0px;
  134. width:100%;
  135. height:100%;
  136. z-index:9999;
  137. background:#000; /* change to #fff for solid white */
  138. opacity:0.5; /* change to opacity:1; */
  139. }
  140.  
  141.  
  142. /* --- UPDATES ---*/
  143.  
  144.  
  145.  
  146. #bite
  147. #bite a{
  148. display:block
  149. }
  150. #bite .death {
  151. margin-top:0px;filter: alpha(opacity = 0);
  152. opacity:0;-webkit-transition: all 0.5s ease-out;
  153. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  154. }
  155.  
  156. #bite:hover .death {
  157. margin-top:0px;
  158. -webkit-transition: all 0.8s ease-out;
  159. -moz-transition: all 0.8s ease-out;
  160. transition: all 0.8s ease-out;
  161. filter: alpha(opacity = 100);
  162. filter: alpha(opacity = 100);
  163. opacity:100;
  164. }
  165.  
  166. #actualnews {
  167. font-family:'calibri';
  168. font-size:12px;
  169. color: #fff;
  170. width:150px;
  171. height:auto;
  172. padding-top:3px;
  173. left:50%;
  174. margin-left:-550px;
  175. bottom:210px;
  176. text-align:center;
  177. position:fixed;
  178. background:#bebaba;
  179. }
  180.  
  181. #thekey {
  182. width:auto;
  183. letter-spacing:5px;
  184. left:50%;
  185. bottom:190px;
  186. margin-left:137px;
  187. padding:2px;
  188. position:fixed;
  189. font-size:11px;
  190. font-family: 'Prata', serif;
  191. color: #fff;
  192. text-transform:uppercase;
  193. text-shadow: 0px 0px 0px #000;
  194. -ms-transform: rotate(90deg); /* IE 9 */
  195. -webkit-transform: rotate(90deg); /* Safari */
  196. transform: rotate(90deg)
  197.  
  198. }
  199. }
  200.  
  201.  
  202. para {
  203. font-family: 'Prata', serif;
  204. color:#fff;
  205. text-shadow:0 0 2px #fff;
  206. font-size:15px;
  207.  
  208. }
  209.  
  210. /*edit scrollbar*/
  211.  
  212. ::-webkit-scrollbar-thumb {
  213. height:auto;
  214. }
  215.  
  216. ::-webkit-scrollbar {
  217. height:4px;
  218. width:3px;
  219. padding-right:2px;
  220. }
  221. /*edit the body this is what post text looks like, background color, etc.*/
  222.  
  223. body {
  224. background-image:url("http://i.imgur.com/KdGtZnF.png");
  225. background-position:center bottom;
  226. background-attachment:fixed;
  227. background-repeat:no-repeat;
  228. margin:0px;
  229. background-color:#bebaba;
  230. color:#fff;
  231. font-family:arial;
  232. font-size:10px;
  233. line-height:120%;
  234. overflow-x:hidden;
  235. overflow-y:hidden;
  236. }
  237.  
  238.  
  239. /*edit links*/
  240.  
  241. a {
  242. text-decoration:none;
  243. outline:none;
  244. -moz-outline-style:none;
  245. color:#fff;
  246. -moz-transition-duration:0.8s;
  247. -webkit-transition-duration:0.8s;
  248. -o-transition-duration:0.8s;
  249. }
  250.  
  251. /*edit link hover*/
  252.  
  253. a:hover {
  254. color:#000;
  255. outline:none;
  256. -moz-outline-style:none;
  257. text-decoration:none;
  258. border-radius: 20px 20px 20px 20px #000;
  259. }
  260.  
  261. img {
  262. opacity:.8;
  263. -webkit-filter: Grayscale(50%);
  264. -webkit-transition-duration: 0.8s;
  265. -moz-transition-duration:0.8s;
  266. transition-duration:0.8s;
  267. -o-transition-duration:0.8s;
  268. -webkit-filter: blur(1px);
  269. border-radius: 20px 20px 20px 20px #000;
  270. }
  271.  
  272. img:hover {
  273. opacity:1;
  274. -webkit-filter: Grayscale(0%);
  275. -webkit-transition: all 0.8s ease-out;
  276. -moz-transition: all 0.8s ease-out;
  277. transition: all 0.8s ease-out;
  278. -webkit-filter: blur(0px);
  279. border-radius: 20px 20px 20px 20px #000;
  280.  
  281. }
  282.  
  283. blockquote {
  284. padding-left:5px;
  285. border-left:1px solid #fff;
  286.  
  287. }
  288.  
  289. blockquote blockquote {
  290. padding-left:5px;
  291. border-left:2px solid;
  292. }
  293.  
  294. h1 {
  295. font-size:22px;
  296. text-align:left;
  297. font-family:"prata";
  298. text-align:center;
  299. line-height:105%;
  300. letter-spacing:1px;
  301. color:#fff;
  302. }
  303.  
  304.  
  305.  
  306. #title {
  307. color:#000;
  308. font-family:arial;
  309. font-size:16px;
  310. text-transform:lowercase;
  311. font-weight:bold;
  312. letter-spacing:0px;
  313. padding:4px;
  314. margin-top:-20px;
  315. margin-left:-14px;
  316. position:fixed;
  317. text-align:left;
  318. }
  319.  
  320.  
  321. #navi {
  322. float:left;
  323. width:190px;
  324. padding:3px;
  325. }
  326.  
  327.  
  328. /*sidebar links*/
  329.  
  330. #links {
  331. position: fixed;
  332. font-style:none;
  333. left:50%;
  334. bottom:519px;
  335. margin-left:-135px;
  336. font-size:15px;
  337. word-spacing:2px;
  338. line-height: 850%;
  339. text-align: left;
  340. width:160px;
  341. margin-right: auto;
  342.  
  343. }
  344.  
  345. #links a {
  346. letter-spacing: 1px;
  347. padding:3px;
  348.  
  349. }
  350.  
  351. #links a:hover {
  352. color:#000;
  353. opacity:1;
  354. -webkit-transition: all 0.8s ease-out;
  355. -moz-transition: all 0.8s ease-out;
  356. transition: all 0.8s ease-out;
  357. -webkit-filter:;
  358. }
  359.  
  360. #description {
  361. width:208px;
  362. font-size:11px;
  363. padding:5px;
  364. text-align:justify;
  365. letter-spacing:0px;
  366. line-height:90%;
  367. margin-left:-16px;
  368. margin-top:-2px;
  369. }
  370.  
  371. /* this is the box that comes up when you hover over something with a title*/
  372.  
  373. #s-m-t-tooltip {
  374. max-width:300px;
  375. padding:5px 5px 5px 6px;
  376. margin:20px 0px 0px 20px;
  377. background-image:url('http://i.imgur.com/KhDOPyV.png');
  378. background-color:{color:tooltip color};
  379. font-family:arial;
  380. font-size:9px;
  381. letter-spacing:2px;
  382. text-transform:lowercase;
  383. font-weight:bold;
  384. color:#fff;
  385. z-index:999999999999999999999999999999999999;
  386. }
  387.  
  388. .buttons {
  389. display:inline-block;
  390. width:120px;
  391. padding:3px;
  392. margin:3px;
  393. border:1px solid #000;
  394. }
  395.  
  396. /*next page and previous page*/
  397.  
  398. #pagination {
  399. left:50%;
  400. bottom:77px;
  401. margin-left:-222px;
  402. font-size:25px;
  403. position: absolute;
  404. text-align: left;
  405. letter-spacing:4px;
  406. padding-left:87px;
  407. word-spacing:4px;
  408. text-transform:lowercase;
  409.  
  410.  
  411. }
  412.  
  413. #pagination a {
  414. padding:0 3px;
  415. opacity:2;
  416. -webkit-filter: Grayscale(0%);
  417. -webkit-transition: all 0.8s ease-out;
  418. -moz-transition: all 0.8s ease-out;
  419. transition: all 0.8s ease-out;
  420. -webkit-filter: blur(0px);
  421.  
  422. }
  423.  
  424.  
  425. #container {
  426. position: fixed;
  427. height:444px;
  428. width:255px;
  429. text-align:justify;
  430. font-family:'calibri';
  431. text-transform: auto;
  432. left:50%;
  433. margin-left:-109px;
  434. bottom:110px;
  435. overflow: auto;
  436. -ms-transform: rotate(0deg);
  437. -webkit-transform: rotate(0deg);
  438. transform: rotate(0deg);
  439. }
  440.  
  441.  
  442. #post {
  443. width:250px;
  444. text-align:left;
  445. font-size:11px;
  446. line-height:110%;
  447. color:#fff;
  448. margin-left:auto;
  449. margin-right:auto;
  450. }
  451.  
  452.  
  453. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  454.  
  455. b, strong{
  456. color: #847376;
  457. font-size:16px;
  458. font-family:"Prata";
  459. letter-spacing:2px;
  460. line-height:115%;
  461. text-shadow: 0px 0px 0px #000;
  462. font-weight: bold;
  463. text-transform:uppercase;
  464. }
  465.  
  466. i, em, strong {
  467. color: #6c3222;
  468. font-size:16px;
  469. line-height:115%;
  470. font-family:"satisfy";
  471. letter-spacing:2px;
  472. text-shadow:0px 0px 0px #000;
  473. font-weight: italic;
  474.  
  475. }
  476.  
  477. /*time posted, note count, via and source*/
  478.  
  479. .postinfo {
  480. font-family:'Six caps';
  481. width:237px;
  482. margin-top:1px;
  483. padding:6px;
  484. font-size:15px;
  485. color:#fff;
  486. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  487. background-image:url('http://i.imgur.com/KhDOPyV.png');
  488. opacity:.66;
  489. border-radius: 20px 20px 20px 20px;
  490. letter-spacing:1px;
  491. border-bottom:1px #000;
  492. text-transform:uppercase;
  493. font-style:normal;
  494. text-align:center;
  495. }
  496.  
  497. .postinfo a {
  498. color:#fff;
  499. font-style:normal;
  500. }od now
  501.  
  502. .postinfo a:hover {
  503. color:#bebebe;
  504. }
  505.  
  506.  
  507. /*tags*/
  508.  
  509. .tags {
  510. width:237px;
  511. margin-top:4px;
  512. margin-left:-1px;
  513. padding:2px;
  514. font-family:arial;
  515. letter-spacing:0px;
  516. font-size:10px;
  517. text-align:center;
  518.  
  519. }
  520.  
  521. .tags a {
  522. color:#fff;
  523. }
  524.  
  525. .tags a:hover {
  526. color:#57453a;
  527. }
  528.  
  529. .postnote {
  530. width:237px;
  531. margin-top:40px;
  532. font-family:arial;
  533. text-transform:lowercase;
  534. font-style:normal;
  535. letter-spacing:0px;
  536. font-size:10px;
  537. text-align:left;
  538. }
  539.  
  540. .verses img {
  541. float:center;
  542. -webkit-filter: grayscale(0%);
  543. width:400px;
  544. height:150px;
  545. }
  546.  
  547. /*here go asks*/
  548.  
  549. #ask {
  550. float:left;
  551. line-height:130%;
  552. border: 1px #000;
  553. font-family:"calibri";
  554. font-size:12px;
  555.  
  556. }
  557.  
  558.  
  559.  
  560.  
  561. /*audio player container*/
  562.  
  563. .playercontainer {
  564. text-align:left;
  565. padding:10px;
  566. padding-left:0px;
  567. background-color:#fff;
  568. width:480px;
  569. }
  570.  
  571. /*artist, song, etc.*/
  572.  
  573. .musicinfo {
  574. padding-top:7px;
  575. padding-left:50px;
  576. color:#000;
  577. text-align:justify;
  578. }
  579.  
  580. /*credit. only change this if you actually make the code your own*/
  581.  
  582. #credit {
  583. position:fixed;
  584. font-size:3px;
  585. color:#2f0000;
  586. font-weight:none;
  587. line-height:50%;
  588. letter-spacing:2px;
  589. right:10px;
  590. bottom:05px;
  591. text-transform:none;
  592. text-align:left;
  593. }
  594.  
  595. #credit a {
  596. letter-spacing: 0px;
  597. padding:3px;
  598. color:#848585;
  599. }
  600.  
  601. #credit a:hover {
  602. background:#bebaba;
  603. color:#848584;
  604. }
  605.  
  606.  
  607.  
  608. {CustomCSS}</style></head><body>
  609.  
  610.  
  611. <!-- begin updates tab -->
  612.  
  613. <div id="bite">
  614. <div id="thekey">HOVER</div>
  615. <div class="death">
  616. <div id="actualnews">
  617. <para><b>words</b></para><p>
  618. more words<br>
  619. <marquee>aaand this is how you make words go across/move!</marquee><br>
  620. <i>here we go hehe</i><p>
  621. bigger space here<br>
  622. and this is how you do a horizontal line!<br>
  623. <HR WIDTH="75%"><br>
  624. hope this helps!
  625.  
  626. </div></div></div>
  627.  
  628. <!-- end updates tab -->
  629.  
  630.  
  631. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  632. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  633. <script>
  634.  
  635. (function($){
  636.  
  637. $(document).ready(function(){
  638.  
  639. $("a[title]").style_my_tooltips({
  640.  
  641. tip_follows_cursor:true,
  642.  
  643. tip_delay_time:50,
  644.  
  645. tip_fade_speed:600,
  646.  
  647. attribute:"title"
  648.  
  649. });
  650.  
  651. });
  652.  
  653. })(jQuery);
  654.  
  655. </script>
  656.  
  657.  
  658.  
  659.  
  660. <div id="links">
  661. <a href="/" title="home">✕</a>
  662.  
  663.  
  664. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  665.  
  666. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">✕</a>
  667.  
  668. <a href="#?w=400" title="biography" rel="box3" class="poplight">✕</a>
  669.  
  670. <a href="#?w=400" title="navigation" rel="box4" class="poplight">✕</a>
  671.  
  672. <a href="#?w=400" title="verses" rel="box6" class="poplight">✕</a>
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681. </div>
  682.  
  683. <div id="description">{Description}</div>
  684.  
  685.  
  686. <div id="pagination">
  687. {block:Pagination}
  688. {block:PreviousPage}
  689. <a href="{PreviousPage}">&larr;</a>
  690. {/block:PreviousPage}
  691.  
  692.  
  693. {block:NextPage}
  694. <a href="{NextPage}">&rarr;</a>
  695. {/block:NextPage}
  696. {/block:Pagination}
  697. </div>
  698.  
  699.  
  700.  
  701. </div>
  702.  
  703.  
  704. <div id="container">{block:Posts}<div id="post">
  705.  
  706. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  707.  
  708. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  709.  
  710. {block:Chat}{block:Title}<h1><center>{Title}</center></h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  711.  
  712. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  713.  
  714. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  715.  
  716. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  717.  
  718. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  719.  
  720.  
  721. {block:AudioPlayer}
  722. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  723.  
  724. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  725. — {ASKER}<br><br>
  726. {Answer}<br>{/block:Answer}
  727.  
  728. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  729.  
  730. {block:HasTags}
  731. <div class="tags">
  732. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  733. {/block:HasTags}
  734.  
  735. <div class="postnote">
  736. {block:PostNotes}{PostNotes}{/block:PostNotes}
  737. </div>
  738. </div>
  739. {/block:Posts}
  740.  
  741.  
  742.  
  743.  
  744. </div></div></div></div>
  745. </div>
  746.  
  747. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  748. <i>Manon</i></a></font><div>
  749.  
  750. </body>
  751.  
  752. </div></div></div></div></div></div></div></div></div></div>
  753. <div id="box1" class="popup_block">
  754. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  755. </div>
  756. </div></div></div></div></div></div></div></div></div></div>
  757.  
  758. <div id="box2" class="popup_block">
  759. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  760. <center><big><h1>GUIDELINES</h1></big><BR>
  761. <HR WIDTH="100%"><br>
  762. CONTENT
  763. CONTENT
  764. CONTENT
  765. </center>
  766. </div>
  767. </div>
  768.  
  769. </div></div></div></div></div></div></div></div></div></div>
  770.  
  771. <div id="box3" class="popup_block">
  772. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  773. <center><big><h1>BIOGRAPHY</h1></big></big><BR>
  774. <HR WIDTH="100%"><br>
  775. CONTENT
  776. CONTENT
  777. CONTENT
  778. </center>
  779. </div>
  780. </div>
  781.  
  782. </div></div></div></div></div></div></div></div></div></div>
  783.  
  784. <div id="box4" class="popup_block">
  785. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  786. <center><big><h1>NAVIGATION</h1></big><BR>
  787. <HR WIDTH="100%"><br>
  788. <div id="navi">
  789. <a href="/link here" class="buttons">link name</a><p>
  790. <a href="/link here" class="buttons">link name</a><p>
  791. <a href="/link here" class="buttons">link name</a><p>
  792. </div>
  793. <div id="navi">
  794. <a href="/link here" class="buttons">link name</a><p>
  795. <a href="/link here" class="buttons">link name</a><p>
  796. <a href="/link here" class="buttons">link name</a><p>
  797.  
  798. </div>
  799. <p>
  800.  
  801.  
  802. </center><p>
  803.  
  804.  
  805. </div>
  806. </div>
  807.  
  808. </div></div></div></div></div></div></div></div></div></div>
  809.  
  810. <div id="box6" class="popup_block">
  811. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  812. <center><big><h1>VERSES</h1></big><BR>
  813. <HR WIDTH="100%">
  814. <img src="http://i.imgur.com/MFebYZf.png" class="verses">
  815. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  816. <p>
  817. content content content
  818. <p><p>
  819. <img src="http://i.imgur.com/MFebYZf.png" class="verses">
  820. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  821. <p>
  822. content content content
  823. <p><p>
  824. </center>
  825. </div>
  826. </div>
  827.  
  828. </div></div></div></div></div></div></div></div></div></div>
  829.  
  830. <div id="box5" class="popup_block">
  831. <center>theme credit goes to &nbsp;<i><a href="http://butscrewmefirst.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you &nbsp;<b>HAVE</b> to take this credit out, make sure you credit me on a &nbsp;<b>VISIBLE</b> and often visited page.</center>
  832. </div>
  833.  
  834. </div></div></div></div></div></div></div></div></div></div>
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement