Advertisement
aryasnark

aryasnark - Theme 7

Dec 5th, 2013
24,451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.52 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!--
  6.  
  7. THEME 7 by ARYASNARK
  8.  
  9. Copyright © Aryasnark 2013 All Rights Reserved. No part of this website may be reproduced without my express consent.
  10.  
  11. -->
  12.  
  13. <head>
  14. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <script type="text/javascript"
  20. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  21.  
  22. <script>
  23. $(document).ready(function() {
  24. //When you click on a link with class of poplight and the href starts with a #
  25. $('a.poplight[href^=#]').click(function() {
  26. var popID = $(this).attr('rel'); //Get Popup Name
  27. var popURL = $(this).attr('href'); //Get Popup href to define size
  28. //Pull Query & Variables from href URL
  29. var query= popURL.split('?');
  30. var dim= query[1].split('&');
  31. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  32. //Fade in the Popup and add close button
  33. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img class="btn_close"/></a>');
  34. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  35. var popMargTop = ($('#' + popID).height() + 80) / 2;
  36. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  37. //Apply Margin to Popup
  38. $('#' + popID).css({
  39. 'margin-top' : -popMargTop,
  40. 'margin-left' : -popMargLeft
  41. });
  42. //Fade in Background
  43. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  44. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  45. return false;
  46. });
  47. //Close Popups and Fade Layer
  48. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  49. $('#fade , .popup_block').fadeOut(function() {
  50. $('#fade, a.close').remove(); //fade them both out
  51. });
  52. return false;
  53. });
  54. });
  55. </script>
  56.  
  57. <meta name="color:background" content="#ffffff">
  58. <meta name="color:title" content ="#3b3b3b">
  59. <meta name="color:text" content="#3b3b3b">
  60. <meta name="color:tags" content="#555555">
  61. <meta name="color:tags hover" content="#555555">
  62. <meta name="color:link" content="#aaaaaa">
  63. <meta name="color:link hover" content="#232323">
  64. <meta name="color:sidelink" content="#3b3b3b">
  65. <meta name="color:sidelink hover" content="#292929">
  66. <meta name="color:border" content="#eeeeee">
  67. <meta name="color:scrollbar" content="#eeeeee">
  68. <meta name="color:scrollbar bg" content="#ffffff">
  69.  
  70. <meta name="if:400px" content="1"/>
  71. <meta name="if:500px" content="0"/>
  72. <meta name="if:show captions" content="1"/>
  73. <meta name="if:hover" content="1"/>
  74. <meta name="if:sidebarimg" content="0"/>
  75. <meta name="text:username" content=""/>
  76. <meta name="text:ask title" content=""/>
  77. <meta name="text:link 1 title" content="link 1"/>
  78. <meta name="text:link 2 title" content="link 2"/>
  79. <meta name="text:link 3 title" content="link 3"/>
  80.  
  81. <meta name="image:sidebar" content=""/>
  82.  
  83. <style type="text/css">
  84.  
  85. ::-webkit-scrollbar {width:7px; height:auto; background:{color:scrollbar bg};}
  86. ::-webkit-scrollbar-corner {background:{color:scrollbar};}
  87. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  88. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  89.  
  90. body {
  91. margin:0px;
  92. padding:0px;
  93. font-family:helvetica;
  94. font-size:10px;
  95. color:{color:text};
  96. background:{color:background};
  97. line height:110%;
  98. font-weight:lighter;
  99. }
  100.  
  101. a:link, a, a:active, a:visited {
  102. text-decoration:none;
  103. color:{color:link};
  104. transition-duration: 0.6s;
  105. -moz-transition-duration: 0.6s;
  106. -webkit-transition-duration: 0.6s;
  107. -o-transition-duration: 0.6s;
  108. }
  109. a:hover {
  110. color:{color:link hover};
  111. transition-duration: 0.6s;
  112. -moz-transition-duration: 0.6s;
  113. -webkit-transition-duration: 0.6s;
  114. -o-transition-duration: 0.6s;
  115. }
  116.  
  117. #entry {
  118. margin-left:420px;
  119. margin-top:30px;
  120. width:440px;
  121. font-family:helvetica;
  122. {block:if500px}
  123. width:540px;
  124. {/block:if500px}
  125. }
  126.  
  127. .post {
  128. overflow:hidden;
  129. float:center;
  130. text-align:left;
  131. margin-top:10px;
  132. margin-bottom:70px;
  133. padding-top:20px;
  134. padding-bottom:10px;
  135. width:400px;
  136. overflow:hidden;
  137. {block:if500px}
  138. width:500px;
  139. {/block:if500px}
  140. }
  141.  
  142. .info {
  143. width:400px;
  144. margin-bottom:10px;
  145. font-family:helvetica;
  146. font-size:8px;
  147. font-style:none;
  148. text-align:center;
  149. letter-spacing:1px;
  150. line-height:150%;
  151. text-transform:lowercase;
  152. padding-top:5px;
  153. {block:indexpage}
  154. {block:ifhover}
  155. opacity:0;
  156. {/block:ifhover}
  157. {block:indexpage}
  158. transition-duration: 0.5s;
  159. -moz-transition-duration: 0.5s;
  160. -webkit-transition-duration: 0.5s;
  161. -o-transition-duration: 0.5s;
  162. {block:if500px}
  163. width:500px;
  164. padding-top:7px;
  165. {/block:if500px}
  166. }
  167.  
  168. .info a {
  169. color:{color:tags};
  170. padding:5px;
  171. }
  172. .info a:hover {
  173. color:{color:tags hover};
  174. }
  175.  
  176. {block:ifhover}
  177. .post:hover .info {
  178. opacity:1;
  179. -webkit-transition: all 0.5s ease-in-out;
  180. -moz-transition: all 0.5s ease-in-out;
  181. -o-transition: all 0.5s ease-in-out;
  182. -ms-transition: all 0.5s ease-in-out;
  183. }
  184. {/block:ifhover}
  185.  
  186. h1 {
  187. font-family:helvetica;
  188. text-transform:uppercase;
  189. font-size:12px;
  190. font-weight:lighter;
  191. text-align:center;
  192. padding:7px;
  193. letter-spacing:6px;
  194. background:#f8f8f8;
  195. }
  196. h1 a {
  197. color:{color:title};
  198. text-transform:uppercase;
  199. font-weight:lighter;
  200. }
  201.  
  202. h3 {
  203. font-family:helvetica;
  204. text-transform:uppercase;
  205. font-size:12px;
  206. font-weight:lighter !important;
  207. text-align:center;
  208. padding:7px;
  209. letter-spacing:6px;
  210. line-height:150%;
  211. color:{color:background};
  212. }
  213.  
  214. #sidebar {
  215. width:280px;
  216. height:100%;
  217. left:110px;
  218. position:fixed;
  219. top:160px;
  220. overflow:hidden;
  221. {block:ifsidebarimg}
  222. top:50px;
  223. {/block:ifsidebarimg}
  224. }
  225.  
  226. {block:ifsidebarimg}
  227. #sidebar img {
  228. width:240px;
  229. height:auto;
  230. margin-bottom:10px;
  231. border:5px solid #f8f8f8;
  232. margin-left:10px;
  233. }
  234. {/block:ifsidebarimg}
  235.  
  236. #blogtitle {
  237. width:260px;
  238. font-family:helvetica;
  239. text-transform:uppercase;
  240. font-size:14px;
  241. font-weight:lighter;
  242. text-align:left;
  243. padding:10px;
  244. padding-bottom:9px;
  245. letter-spacing:8px;
  246. }
  247. #blogtitle a {
  248. color:{color:title};
  249. }
  250.  
  251. /*sidebar shit*/
  252. div { position:relative; }
  253.  
  254. input[type=checkbox] {
  255. position:absolute;
  256. top:0;
  257. left:0;
  258. width:100%;
  259. height:100%;
  260. opacity:0;
  261. }
  262.  
  263. h2 {
  264. display:navigate;
  265. font-family:helvetica;
  266. font-weight:lighter;
  267. width:100px;
  268. font-size:9px;
  269. letter-spacing:1px;
  270. text-align:left;
  271. font-style:none;
  272. text-transform:lowercase;
  273. line-height:180%;
  274. padding-left:3px;
  275. padding-right:3px;
  276. margin-left:15px;
  277. z-index:9999;
  278. color:{color:sidelink};
  279. }
  280. h2 a {
  281. color:{color:sidelink} !important;
  282. }
  283.  
  284. label {
  285. cursor:pointer;
  286. }
  287. label {
  288. position:relative;
  289. display:block;
  290. padding-left:10px;
  291. font-family:helvetica;
  292. font-weight:lighter;
  293. z-index:9999;
  294. }
  295.  
  296. label:before {
  297. content:"";
  298. position:absolute;
  299. width:0;
  300. height:0;
  301. top:50%;
  302. left:10px;
  303. z-index:9999;
  304.  
  305. }
  306.  
  307. input[type=checkbox]:checked ~ h2 label:before {
  308. margin-left:-4px;
  309. margin-top:-4px;
  310. z-index:9999;
  311. }
  312.  
  313. #description {
  314. max-height:0;
  315. overflow:hidden;
  316. padding-left:30px;
  317. transition:max-height 0.8s ease;
  318. font-family:helvetica;
  319. font-weight:lighter;
  320. font-size:9px;
  321. letter-spacing:1px;
  322. width:170px;
  323. line-height:150%;
  324. }
  325.  
  326. input[type=checkbox]:checked ~ h2 ~ #description {
  327. max-height:250px; /*MAX HEIGHT OF SIDEBAR CONTENT CHANGED HERE*/
  328. z-index:9999;
  329. }
  330.  
  331. .text_box:before {
  332. content :"";
  333. position :absolute;
  334. margin-left:2px;
  335. width:2px;
  336. height:16px;
  337. background:#f8f8f8;
  338. filter:alpha(opacity=100);
  339. -moz-opacity:1;
  340. -khtml-opacity:1;
  341. opacity:1;
  342. z-index:999;
  343. transition-duration: 0.8s;
  344. -moz-transition-duration: 0.8s;
  345. -webkit-transition-duration: 0.8s;
  346. -o-transition-duration: 0.8s;
  347. }
  348.  
  349. input[type="checkbox"]:hover ~ h2 .text_box:before {
  350. width:2px;
  351. background:#dddddd;
  352. transition-duration: 0.8s;
  353. -moz-transition-duration: 0.8s;
  354. -webkit-transition-duration: 0.8s;
  355. -o-transition-duration: 0.8s;
  356. }
  357.  
  358. input[type="checkbox"]:checked ~ h2 .text_box:before {
  359. width:100px;
  360. background:#f8f8f8;
  361. transition-duration: 0.8s;
  362. -moz-transition-duration: 0.8s;
  363. -webkit-transition-duration: 0.8s;
  364. -o-transition-duration: 0.8s;
  365. }
  366.  
  367. #pagination {
  368. width:400px;
  369. bottom:20px;
  370. padding-bottom:30px;
  371. font-size:8px;
  372. font-family:helvetica;
  373. text-align:center;
  374. letter-spacing:6px;
  375. {block:if500px}
  376. width:500px;
  377. {/block:if500px}
  378. }
  379. #pagination a {
  380. color:{color:sidelink};
  381. }
  382. .jump_page {
  383. padding:10px;
  384. color:{color:sidelink};
  385. border-top:2px solid {color:background};
  386. }
  387. .jump_page:hover {
  388. color:{color:sidelink hover};
  389. border-top:2px solid #eeeeee;
  390. }
  391. .current_page {
  392. padding:10px 8px 10px 10px;
  393. color:{color:sidelink};
  394. border-top:2px solid {color:border};
  395. }
  396.  
  397.  
  398. .quote {
  399. font-family:helvetica;
  400. font-size:10px;
  401. font-style:none;
  402. text-align:center;
  403. letter-spacing:0px;
  404. line-height:110%;
  405. padding:10px;
  406. border:2px solid #f8f8f8;
  407. }
  408.  
  409. #source {
  410. font-size:7px;
  411. text-transform:uppercase;
  412. letter-spacing:4px;
  413. text-align:center;
  414. padding:8px 5px 5px 5px;
  415. background-color:#f8f8f8;
  416. }
  417.  
  418. #source a {
  419. color:{color:text};
  420. border-bottom:1px solid #b8b8b8;
  421. }
  422.  
  423. .playbutton {
  424. width:20px;
  425. height:30px;
  426. overflow:hidden;
  427. position:relative;
  428. opacity:0.6;
  429. margin-top:27px;
  430. margin-left:10px;
  431. z-index:100;
  432. margin:9px 18px 7px 10px;
  433. }
  434.  
  435. .playbox {
  436. margin-top:15px;
  437. margin-left:13px;
  438. opacity:0.6;
  439. background-color:#fff;
  440. position: absolute;
  441. z-index: 100;
  442. -webkit-border-radius: 25px;
  443. -moz-border-radius: 25px;
  444. border-radius: 25px;
  445. }
  446.  
  447. .audio{
  448. position:absolute;
  449. width:40px;
  450. height:40px;
  451. }
  452.  
  453. .audioimg{
  454. width:75px;
  455. height:75px;
  456. position:absolute;
  457. }
  458.  
  459. .audioimg img{
  460. margin-left:0px;
  461. float:left;
  462. opacity:1;
  463. width:75px;
  464. }
  465.  
  466. .audiodata {
  467. background-color:{color:background};
  468. font-size:7px;
  469. letter-spacing:3px;
  470. font-family:helvetica;
  471. color:{color:text};
  472. padding:10px;
  473. text-transform:none;
  474. height:55px;
  475. width:305px;
  476. margin-top:0px;
  477. margin-left:75px;
  478. text-align:center;
  479. {block:if500px}
  480. width:405px;
  481. {/block:if500px}
  482. }
  483.  
  484. .caption {
  485. text-align:left;
  486. font-size:9px;
  487. padding:3px 20px 3px 30px;
  488. font-family:helvetica;
  489. display:block;
  490. color:{color:text};
  491. background:#f8f8f8;
  492. }
  493. .caption img {
  494. max-width:360px;
  495. }
  496. .caption a {
  497. color:{color:text};
  498. border-bottom:1px solid #b8b8b8;
  499. }
  500.  
  501. blockquote {
  502. padding-left:5px;
  503. border-left:2px solid {color:border};
  504. }
  505.  
  506. #asker {
  507. text-align:left;
  508. margin-top:0px;
  509. margin-bottom:-10px;
  510. font-size:10px;
  511. font-style:none;
  512. padding:10px;
  513. font-family:helvetica;
  514. background-color:#f8f8f8;
  515. }
  516.  
  517. #asker a {
  518. font-size:10px;
  519. font-family:helvetica;
  520. letter-spacing:0px;
  521. background:none;
  522. border-bottom:1px solid #b8b8b8;
  523. color:{color:text}
  524. }
  525.  
  526. #asked {
  527. font-size:10px;
  528. font-family:helvetica;
  529. letter-spacing:0px;
  530. background:none;
  531. }
  532.  
  533. #answer {
  534. font-family:helvetica;
  535. font-size:10px;
  536. font-style:none;
  537. text-align:left;
  538. letter-spacing:0px;
  539. padding:2px 10px 5px 10px;
  540. margin-top:7px;
  541. margin-bottom:5px;
  542. border:2px solid #f8f8f8;
  543. }
  544.  
  545.  
  546.  
  547. ol.notes {
  548. padding-bottom:2%;
  549. width:360px;
  550. list-style-type:upper-roman;
  551. text-align:left;
  552. font-size:9px;
  553. {block:if500px}
  554. width:460px;
  555. {/block:if500px}
  556. }
  557.  
  558. ol.notes li.note{
  559. border-bottom:1px solid {color:border};
  560. padding:2%;
  561. }
  562.  
  563. ol.notes li.note img.avatar{
  564. width:0px;
  565. height:0px;}
  566.  
  567. #fade {
  568. display: none;
  569. background: #000;
  570. position: fixed;
  571. left: 0;
  572. top: 0;
  573. width: 100%;
  574. height: 100%;
  575. opacity: .80;
  576. z-index: 9999;
  577. }
  578.  
  579. .popup_block{
  580. display: none;
  581. background:transparent;
  582. padding: 20px;
  583. float: left;
  584. position: fixed;
  585. top: 50%;
  586. left: 50%;
  587. z-index: 99999;
  588. }
  589.  
  590. *html #fade {
  591. position: absolute;
  592. }
  593.  
  594. *html .popup_block {
  595. position: absolute;
  596. }
  597.  
  598.  
  599. .showhide_element {
  600. display: none;
  601. }
  602.  
  603. #credit {
  604. bottom:15px;
  605. text-align:center;
  606. font-size:7px;
  607. letter-spacing:3px;
  608. font-family:helvetica;
  609. opacity:1;
  610. width:400px;
  611. {block:if500px}
  612. width:500px;
  613. {/block:if500px}
  614. }
  615.  
  616. </style></head>
  617. <body>
  618. <div id="sidebar">
  619. {block:ifsidebarimg}<div id="sidebar img"><img src="{image:sidebar}"/></div>{/block:ifsidebarimg}
  620. <div id="blogtitle"><a href="/">{Title}</a></div>
  621. <div>
  622. <input type="checkbox" id="description">
  623. <h2><div class="text_box"><label for="description">description</label></div></h2>
  624. <div id="description">{block:Description}{Description}{/block:Description}</div>
  625. </div>
  626.  
  627. <!-- 1ST LINK -->
  628. <div>
  629. <input type="checkbox" id="01">
  630. <h2><div class="text_box"><label for="01">{text:link 1 title}</label></div></h2>
  631. <div id="description">
  632. <!-- CONTENT BEGINS -->
  633. YOUR TEXT HERE
  634. <!-- CONTENT ENDS -->
  635. </div>
  636. </div>
  637.  
  638. <!-- 2ND LINK -->
  639. <div><input type="checkbox" id="02">
  640. <h2><div class="text_box"><label for="02">{text:link 2 title}</label></div></h2>
  641. <div id="description">
  642. <!-- CONTENT BEGINS -->
  643. YOUR TEXT HERE
  644. <!-- CONTENT ENDS -->
  645. </div>
  646. </div>
  647.  
  648. <!-- 3RD LINK -->
  649. <div>
  650. <input type="checkbox" id="03">
  651. <h2><div class="text_box"><label for="03">{text:link 3 title}</label></div></h2>
  652. <div id="description">
  653. <!-- CONTENT BEGINS -->
  654. YOUR TEXT HERE
  655. <!-- CONTENT ENDS -->
  656. </div>
  657. </div>
  658.  
  659. <!-- ASK LINK -->
  660. <div>
  661. <input type="checkbox" id="ask">
  662. <h2><a href="#?w=500" rel="askpop" class="poplight"><div class="text_box"><label for="ask">queries</label></div></a></h2>
  663. </div>
  664.  
  665. </div>
  666.  
  667. <div id="entry">
  668.  
  669. {block:Posts}
  670.  
  671. <div class="post">
  672.  
  673. {block:Text}
  674. {block:Title}<h1>{Title}</h1>{/block:Title}
  675. {Body}
  676. {/block:Text}
  677.  
  678.  
  679. {block:Photo}
  680. {block:if400px}
  681. <center><a href="{Permalink}"><img src="{PhotoURL-400}"></a></center>
  682. {/block:if400px}
  683. {block:if500px}
  684. <center><a href="{Permalink}"><img src="{PhotoURL-500}"></a></center>
  685. {/block:if500px}
  686.  
  687. {block:Caption}
  688. {block:ifshowcaptions}
  689. <span class="caption">{Caption}</span>
  690. {/block:ifshowcaptions}
  691. {/block:Caption}
  692. {/block:Photo}
  693.  
  694.  
  695. {block:Photoset}
  696. {block:if400px}
  697. {Photoset-400}
  698. {/block:if400px}
  699. {block:if500px}
  700. {Photoset-500}
  701. {/block:if500px}
  702.  
  703. {block:Caption}
  704. {block:ifshowcaptions}
  705. <span class="caption">{Caption}</span>
  706. {/block:ifshowcaptions}
  707. {/block:Caption}
  708. {/block:Photoset}
  709.  
  710. {block:Quote}
  711. {block:Source}
  712. <div id="source">{Source}</div>
  713. {/block:Source}
  714. <div class="quote">❝ {Quote} ❞</div>
  715. {/block:Quote}
  716.  
  717.  
  718. {block:Link}
  719. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  720. {block:Description}
  721. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  722. {/block:Description}
  723. {/block:Link}
  724.  
  725.  
  726. {block:Chat}
  727. {block:Title}<h1>{Title}</h1>{/block:Title}
  728. {block:Lines}
  729. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  730. {/block:Lines}
  731. {/block:Chat}
  732.  
  733. {block:Audio}
  734. <div class="audio">
  735. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>
  736. <div class="audioimg"><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg"></div>{block:AlbumArt}<div class="audioimg"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}</div>
  737. <div class="audiodata"><br><font style="text-transform:uppercase">{block:TrackName}{TrackName} - {/block:TrackName}
  738. {block:Artist}{Artist}{/block:Artist}<br><br><small><small>{PlayCountWithLabel}</small></small></font></div>
  739.  
  740. {block:Caption}
  741. {block:ifshowcaptions}
  742. <span class="caption">{Caption}</span>
  743. {/block:ifshowcaptions}
  744. {/block:Caption}
  745. {/block:Audio}
  746.  
  747.  
  748.  
  749. {block:Video}
  750. {block:if400px}
  751. {Video-400}
  752. {/block:if400px}
  753. {block:if500px}
  754. {Video-500}
  755. {/block:if500px}
  756.  
  757. {block:Caption}
  758. {block:ifshowcaptions}
  759. <span class="caption">{Caption}</span>
  760. {/block:ifshowcaptions}
  761. {/block:Caption}
  762. {/block:Video}
  763.  
  764.  
  765. {block:Answer}
  766. <div id="asker">{Asker} <font id="asked">asked:</font>
  767. <font-style="font-family:times new roman;"><i>{Question}</i></font></div>
  768. <div id="answer">{Answer}</div>
  769. {/block:Answer}
  770.  
  771. {block:IndexPage}
  772. <div class="info">{block:Date}<a href="{Permalink}"><small>{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small></a>{/block:Date} {block:HasTags}{block:Tags}
  773. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <small>+{NoteCount}</small>{/block:NoteCount}</div>
  774. {/block:IndexPage}
  775.  
  776. {block:PermalinkPage}
  777. <div class="info">{block:Date}<a href="{Permalink}"><small>{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small></a>{/block:Date} {block:HasTags}{block:Tags}
  778. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <small>+{NoteCount}</small>{/block:NoteCount}</div>
  779. <center><font style="padding:5px;font-size:6px;text-transform:uppercase;letter-spacing:3px;">{block:ContentSource}by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a></font></center>
  780. {/block:PermalinkPage}
  781.  
  782. </div>
  783. {/block:Posts}
  784.  
  785. {block:PermalinkPage}
  786. {block:PostNotes}
  787. <div id="notes">{PostNotes}</div>
  788. {/block:PostNotes}
  789. {/block:permalinkpage}
  790.  
  791. <div id="pagination">
  792. {block:IndexPage}
  793. {block:Pagination}
  794. {block:PreviousPage}
  795. <a href="{PreviousPage}">←</a>&nbsp;&nbsp;
  796. {/block:PreviousPage}
  797. {block:JumpPagination length="5"}
  798. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  799. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  800. {/block:JumpPagination}
  801. {block:NextPage}
  802. &nbsp;&nbsp;<a href="{NextPage}">→</a>
  803. {/block:NextPage}
  804. {/block:Pagination}
  805. {/block:IndexPage}
  806. </div>
  807.  
  808. <div id="credit"><a href="http://aryasnark.tumblr.com">© ARYASNARK</a></div>
  809.  
  810. </div>
  811.  
  812. </div>
  813.  
  814. <div id="askpop" class="popup_block">
  815. <center>
  816. <h3>{text:ask title}</h3>
  817. <iframe frameborder="0" border="0" scrolling="no" width="100%" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/{text:username}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  818. </center>
  819. </div>
  820. </div></div></div></div></div></div></div></div></div></div>
  821.  
  822. </body>
  823. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement