taurielic

feck

May 4th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.77 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.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5.  
  6. <!-- ------------------------------------------------------------------
  7.  
  8. a theme
  9.  
  10. by me
  11.  
  12. inspired by a certain grid theme i wasn't able to edit
  13.  
  14. ------------------------------------------------------------------ -->
  15.  
  16. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  17.  
  18. <title>{Title}</title>
  19. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  20. <link rel="shortcut icon" href="{Favicon}" />
  21. <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
  22. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  23.  
  24. <meta name="color:Background" content="#fafafa"/>
  25. <meta name="color:Captions" content="#ffffff"/>
  26. <meta name="color:Header title" content="#000000"/>
  27. <meta name="color:Header text" content="#737373"/>
  28. <meta name="color:Info" content="#555555"/>
  29. <meta name="color:Link" content="#515151"/>
  30. <meta name="color:Link hover" content="#000000"/>
  31. <meta name="color:Pagination" content="#555555"/>
  32. <meta name="color:Tags" content="#555555"/>
  33. <meta name="color:Text" content="#555555"/>
  34.  
  35.  
  36. <meta name="text:Header title" content="">
  37.  
  38. <meta name="if:Taglist" content="1"/>
  39.  
  40. <meta name="text:Link 1" content="Link 1"/>
  41. <meta name="text:Link 1 url" content="/"/>
  42. <meta name="text:Link 2" content="Link 2"/>
  43. <meta name="text:Link 2 url" content="/"/>
  44. <meta name="text:Link 3" content="Link 3"/>
  45. <meta name="text:Link 3 url" content="/"/>
  46. <meta name="text:Link 4" content="Link 4"/>
  47. <meta name="text:Link 4 url" content="/"/>
  48.  
  49. <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  50.  
  51. <link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
  52.  
  53.  
  54. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  55.  
  56. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  57.  
  58. <script>
  59. (function($){
  60. $(document).ready(function(){
  61. $("a[title]").style_my_tooltips({
  62. tip_follows_cursor:true,
  63. tip_delay_time:30,
  64. tip_fade_speed:300,
  65. attribute:"title"
  66. });
  67. });
  68. })(jQuery);
  69. </script>
  70.  
  71.  
  72. <script>
  73. $(document).ready(function() {
  74.  
  75. var div = $('#header');
  76. var start = $(div).offset().top;
  77.  
  78. $.event.add(window, "scroll", function() {
  79. var p = $(window).scrollTop();
  80. $(div).css('position',((p)>start) ? 'fixed' : 'static');
  81. $(div).css('top',((p)>start) ? '0px' : '');
  82. });
  83. });
  84. </script>
  85.  
  86. <script type="text/javascript"
  87. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  88. <script>
  89. $(document).ready(function() {
  90. //
  91. $('a.poplight[href^=#]').click(function() {
  92. var popID = $(this).attr('rel'); //Get Popup Name
  93. var popURL = $(this).attr('href'); //Get Popup href to define size
  94. var query= popURL.split('?');
  95. var dim= query[1].split('&');
  96. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  97. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  98. var popMargTop = ($('#' + popID).height() + 80) / 2;
  99. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  100. //Apply Margin to Popup
  101. $('#' + popID).css({
  102. 'margin-top' : -popMargTop,
  103. 'margin-left' : -popMargLeft
  104. });
  105. $('body').append('<div id="fade"></div>');
  106. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  107. return false;
  108. });
  109. $('a.close, #fade').live('click', function() {
  110. $('#fade , .popup_block').fadeOut(function() {
  111. $('#fade, a.close').remove(); //fade them both out
  112. });
  113. return false;
  114. });
  115. });
  116. </script>
  117.  
  118. <style type="text/css">
  119.  
  120. ::-webkit-scrollbar {
  121. width: 8px;
  122. background-color:{color:background};
  123. }
  124.  
  125. ::-webkit-scrollbar-thumb {
  126. border-radius: 8px;
  127. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  128. background-color: #555;
  129. }
  130.  
  131. #s-m-t-tooltip {
  132. max-width:300px;
  133. margin:12px 0px 0px 12px;
  134. padding:1px 3px;
  135. background:#fff;
  136. text-transform:lowercase;
  137. font-style: none;
  138. font-family: calibri;
  139. font-size:10px;
  140. letter-spacing: 1px;
  141. color:{color:text};
  142. box-shadow: 1px 1px 2px #a5a5a5;
  143. z-index:999;
  144. }
  145.  
  146.  
  147. *, body, a, a:hover {cursor: url(http://www.totallylayouts.com/cursors/random/tiny_cursor.png), auto;}
  148.  
  149.  
  150.  
  151. body {
  152. background:{color:background};
  153. font-family:helvetica;
  154. font-size:10px;
  155. line-height:16px;
  156. text-align:justify;
  157. color:{color:text};
  158. }
  159.  
  160. img {
  161. max-width:100%;
  162. }
  163.  
  164. ol, ul {
  165. list-style-type:square;
  166. margin-left:12px;
  167. }
  168.  
  169. blockquote {
  170. border-left:1px solid #f0f0f0;
  171. padding:1px;
  172. padding-left:8px;
  173. background:{color:captions};
  174. }
  175.  
  176. a {
  177. text-decoration:none;
  178. color:{color:link};
  179. -moz-transition-duration:0.5s;
  180. -webkit-transition-duration:0.5s;
  181. -o-transition-duration:0.5s;
  182. }
  183.  
  184. a:hover {
  185. color:#dbdbdb;
  186. -moz-transition-duration:0.5s;
  187. -webkit-transition-duration:0.5s;
  188. -o-transition-duration:0.5s;
  189. }
  190.  
  191. /* POPUPS */
  192.  
  193. .popup_block {
  194. display:none;
  195. width:100px;
  196. background:#FFF;
  197. padding:40px;
  198. position:fixed;
  199. top:50%;
  200. left:50%;
  201. text-align:justify;
  202. z-index: 99999;
  203. -webkit-box-shadow: 0px 0px 15px #949494;
  204. -moz-box-shadow: 0px 0px 15px #949494;
  205. box-shadow: 0px 0px 15px #949494;
  206. }
  207.  
  208. img.btn_close {
  209. float: right;
  210. margin: -20 -20px 0 0;
  211. }
  212. *html #fade {
  213. position: absolute;
  214. }
  215. *html .popup_block {
  216. position: absolute;
  217. }
  218. #fade {
  219. display:none;
  220. background:#fafafa;
  221. position:fixed;
  222. left:0;
  223. top:0;
  224. width:100%;
  225. height:100%;
  226. opacity:0.5;
  227. z-index:9999;
  228. }
  229.  
  230. /* HEADER */
  231.  
  232. #container {
  233. position:relative;
  234. width:500px;
  235. margin-top:-10px;
  236. margin-left:auto;
  237. margin-right:auto;
  238. padding-top:100px;
  239. background:rgba(248,248,248, .9);
  240. }
  241.  
  242. #header {
  243. position:fixed;
  244. width:470px;
  245. color:{color:header text};
  246. padding:15px;
  247. padding-bottom:20px;
  248. padding-top:20px;
  249. border-bottom:1px solid #f0f0f0;
  250. text-align:right;
  251. z-index:99;
  252. background:rgba(248,248,248, .9);
  253. }
  254.  
  255. #header a:hover {
  256. }
  257.  
  258. #headertitle {
  259. font-family:montserrat;
  260. font-size:20px;
  261. letter-spacing:1px;
  262. font-weight:700;
  263. }
  264.  
  265. #headertitle a {
  266. text-decoration:none;
  267. float:left;
  268. color:{color:Header title};
  269. }
  270.  
  271. #links {
  272. width:500px;
  273. margin-left:-35px;
  274. text-align:right;
  275. word-spacing:2px;
  276. }
  277.  
  278. #onelink {
  279. width:8px;
  280. height:8px;
  281. background:#000;
  282. border:1px solid #000;
  283. border-radius:5px;
  284. display:inline-block;
  285. -webkit-transition-duration: .0s;
  286. -webkit-transition: all 0.5s ease;
  287. -moz-transition: all 0.5s ease;
  288. -o-transition: all 0.5s ease;
  289. -ms-transition: all 0.5s ease;
  290. transition: all 0.5s ease;
  291. }
  292.  
  293. #link1, #link2, #link3, #link4 {
  294. width:8px;
  295. height:8px;
  296. background:#000;
  297. border:1px solid #000;
  298. border-radius:5px;
  299. display:inline-block;
  300. -webkit-transition-duration: .0s;
  301. -webkit-transition: all 0.5s ease;
  302. -moz-transition: all 0.5s ease;
  303. -o-transition: all 0.5s ease;
  304. -ms-transition: all 0.5s ease;
  305. transition: all 0.5s ease;
  306. }
  307.  
  308. #links a:hover #onelink {
  309. background:#fafafa;
  310. opacity:.9;
  311. -webkit-transition: all 0.5s ease;
  312. -moz-transition: all 0.5s ease;
  313. -o-transition: all 0.5s ease;
  314. -ms-transition: all 0.5s ease;
  315. transition: all 0.5s ease;
  316. }
  317.  
  318. #links a:hover #link1 {
  319. background:#fafafa;
  320. opacity:.9;
  321. -webkit-transition: all 0.5s ease;
  322. -moz-transition: all 0.5s ease;
  323. -o-transition: all 0.5s ease;
  324. -ms-transition: all 0.5s ease;
  325. transition: all 0.5s ease;
  326. }
  327.  
  328. #links a:hover #link2 {
  329. background:#fafafa;
  330. opacity:.9;
  331. -webkit-transition: all 0.5s ease;
  332. -moz-transition: all 0.5s ease;
  333. -o-transition: all 0.5s ease;
  334. -ms-transition: all 0.5s ease;
  335. transition: all 0.5s ease;
  336. }
  337.  
  338. #links a:hover #link3 {
  339. background:#fafafa;
  340. opacity:.9;
  341. -webkit-transition: all 0.5s ease;
  342. -moz-transition: all 0.5s ease;
  343. -o-transition: all 0.5s ease;
  344. -ms-transition: all 0.5s ease;
  345. transition: all 0.5s ease;
  346. }
  347. #links a:hover #link4 {
  348. background:#fafafa;
  349. opacity:.9;
  350. -webkit-transition: all 0.5s ease;
  351. -moz-transition: all 0.5s ease;
  352. -o-transition: all 0.5s ease;
  353. -ms-transition: all 0.5s ease;
  354. transition: all 0.5s ease;
  355. }
  356.  
  357. /* POSTS */
  358.  
  359. #entries {
  360. position:relative;
  361. margin-left:auto;
  362. margin-right:auto;
  363. width:500px;
  364. margin-top:20px;
  365. margin-bottom:200px;
  366. }
  367.  
  368. #posts {
  369. width:500px;
  370. padding-top:105px;
  371. margin-left:auto;
  372. margin-right:auto;
  373. margin-top:30px;
  374. margin-bottom:20px;
  375. }
  376.  
  377. /* INFO */
  378.  
  379. #tags {
  380. font-size:8px;
  381. letter-spacing:1px;
  382. }
  383.  
  384.  
  385. #info {
  386. margin-top:10px;
  387. width:500px;
  388. line-height:25%;
  389. opacity:0;
  390. text-align:center;
  391. -webkit-transition: all 0.5s ease;
  392. -moz-transition: all 0.5s ease;
  393. -o-transition: all 0.5s ease;
  394. -ms-transition: all 0.5s ease;
  395. transition: all 0.5s ease;
  396. color:{color:tags};
  397. }
  398.  
  399. #info a {
  400. text-decoration:none;
  401. color:{color:info};
  402. }
  403.  
  404. #info a:hover {
  405. color:{color:text};
  406. -webkit-transition: all 0.5s ease;
  407. -moz-transition: all 0.5s ease;
  408. -o-transition: all 0.5s ease;
  409. -ms-transition: all 0.5s ease;
  410. transition: all 0.5s ease;
  411. }
  412.  
  413. #posts:hover #info {
  414. opacity:1;
  415. }
  416.  
  417. /* PERMALINK */
  418.  
  419. #permalink {
  420. color:{color:text};
  421. }
  422.  
  423. #permalink a {
  424. text-decoration:none;
  425. }
  426.  
  427. #note {
  428. margin-left:-25px;
  429. margin-top:-8px;
  430. }
  431.  
  432. #note img {
  433. display:none;
  434. }
  435.  
  436.  
  437. /* PAGINATION*/
  438.  
  439. #pagination {
  440. position:relative;
  441. margin-bottom:0px;
  442. margin-left:auto;
  443. margin-right:auto;
  444. font-family:helvetica;
  445. width:500px;
  446. font-size:10px;
  447. padding:11px;
  448. letter-spacing:1px;
  449. word-spacing:15px;
  450. text-align:center;
  451. text-transform:lowercase;
  452.  
  453. }
  454.  
  455. #pagination a {
  456. color:{color:pagination};
  457. opacity:1;
  458. text-decoration:none;
  459. }
  460.  
  461. #pagination a:hover{
  462. color:{color:link hover};
  463. }
  464.  
  465. /* TAGLIST*/
  466.  
  467. #infos {
  468. text-align:center;
  469. font-size:10px;
  470. color:#ccc;
  471. }
  472.  
  473. #infos a {
  474. color:#1e1e1e;
  475. font-family:montserrat;
  476. line-height:50px;
  477. background:#ccc;
  478. width:120px;
  479. margin:3px;
  480. display:inline-block;
  481. text-align:center;
  482. -o-transition: all 0.4s ease-out;
  483. -webkit-transition: all 0.4s ease-out;
  484. transition: all 0.4s ease-out;
  485. }
  486.  
  487. #infos a:hover {
  488. color:#fff;
  489. background:#000;
  490. border-radius:0px;
  491. }
  492.  
  493. #wrap {
  494. margin:auto;
  495. float:center;
  496. width:440px;
  497. height:100%;
  498. position:relative;
  499. background:#fff;
  500. opacity:.4;
  501. }
  502.  
  503. /* AUDIO */
  504.  
  505. .cover {
  506. position: relative;
  507. z-index: 1;
  508. width: 90px;
  509. float:left;
  510. border-radius:45px;
  511. }
  512.  
  513. .button {
  514. width:20px;
  515. height:30px;
  516. overflow: hidden;
  517. position: relative;
  518. z-index: 99;
  519. margin: 15px 24px 13px 16px;
  520. }
  521.  
  522. .player {
  523. background-color: #fff;
  524. position: absolute;
  525. z-index: 99;
  526. margin-top: 16px;
  527. margin-left: 15px;
  528. opacity: 0.3;
  529. border-radius:30px;
  530. -webkit-transition: opacity 0.2s linear;
  531. -webkit-transition: all 0.2s linear;
  532. -moz-transition: all 0.2s linear;
  533. -o-transition: all 0.2s linear;
  534. }
  535.  
  536. .player:hover {
  537. opacity:0.85;
  538. }
  539.  
  540. .musicinfo {
  541. padding:13px;
  542. font-size:12px;
  543. margin-left:100px;
  544. text-align:right;
  545. line-height:110%;
  546. }
  547.  
  548. /* ASKS */
  549.  
  550. #ask {
  551. padding:5px;
  552. padding-bottom:10px;
  553. padding-left:10px;
  554. text-align:right;
  555. color:{color:text};
  556. line-height:130%;
  557. border:0px solid #f3f3f3 opacity:0.5;
  558. }
  559. #ask img {
  560. margin-left:-2px;
  561. margin-bottom:-9px;
  562. padding:3px;
  563. }
  564.  
  565. #answer {
  566. text-align:left;
  567. padding:6px;
  568. color:{color:text};
  569. }
  570.  
  571. /* QUOTES */
  572.  
  573. #quote {
  574. font-family:lato;
  575. font-size:17px;
  576. font-weight:400;
  577. letter-spacing:1px;
  578. }
  579.  
  580. /* CAPTIONS */
  581.  
  582. #caption {
  583. margin-top:10px;
  584. background:{color:captions};
  585. width:480px;
  586. padding:10px;
  587. padding-top:1px;
  588. padding-bottom:1px;
  589. }
  590.  
  591.  
  592. /* TITLES */
  593.  
  594. #titles {
  595. font-family:montserrat;
  596. font-weight:400;
  597. font-size:15px;
  598. }
  599.  
  600. </style>
  601.  
  602. </head>
  603. <body>
  604.  
  605. <div id="container">
  606.  
  607. <div id="header">
  608.  
  609. <div id="headertitle"><a href="/" title="home">{text:header title}</a></div>
  610.  
  611. <div id="links">
  612.  
  613. <a title="ask" href="#?w=440" rel="box1" class="poplight"><div id="link1"></div></a>
  614. <a title="about" href="#?w=440" rel="box2" class="poplight"><div id="link1"></div></a>
  615. {block:IfTaglist}
  616. <a title="tags" href="#?w=440" rel="box3" class="poplight"><div id="link1"></div></a>
  617. {/block:IfTaglist}
  618. <a title="links" href="#?w=440" rel="box4" class="poplight"><div id="link1"></div></a>
  619.  
  620. {block:IfLink1}
  621. <a href="{text:link 1 url}"title="{text:link 1}"><div id="onelink"></div></a>
  622. {/block:IfLink1}
  623. {block:IfLink2}
  624. <a href="{text:link 2 url}"title="{text:link 2}"><div id="onelink"></div></a>
  625. {/block:IfLink2}
  626. {block:IfLink3}
  627. <a href="{text:link 3 url}"title="{text:link 3}"><div id="onelink"></div></a>
  628. {/block:IfLink3}
  629. {block:IfLink4}
  630. <a href="{text:link 4 url}"title="{text:link 4}"><div id="onelink"></div></a>
  631. {/block:IfLink4}
  632. </div>
  633. </div>
  634. </div>
  635.  
  636. <div id="entries">
  637. {block:Posts}
  638. <div id="posts">
  639.  
  640. {block:Text}
  641. {block:Title}<div id="titles">{Title}</div>{/block:Title}
  642. {Body}
  643. {/block:Text}
  644.  
  645. {block:Quote}<div id="quote"><big>“</big>{Quote}<big>”</big></div>{block:Source}<br> <div style="text-align: right;">— {Source}</div><br>{/block:Source}{/block:Quote}
  646.  
  647. {block:Link}
  648. <div id="titles"><a href="{URL}">{Name}</a></div>
  649. {block:Description}{Description}{/block:Description}
  650. {/block:Link}
  651.  
  652. {block:Photo}
  653. <center><img src="{PhotoURL-500}"/></center>
  654. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  655. {/block:Photo}
  656.  
  657. {block:Photoset}
  658. <center>{Photoset-500}</center>
  659. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  660. {/block:Photoset}
  661.  
  662. {block:Chat}
  663. {block:Title}<div id="titles">{Title}</div>{/block:Title}
  664. {block:Lines}
  665. {block:Label}<b>{Label}</b>{/block:Label}
  666. {Line}<br />
  667. {/block:Lines}
  668. {/block:Chat}
  669.  
  670. {block:Video}
  671. {Video-500}
  672. {block:Caption}{Caption}{/block:Caption}
  673. {/block:Video}
  674.  
  675. {block:Answer}
  676. <div id="ask"><img src="{AskerPortraitURL-24}" style="border-radius:90px; opacity:.85;margin-left:3px;"></div> &nbsp;<em>{Asker}:<br> &nbsp; <big>{Question}</big></em><br><br>{Answer}
  677. {/block:Answer}
  678.  
  679.  
  680. {block:Audio}
  681. <div class="player"><div class="button">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>{block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}<div class="musicinfo">
  682. {block:TrackName}<div style="font-size:12px;">{TrackName}</div>{/block:Trackname}<br>{block:Artist}<span style="font-size:10px;">{Artist}{/block:Artist}<br>{block:Album} {Album}{/block:Album}<br>{block:PlayCount}{PlayCount} plays </span>{/block:PlayCount}<br></div><div><style="margin-top:20px;"><br>{block:caption}{Caption}{/block:caption}</div>
  683. {/block:Audio}
  684.  
  685.  
  686. {block:IndexPage}
  687. {block:Date}<div id="info">
  688. <a href="{Permalink}">+{NoteCount}</a>
  689. {block:HasTags}{block:Tags}
  690. <p><a href="{TagURL}"><div id="tags">{Tag}</div></a>
  691. {/block:Tags}{/block:HasTags}{/block:Date}</div></p>
  692. {/block:IndexPage}
  693.  
  694.  
  695. {block:PermalinkPage}
  696. <div id="permalink"><center>{12Hour}:{Minutes} {AmPm} on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
  697. <p>{block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> + <a title="{ReblogRootName}" href="{ReblogRootURL}">source</a>{/block:RebloggedFrom}</p></a></center>
  698. {block:HasTags}
  699. <i>tagged as:</i> {block:Tags}<a href="{TagURL}">#{Tag}</a>
  700. {/block:Tags}
  701. {/block:HasTags}</div>
  702. {/block:PermalinkPage}
  703.  
  704. <br>
  705.  
  706. <div id="note">
  707. {block:PostNotes}
  708. {PostNotes}
  709. {/block:PostNotes}
  710. </div>
  711.  
  712. </div>
  713. {/block:Posts}
  714. </div>
  715.  
  716. {/block:posts}
  717.  
  718. {block:Pagination}
  719. <div id="pagination">
  720. {block:PreviousPage}
  721. <a href="{PreviousPage}">back</a>
  722. {/block:PreviousPage}
  723. {block:JumpPagination length="0"}
  724. {block:CurrentPage}
  725. <span class="current_page">{PageNumber}</span>
  726. {/block:CurrentPage}
  727. {block:JumpPage}
  728. <a class="jump_page" href="{URL}">{PageNumber}</a>
  729. {/block:JumpPage}
  730. {/block:JumpPagination}
  731. {block:NextPage}
  732. <a href="{NextPage}">forth</a>
  733. {/block:NextPage}
  734. </div>
  735. {/block:Pagination}
  736. </div>
  737.  
  738.  
  739. </body>
  740.  
  741. <div id="box1" class="popup_block">
  742. <iframe frameborder="0" border="0" scrolling="yes" width="440" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/taurielic.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  743. </div>
  744.  
  745. <div id="box2" class="popup_block">
  746.  
  747. {Description}
  748.  
  749. </div>
  750.  
  751. <div id="box3" class="popup_block">
  752.  
  753. <div id="wrap">
  754. <center>
  755. <div id="infos">
  756. <!-- here is an example ; put the link where the / is and the title where it says etc. take note if you are going to link something to a url outside your blog, add http:// -->
  757.  
  758. <!-- COPY THIS
  759. <a href="/">link name</a>
  760. IF YOU WANT TO ADD MORE LINKS -->
  761.  
  762. <a href="/tagged/doctor who">DOCTOR WHO</a>
  763. <a href="/tagged/music">MUSIC</a>
  764. <a href="/tagged/photography">PHOTOGRAPHY</a>
  765.  
  766. <a href="/tagged/game of thrones">GAME OF THRONES</a>
  767. <a href="/tagged/art">ART</a>
  768. <a href="/tagged/fashion">FASHION</a>
  769.  
  770. <a href="/tagged/sherlock">SHERLOCK</a>
  771. <a href="/tagged/cats">CATS</a>
  772. <a href="/tagged/cinematography">CINEMATOGRAPHY</a>
  773.  
  774. <a href="/tagged/the fall">THE FALL</a>
  775. <a href="/tagged/mythology">MYTHOLOGY</a>
  776. <a href="/tagged/text">TEXT POSTS</a>
  777.  
  778. </div>
  779.  
  780. </div>
  781. </div>
  782.  
  783. </div>
  784.  
  785. <div id="box4" class="popup_block" stlyle="color:{color:text};">
  786. <center>
  787. <p><a href="/tagged/theme">my themes</a>
  788.  
  789. <p><a href="/tagged/ask">↳ answered questions</a>
  790.  
  791. <p><a href="/tagged/fav"> favourtite posts</a>
  792. <br></br>
  793. <p><script language="JavaScript">
  794. var ref = (''+document.referrer+'');
  795. var w_h = window.screen.width + " x " + window.screen.height;
  796. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID4108544&e1=online&e2=online&r=' + ref + '&wh=' + w_h + '"><\/script>');
  797. </script>
  798.  
  799. </div>
  800.  
  801. </html>
Advertisement
Add Comment
Please, Sign In to add comment