Advertisement
singforabsolution

Theme By Kelsey #23

May 3rd, 2012
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.63 KB | None | 0 0
  1. <!-- please don't remove the credit or use as a base code-->
  2.  
  3. <head>
  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"><img src="http://png-1.findicons.com/files//icons/1715/gion/24/dialog_cancel.png" class="btn_close" title="Close it" alt="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. <!--Default Variables-->
  38. <!--Colors-->
  39. <meta name="color:Background" content="#e0eee0"/>
  40. <meta name="color:Text" content="#000000"/>
  41. <meta name="color:Post Title" content="#1C1C1C"/>
  42. <meta name="color:Link" content="#838B83"/>
  43. <meta name="color:Link Hover" content="#C1CDC1"/>
  44. <meta name="color:Blog Title" content="#838B83"/>
  45. <meta name="color:Chat 1" content=""/>
  46. <meta name="color:Chat 2" content=""/>
  47. <meta name="color:Ask Background" content="#E8E8E8"/>
  48. <meta name="color:Sidelinks" content="#e9e7e7"/>
  49. <meta name="color:Border" content="#131111"/>
  50. <meta name="color:Sidelinks" content="#CFCFCF">
  51.  
  52. <!--Images-->
  53. <meta name="image:Background" content="http://media.tumblr.com/tumblr_m15d6bl9L91qe92a9.png"/>
  54. <meta name="image:Sidebar" content="http://26.media.tumblr.com/tumblr_m2ygdsygm91qcfgpgo1_500.png"/>
  55. <meta name="image:Main" content="http://media.tumblr.com/tumblr_m15dllWOXC1qe92a9.png"/>
  56.  
  57. <!--Options-->
  58. <meta name="if:Infinite Scrolling" content=""/>
  59. <meta name="if:Tiny Cursor" content="1"/>
  60. <meta name="if:Tiny Scrollbar" content="1"/>
  61. <meta name="if:Box shadows" content="1"/>
  62. <meta name="if:Box borders" content="1"/>
  63. <meta name="if:Rainbow Links" content=""/>
  64. <meta name="if:Show Caption" content=""/>
  65. <meta name="if:Faded Images" content=""/>
  66.  
  67. <!--Links-->
  68. <meta name="text:Link 1 URL" content="/"/>
  69. <meta name="text:Link 1 name" content="link 1"/>
  70. <meta name="text:Link 2 URL" content="/"/>
  71. <meta name="text:Link 2 name" content="link 2"/>
  72. <meta name="text:Link 3 URL" content="/"/>
  73. <meta name="text:Link 3 name" content="link 3"/>
  74. <meta name="text:Link 4 URL" content="/"/>
  75. <meta name="text:Link 4 name" content="link 4"/>
  76.  
  77. {block:Description}
  78. <meta name="description" content="{MetaDescription}" />{/block:Description}
  79. <title>
  80. {block:PostSummary}
  81. {PostSummary} - {/block:PostSummary}{Title}</title>
  82.  
  83. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  84.  
  85. <link href='http://fonts.googleapis.com/css?family=Short+Stack|Gochi+Hand|Annie+Use+Your+Telescope' rel='stylesheet' type='text/css'>
  86.  
  87. </style>
  88. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  89. <style type="text/css">
  90.  
  91. {block:iftinycursor}
  92. body, a, a:hover {cursor: url(http://i.imgur.com/2qleX.jpg), progress;}{/block:iftinycursor}
  93.  
  94.  
  95. {block:iftinyscrollbar}
  96. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  97. ::-webkit-scrollbar-thumb { background-color: #E8E8E8; -webkit-border-radius: 1ex; border: 1px solid black;}
  98. {/block:iftinyscrollbar}
  99.  
  100. {block:ifFadedImages}img{
  101. opacity: 0.8;
  102. filter:alpha(opacity=10);
  103. -moz-opacity: 0.1;
  104. -moz-transition: all .9s ease;
  105. -o-transition: all .9s ease;
  106. transition: all .9s ease;
  107. -webkit-transition: all .9s ease;}
  108. {/block:ifFadedImages}
  109.  
  110.  
  111. {block:ifFadedImages} img:hover{
  112. opacity: 1;
  113. filter:alpha(opacity=100);
  114. -moz-opacity: 1;
  115. -moz-transition: all .9s ease;
  116. -o-transition: all .9s ease;
  117. transition: all .9s ease;
  118. -webkit-transition: all .9s ease;}
  119. {/block:ifFadedImages}
  120.  
  121. @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  122.  
  123. body{
  124. background-color: {color:Background};
  125. background-image:url({image:Background});
  126. background-attachment:fixed;
  127. background-repeat:repeat;
  128. background-position:center;
  129. font-family: 'Short Stack', cursive;
  130. font-size:12px;
  131. line-height:13px;
  132. letter -spacing:0px;
  133. color:{color:Text};
  134. text-align:justify;
  135. }
  136.  
  137. a:link, a:active, a:visited{
  138. color: {color:Link};
  139. text-decoration:none;
  140. }
  141. a:hover{
  142. color: {color:Link Hover};
  143. -webkit-transition: all 0.3s linear;
  144. -moz-transition: all 0.3s linear;
  145. transition: all 0.3s linear;
  146. {block:iftinycursor}cursor: url(http://i.imgur.com/IepP2.jpg), progress{/block:iftinycursor};
  147. }
  148.  
  149. .popup_block{
  150. display: none;
  151. background-image: url({image:Main});
  152. padding: 10px;
  153. float: left;
  154. font-size: 12px;
  155. position: fixed;
  156. top: 50%; left: 50%;
  157. z-index: 1;
  158. {block:ifboxshadows};
  159. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  160. {/block:ifboxshadows}
  161. {block:ifboxborders}
  162. border: 5px solid {color:Border};
  163. {/block:ifboxborders}
  164. }
  165. img.btn_close {
  166. float: right;
  167. margin: -5px -5px 0 0;
  168. }
  169. *html .popup_block {
  170. position: absolute;
  171. }
  172.  
  173. #container {
  174. margin:auto;
  175. position:right;
  176. width:1200px;
  177. color: {color:Title};
  178. _margin-left:10%;
  179. }
  180.  
  181. #center {
  182. margin:auto;
  183. position:relative;
  184. width:800px;
  185. background-color:;
  186. overflow:auto;
  187. overflow-y:hidden;
  188. }
  189.  
  190. #content {
  191. float:center;
  192. width:415px;
  193. padding:3px;
  194. margin-top:0px;
  195. margin-left:550px;
  196. background:transparent;
  197. {block:ifboxborders}
  198. width:420px;
  199. {/block:ifboxborders}
  200. }
  201.  
  202. #entry {
  203. margin-top:15px;
  204. padding:5px;
  205. background-color:white;
  206. background-image: url({image:Main});
  207. {block:ifboxshadows};
  208. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  209. {/block:ifboxshadows}
  210. {block:ifboxborders}
  211. border: 5px solid {color:Border};
  212. {/block:ifboxborders}
  213. }
  214.  
  215. #entry img{
  216. {block:IndexPage}max-width:400px;{/block:IndexPage}
  217. }
  218.  
  219. #entry .permalink a{
  220. color:{color:Link};
  221. }
  222.  
  223. #entry .permalink{
  224. width:auto;
  225. padding-right:2px;
  226. padding-left:2px;
  227. position:absolute;
  228. text-align:left;
  229. font-family:silkscreen;
  230. font-size:8px;
  231. overflow:hidden;
  232. background-color:transparent;
  233. margin-left:0px;
  234. opacity:0.0;
  235. background-color:white;
  236. }
  237.  
  238. #entry:hover .permalink{
  239. margin-left:5px;
  240. margin-top:3px;
  241. overflow:visible;
  242. -webkit-transition: opacity 0.3s linear; opacity: 0.8;
  243. -webkit-transition: all 0.3s linear;
  244. -moz-transition: all 0.3s linear;
  245. transition: all 0.3s linear;
  246. }
  247.  
  248. #side {
  249. position:fixed !important;
  250. width:220px;
  251. height:1300px;
  252. font-size:12px;
  253. line-height:12px;
  254. background-color:white;
  255. background-image: url({image:Main});
  256. margin-top:-20px;
  257. margin-left:-552px ;
  258. padding:2px;
  259. {block:ifboxshadows};
  260. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  261. {/block:ifboxshadows}
  262. {block:ifboxborders}
  263. border: 5px solid {color:Border};
  264. {/block:ifboxborders}
  265. }
  266.  
  267. .links {
  268. font-family:short stack;
  269. font-size:15px;
  270. line-height:29px;
  271. }
  272.  
  273. .navi {
  274. position:fixed;
  275. font-family: 'Short Stack', cursive;
  276. font-size:15px;
  277. line-height:20px;
  278. width:60px;
  279. height:160px;
  280. background:clear;
  281. margin-top:45px;
  282. margin-left:-101px;
  283. z-index:1;
  284. }
  285.  
  286. .nav1 a{
  287. background: {color:Sidelinks};
  288. color: #ffffff;
  289. letter-spacing: 0px;
  290. display:block;
  291. padding:0px 0;
  292. padding-bottom:1px;
  293. border: 2px solid {color:Border};
  294. width: 100px;
  295. margin-top:1px;
  296. position:relative;
  297. z-index:1;
  298. -webkit-transition: all 0.3s linear;
  299. -moz-transition: all 0.3s linear;
  300. transition: all 0.3s linear;
  301. -webkit-border-top-left-radius: 15px;
  302. -moz-border-radius-topleft: 15px;
  303. border-top-left-radius: 15px;
  304. }
  305.  
  306. .nav1 a:hover{
  307. background: #707070;
  308. color: #ffffff;
  309. -webkit-transition: all 0.3s linear;
  310. -moz-transition: all 0.3s linear;
  311. transition: all 0.3s linear;
  312. }
  313.  
  314. .navs a{
  315. background: {color:Sidelinks};
  316. color: #ffffff;
  317. letter-spacing: 0px;
  318. display:block;
  319. padding:0px 0;
  320. padding-bottom:1px;
  321. border: 2px solid {color:Border};
  322. width: 100px;
  323. margin-top:-2px;
  324. position:relative;
  325. z-index:1;
  326. -webkit-transition: all 0.3s linear;
  327. -moz-transition: all 0.3s linear;
  328. transition: all 0.3s linear;
  329. }
  330.  
  331. .navs a:hover{
  332. background: #707070;
  333. color: #ffffff;
  334. -webkit-transition: all 0.3s linear;
  335. -moz-transition: all 0.3s linear;
  336. transition: all 0.3s linear;
  337. }
  338.  
  339. .cred a{
  340. background: {color:Sidelinks};
  341. color: #ffffff;
  342. letter-spacing: 0px;
  343. display:block;
  344. padding:0px 0;
  345. padding-bottom:1px;
  346. border: 2px solid {color:Border};
  347. width: 100px;
  348. margin-top:-2px;
  349. position:relative;
  350. z-index:1;
  351. -webkit-transition: all 0.3s linear;
  352. -moz-transition: all 0.3s linear;
  353. transition: all 0.3s linear;
  354. -webkit-border-bottom-left-radius: 15px;
  355. -moz-border-radius-bottomleft: 15px;
  356. border-bottom-left-radius: 15px;
  357. }
  358.  
  359. .cred a:hover{
  360. background: #707070;
  361. color: #ffffff;
  362. -webkit-transition: all 0.3s linear;
  363. -moz-transition: all 0.3s linear;
  364. transition: all 0.3s linear;
  365. }
  366.  
  367. .blogtitle{
  368. font-size:30px;
  369. font-family: 'Annie Use Your Telescope', cursive;
  370. line-height:36px;
  371. padding-top:12px;
  372. color: {color:Blog Title};
  373. font-weight:bold;
  374. }
  375.  
  376. .posttitle{
  377. font-size:20px;
  378. font-family: 'Annie Use Your Telescope', cursive;
  379. line-height:16px;
  380. text-transform:uppercase;
  381. color: {color:Post Title};
  382. letter-spacing: 1;
  383. }
  384.  
  385.  
  386. blockquote{
  387. padding:0px 0px 2px 5px;
  388. margin:0px 0px 2px 1px;
  389. border-left: 1px solid {color:Text};}
  390. blockquote p, ul{margin:0px; padding:0px;
  391. }
  392.  
  393. .chat .line{
  394. color:{color:Chat 1};
  395. padding: 2px;
  396. border-bottom: 1px dotted black;
  397. }
  398. .chat .line.odd{
  399. color:{color:Chat 2};
  400. border-bottom: 1px dotted black;
  401. }
  402.  
  403. .label {font-weight:bold; color:{color:text}}
  404.  
  405. .question {
  406. color:{color:Text};
  407. font-size:10px;
  408. font-weight:normal;
  409. line-height:95%;
  410. background: {color:Ask Background};
  411. margin: 0 0 10px 0;
  412. padding: 10px 15px;
  413. position:relative;
  414. -moz-border-radius:5px; -webkit-border-radius:5px;
  415. }
  416.  
  417. .questionarrow {
  418. width:13px;
  419. height:7px;
  420. font-size:30px;
  421. position:absolute;
  422. color:{color:Ask Background};
  423. bottom: -3.5px;
  424. left: 260px;
  425. }
  426.  
  427.  
  428. .asker {
  429. width:500px;
  430. text-align:left;
  431. color:{color:Text};
  432. font-family:silkscreen;
  433. font-size:9px;
  434. }
  435.  
  436. .asker a {
  437. color:{color:Text};
  438. }
  439.  
  440. .asker img {
  441. float:left;
  442. margin-left:220px;
  443. vertical-align:top;
  444. margin-right:3px;
  445. max-height:15px;
  446. }
  447.  
  448. a img{border:0px;}
  449.  
  450. .p { padding-top:5px; }
  451. .ol, ul { margin-left:10px; padding:5px; }
  452. .ul { list-style-type:square; }
  453.  
  454. .albumart { margin-bottom:0px; }
  455. .albumart img, .audio embed { width:55px; padding-right:3px; }
  456.  
  457. .video embed, .post div.video object {width:250px !important; height:187px !important;}
  458.  
  459. .notes img{width:10px; position:left; top:3px;}
  460.  
  461. .tags {
  462. width:auto;
  463. solid {color:Links};
  464. font-family:silkscreen;
  465. font-size:8px;
  466. text-transform:uppercase;
  467. color:{color:link};
  468. padding:2px;
  469. line-height:1;
  470. margin-left:1px;
  471. }
  472.  
  473. .tags a:hover{
  474. color: {color:Link Hover};
  475. }
  476.  
  477. .pic{
  478. border-top:1px dashed black;
  479. padding-top:3px;
  480. padding-bottom:3px;
  481. }
  482.  
  483. .pages {
  484. height:16px;
  485. padding-top:5px;
  486. margin-top:10px;
  487. font-size:8px;
  488. font-family:silkscreen;
  489. float:center;
  490. background-color:white;
  491. {block:ifboxshadows};
  492. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  493. {/block:ifboxshadows}
  494. {block:ifboxborders}
  495. border: 1px solid black;
  496. {/block:ifboxborders}
  497. }
  498.  
  499. {font-size: 100%;}
  500.  
  501. {CustomCSS}
  502. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.5;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  503.  
  504. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  505. </style>
  506.  
  507. <link rel="shortcut icon" href="{Favicon}">
  508.  
  509. <link rel="alternate" type="application/rss+xml" title="{Title}" href="{RSS}" />
  510.  
  511. {block:ifrainbowlinks}<script type="text/javascript" src="http://static.tumblr.com/jn17x0j/2Zvltn7mc/rainbow_links.txt
  512. "></script>{/block:ifrainbowlinks}
  513.  
  514. {block:ifinfinitescrolling}<style>#toTop {display:none;text-decoration:none;position:fixed;bottom:20px;right:20px;overflow:hidden;width:30px;height:40px;border:none;text-indent:-999px;background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left top;z-index:3000;}#toTopHover {background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left -40px;
  515. width:30px;height:40px;display:block;overflow:hidden;float:left;opacity: 0;-moz-opacity: 0;filter:alpha(opacity=0);}
  516. #toTop:active, #toTop:focus {outline:none;}#toTop:active, #toTop:focus {outline:none;}</style>
  517.  
  518. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
  519. <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
  520. <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
  521. <script type="text/javascript">
  522. $(document).ready(function() {
  523. $().UItoTop({ easingType: 'easeOutQuart' });
  524. });
  525. </script>{/block:ifinfinitescrolling}
  526.  
  527.  
  528. </head>
  529. <body>
  530. <div id="container">
  531. <div id="center">
  532. <div id="content">
  533. <div id="side">
  534. <center>
  535. <div class="blogtitle"><a href="/">{Title}</a></div>
  536.  
  537.  
  538. </center>
  539. <div class="pic">
  540. <img src="{image:Sidebar}" width="220" style=" float:right; border:0px solid {color:borders}; padding:0px; background:transparent;"/>
  541. </div>
  542. <br><br>
  543. </center>
  544. {Description}
  545.  
  546.  
  547. <center>
  548. {block:ifNotInfiniteScrolling}
  549. <br>
  550. {block:PreviousPage} <a href="{PreviousPage}"><font size="2">◄</font></a>{/block:PreviousPage}
  551. {block:NextPage}<a href="{NextPage}"><font size="2">►</font></a>{/block:NextPage}{/block:ifpagination}
  552. {block:PermalinkPagination}
  553. {block:PreviousPost}<a href="{PreviousPost}"><font size="2">▼</font></a>{/block:PreviousPost}
  554. {block:NextPost}<a href="{NextPost}"><font size="2">▲</font></a>{/block:NextPost}
  555. {/block:PermalinkPagination}
  556. {/block:ifNotInfiniteScrolling}
  557.  
  558. </div>
  559. </div>
  560.  
  561. <center>
  562. <div class="navi">
  563. <div class="nav1">
  564. <a href="/">HOME</a>
  565. </div>
  566. <div class="navs">
  567. <a href="/ask">ASK</a>
  568. <a href="#?w=370" rel="02" class="poplight">NAVIGATE&nbsp;</a>
  569. </div>
  570. <div class="cred">
  571. <a href="http://sociallyawkwardgiraffe.tumblr.com/">THEME</a>
  572. </center>
  573. </div></div>
  574.  
  575. <div id="02" class="popup_block">
  576. <center>
  577. <div style="font-family:short stack;font-size:30px;line-height:35px;">LINKS</div>
  578. <br><br>
  579. <div class="links">
  580. <a href="{text:Link 1 URL}">{text:Link 1 Name}</a>&nbsp;·
  581. <a href="{text:Link 2 URL}">{text:Link 2 Name}</a>&nbsp;·
  582. <a href="{text:Link 3 URL}">{text:Link 3 Name}</a>&nbsp;·
  583. <a href="{text:Link 4 URL}">{text:Link 4 Name}</a>&nbsp;
  584. </center>
  585. </div>
  586.  
  587. </div>
  588.  
  589. <div id="content">
  590. {block:Posts}
  591. <div id="entry">
  592. {block:IndexPage}
  593. <div class="permalink">
  594. <a href="{permalink}">{NoteCountWithLabel}</a> <br> <a href="{reblogurl}" target="_blank">reblog</a></div>
  595. {/block:IndexPage}
  596.  
  597. {block:Text}{block:Title}<span class="posttitle">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>{/block:text}
  598.  
  599. {block:Link}<a href="{URL}" class="posttitle">{Name}</a>{block:Description}{Description}{/block:Description}{/block:link}
  600.  
  601. {block:Photo}<center>{LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=400px/></a>{LinkCloseTag}</center>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Photo}
  602.  
  603. {block:Photoset}<center>{Photoset-400}</center></span>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Photoset}
  604.  
  605. {block:Quote}<span class="posttitle">{Quote}</span>{block:Source}<i> - {Source}</i>{/block:Source}<br>{/block:Quote}
  606.  
  607. {block:Chat}{block:title}<div id="title"><center>{Title}<br></center></div>{/block:title}<div class="chat">{block:Lines}<div class="chat"><div class="line {Alt}"><div class="{Alt} user_{UserNumber}">
  608. {block:Label}<span class="label"><b>{Label}</b></span>{/block:Label}{Line}</div></div></div>{/block:Lines}</div>{/block:Chat}
  609.  
  610. {block:Audio}{block:albumart}<div class="albumart"><img src="{albumarturl}" align="left"></div>{/block:albumart}<div style="width: 400px; height: 20px;">{AudioPlayerGrey}</div><BR>{block:TrackName}<span><strong>Title</strong>:
  611. {TrackName}</span>{/block:TrackName}<br>
  612. {block:Artist}<span><strong>Artist:</strong>
  613. {Artist}</span>{/block:Artist}<br>
  614. {block:Caption}{Caption}{/block:Caption}
  615. {/block:Audio}
  616.  
  617. {block:Video}<center>{Video-400}<BR></center>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{/block:Video}
  618.  
  619.  
  620.  
  621. {block:Answer}
  622. <div class="question">
  623. <div class="questionarrow">▼</div>
  624. {Question}
  625. </div>
  626. <div class="asker"><img src="{AskerPortraitURL-24}">{Asker}</div>
  627. <div class="answer">{Answer}</div>
  628. {/block:answer}
  629.  
  630. {block:HasTags}<div class="tags"> tags: {block:Tags}<a href="{TagURL}" target="_blank">#{Tag} </a>{/block:Tags}</div>{/block:HasTags}
  631. </center>
  632.  
  633. {block:PermalinkPage}
  634. <div id="permapage"><Br>{block:Date}{Month} {DayofMonth},{Year}{/block:Date}{block:NoteCount} · {NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · Tags: {block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}{/block:HasTags}</div>
  635. {/block:PermalinkPage}
  636.  
  637. {block:PostNotes}{PostNotes}
  638. {/block:PostNotes}</div>{/block:Posts}
  639.  
  640. </div></div>
  641. </div>
  642. </body>
  643. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement