franzzfu

Theme 17: Kamikakushi

Sep 22nd, 2014
1,567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <!----
  9.  
  10. theme17 by franz @ silmahril.tumblr.com/
  11. DO NOT REMOVE THE CREDIT OR I WILL TURN YOUR PARENTS INTO PIGS
  12.  
  13. --->
  14.  
  15. <meta name="color:Background" content="#ffffff"/>
  16. <meta name="color:Border" content="#e6e6e6"/>
  17. <meta name="color:Text" content=""/>
  18. <meta name="color:Link" content="#b8b8b8"/>
  19. <meta name="color:Hover" content=""/>
  20. <meta name="color:Scrollbar" content="#e6e6e6"/>
  21. <meta name="color:Scrollbar bg" content="#ffffff"/>
  22.  
  23. <meta name="image:topbar" content=""/>
  24.  
  25. <meta name="if:hide caption" content="1"/>
  26. <meta name="if:250px posts" content="1"/>
  27.  
  28. <meta name="text:link 1 title" content="link 1"/>
  29. <meta name="text:link 1" content=""/>
  30. <meta name="text:link 2 title" content="link 2"/>
  31. <meta name="text:link 2" content=""/>
  32. <meta name="text:link 3 title" content="link 3"/>
  33. <meta name="text:link 3" content=""/>
  34. <meta name="text:link 4 title" content="link 4"/>
  35. <meta name="text:link 4" content=""/>
  36. <meta name="text:link 5 title" content="link 5"/>
  37. <meta name="text:link 5" content=""/>
  38.  
  39.  
  40. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  41.  
  42. <script type="text/javascript">
  43. jQuery(document).ready(function() {
  44. jQuery(".links").hide();
  45. //toggle the componenet with class msg_body
  46. jQuery(".navi").click(function()
  47. {
  48. jQuery(this).next(".links").slideToggle("normal");
  49. });});
  50. </script>
  51.  
  52. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  53.  
  54. <script>
  55. (function($){
  56. $(document).ready(function(){
  57. $("a[title]").style_my_tooltips({
  58. tip_follows_cursor:true,
  59. tip_delay_time:30,
  60. tip_fade_speed:300,
  61. attribute:"title"
  62. });
  63. });
  64. })(jQuery);
  65. </script>
  66.  
  67.  
  68. <style type="text/css">
  69.  
  70. #s-m-t-tooltip{
  71. font-size:8px;
  72. position:absolute;
  73. margin-top:15px;
  74. letter-spacing:2px;
  75. z-index:9999;
  76. background:{color:background};
  77. color:{color:text};
  78. text-transform:uppercase;
  79. padding:5px;
  80. -webkit-transition:all 0.3s;
  81. -moz-transition:all 0.3s;
  82. -ms-transition:all 0.3s;
  83. -o-transition:all 0.3s;
  84. transition:all 0.3s;
  85. }
  86.  
  87. ::-webkit-scrollbar {
  88. width:3px;
  89. height:auto;
  90. background:{color:scrollbar bg};}
  91. ::-webkit-scrollbar-corner {background:{color:scrollbar bg};}
  92. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  93. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  94.  
  95.  
  96. /*main structure*/
  97.  
  98.  
  99. body {
  100. background:{color:background};
  101. margin:0px;
  102. color:{color:text};
  103. font-family:consolas;
  104. font-size:9px;
  105. letter-spacing:1px;
  106. line-height:150%;
  107. }
  108.  
  109. a {
  110. text-decoration:none;
  111. outline:none;
  112. -moz-outline-style:none;
  113. color:{color:link};
  114. -webkit-transition:all .4s ease-in-out;
  115. -moz-transition:all .4s ease-in-out;
  116. transition:all .4s ease-in-out;
  117. }
  118.  
  119. a:hover {
  120. color:{color:hover};
  121. -webkit-transition:all .4s ease-in-out;
  122. -moz-transition:all .4s ease-in-out;
  123. transition:all .4s ease-in-out;
  124. }
  125.  
  126. img {
  127. border:none;
  128. text-decoration:none
  129. }
  130.  
  131. #caption {
  132. {block:ifnot250pxposts}
  133. width:390px;
  134. {/block:ifnot250pxposts}
  135. {block:if250pxposts}
  136. width:240px;
  137. {/block:if250pxposts}
  138. text-align:left;
  139. padding:5px;
  140. margin-top:5px;
  141. font-size:9px;
  142. }
  143.  
  144. blockquote {
  145. {block:ifnot250pxposts}
  146. width:370px;
  147. {/block:ifnot250pxposts}
  148. {block:if250pxposts}
  149. width:220px;
  150. {/block:if250pxposts}
  151. margin-left:10px;
  152. padding-left:10px;
  153. border-left:1px solid {color:border};
  154. }
  155.  
  156. blockquote blockquote {
  157. {block:ifnot250pxposts}
  158. width:340px;
  159. {/block:ifnot250pxposts}
  160. {block:if250pxposts}
  161. width:190px;
  162. {/block:if250pxposts}
  163. margin-left:10px;
  164. padding-left:10px;
  165. border-left:1px solid {color:border};
  166. }
  167.  
  168. #posttitle {
  169. {block:ifnot250pxposts}
  170. width:400px;
  171. {/block:ifnot250pxposts}
  172. {block:if250pxposts}
  173. width:250px;
  174. {/block:if250pxposts}
  175. font-size:15px;
  176. text-align:center;
  177. text-transform:uppercase;
  178. letter-spacing:2px;
  179. line-height:130%;
  180. padding:0 15px 10px 15px;
  181. margin-left:-15px;
  182. border-bottom:1px solid {color:border};
  183. }
  184.  
  185. #text {
  186. padding:5px;
  187. }
  188.  
  189. #entries {
  190. background-color:{color:background};
  191. margin-left:auto;
  192. margin-right:auto;
  193. {block:ifnot250pxposts}
  194. width:430px;
  195. {/block:ifnot250pxposts}
  196. {block:if250pxposts}
  197. width:280px;
  198. {/block:if250pxposts}
  199. }
  200.  
  201. #post {
  202. {block:ifnot250pxposts}
  203. width:400px;
  204. {/block:ifnot250pxposts}
  205. {block:if250pxposts}
  206. width:250px;
  207. {/block:if250pxposts}
  208. margin-top:90px;
  209. margin-bottom:90px;
  210. padding:15px 15px 0 15px;
  211. text-align:left;
  212. border:1px solid {color:border};
  213. -ms-word-break: break-all;
  214. word-break: break-all;
  215. word-break: break-word;
  216. -webkit-hyphens: auto;
  217. -moz-hyphens: auto;
  218. -ms-hyphens: auto;
  219. hyphens: auto;
  220. }
  221.  
  222.  
  223. /*topbar*/
  224.  
  225.  
  226. #topbar {
  227. height:100px;
  228. width:430px;
  229. border:1px solid {color:border};
  230. text-align:center;
  231. margin-left:auto;
  232. margin-right:auto;
  233. margin-top:40px;
  234. }
  235.  
  236. #topbarimg {
  237. width:100px;
  238. height:100px;
  239. border-right:1px solid {color:border};
  240. }
  241.  
  242. #topbarimg img {
  243. padding:10px;
  244. width:80px;
  245. height:80px;
  246. }
  247.  
  248. #title {
  249. position:absolute;
  250. width:320px;
  251. padding:15px 5px;
  252. margin-left:100px;
  253. margin-top:-95px;
  254. font-size:15px;
  255. text-transform:uppercase;
  256. text-align:center;
  257. letter-spacing:4px;
  258. border-bottom:1px solid {color:border};
  259. }
  260.  
  261. #description {
  262. color:{color:text};
  263. position:absolute;
  264. width:245px;
  265. height:34px;
  266. padding:10px 15px;
  267. margin-top:-53px;
  268. margin-left:100px;
  269. font-size:8px;
  270. text-align:left;
  271. line-height:12px;
  272. border-right:1px solid {color:border};
  273. }
  274.  
  275. .navi {
  276. display:block;
  277. position:absolute;
  278. margin-left:378px;
  279. margin-top:-31px;
  280. width:55px;
  281. font-size:8px;
  282. letter-spacing:2px;
  283. text-transform:uppercase;
  284. }
  285.  
  286. .links {
  287. margin-left:-1px;
  288. width:430px;
  289. border:1px solid {color:border};
  290. font-size:9px;
  291. text-transform:uppercase;
  292. }
  293.  
  294. .links a {
  295. color:{color:text};
  296. display:inline-block;
  297. font-size:9px;
  298. padding:12px 5px;
  299. }
  300.  
  301. .links a:hover {
  302. color:{color:hover};
  303. }
  304.  
  305. .cl-effect-1 a::before, .cl-effect-1 a::after {
  306. display:inline-block;
  307. opacity:0;
  308. -webkit-transition:-webkit-transform .4s, opacity .2s;
  309. -moz-transition:-moz-transform .4s, opacity .2s;
  310. transition:transform .4s, opacity .2s;
  311. }
  312. .cl-effect-1 a::before {
  313. margin-right:5px;
  314. content: '[';
  315. -webkit-transform: translateX(15px);
  316. -moz-transform: translateX(15px);
  317. transform: translateX(15px);
  318. }
  319. .cl-effect-1 a::after {
  320. margin-left:5px;
  321. content: ']';
  322. -webkit-transform: translateX(-15px);
  323. -moz-transform: translateX(-15px);
  324. transform: translateX(-15px);
  325. }
  326. .cl-effect-1 a:hover::before, .cl-effect-1 a:hover::after, .cl-effect-1 a:focus::before, .cl-effect-1 a:focus::after {
  327. opacity:1;
  328. -webkit-transform: translateX(0px);
  329. -moz-transform: translateX(0px);
  330. transform: translateX(0px);
  331. }
  332.  
  333.  
  334. /*post info and tags and captions*/
  335.  
  336.  
  337. #info {
  338. {block:ifnot250pxposts}
  339. width:430px;
  340. {/block:ifnot250pxposts}
  341. {block:if250pxposts}
  342. width:280px;
  343. {/block:if250pxposts}
  344. font-size:9px;
  345. letter-spacing:2px;
  346. text-align:center;
  347. text-transform:uppercase;
  348. line-height:150%;
  349. margin-left:-15px;
  350. padding:10px 0;
  351. border-top:1px solid {color:border};
  352. {block:ifhidecaption}
  353. margin-top:12px;
  354. {/block:ifhidecaption}
  355. }
  356.  
  357. #tags {
  358. position:absolute;
  359. {block:ifnot250pxposts}
  360. margin-left:430px;
  361. {/block:ifnot250pxposts}
  362. {block:if250pxposts}
  363. margin-left:280px;
  364. {/block:if250pxposts}
  365. margin-top:-15px;
  366. width:100px;
  367. font-size:8px;
  368. letter-spacing:2px;
  369. text-transform:uppercase;
  370. text-align:left;
  371. padding:5px;
  372. border-left:1px solid {color:border};
  373. opacity:0;
  374. -webkit-transition:all .4s ease-in-out;
  375. -moz-transition:all .4s ease-in-out;
  376. transition:all .4s ease-in-out;
  377. }
  378.  
  379. #post:hover #tags {
  380. opacity:1;
  381. -webkit-transition:all .4s ease-in-out;
  382. -moz-transition:all .4s ease-in-out;
  383. transition:all .4s ease-in-out;
  384. }
  385.  
  386.  
  387. /*quote*/
  388.  
  389.  
  390. .quote {
  391. font-size:13px;
  392. line-height:135%;
  393. letter-spacing:2px;
  394. }
  395.  
  396. .source {
  397. text-align:center;
  398. font-size:9px;
  399. text-transform:uppercase;
  400. letter-spacing:2px;
  401. margin-top:8px;
  402. padding:10px 0 6px 0;
  403. }
  404.  
  405.  
  406. /*chat*/
  407.  
  408. .chat ol {
  409. padding:5px;
  410. line-height:150%;
  411. list-style:none;
  412. }
  413.  
  414. .line {
  415. padding:10px;
  416. }
  417.  
  418. .label {
  419. text-transform:uppercase;
  420. font-size:10px;
  421. font-weight:bold;
  422. letter-spacing:2px;
  423. }
  424.  
  425.  
  426. /*Ask*/
  427.  
  428. .ask{
  429. padding:0 5px;
  430. font-size:8px;
  431. letter-spacing:2px;
  432. text-transform:uppercase;
  433. display:block;
  434. }
  435.  
  436. .question {
  437. {block:ifnot250pxposts}
  438. width:410px;
  439. {/block:ifnot250pxposts}
  440. {block:if250pxposts}
  441. width:260px;
  442. {/block:if250pxposts}
  443. padding:10px 5px;
  444. font-size:12px;
  445. display:block;
  446. }
  447.  
  448. .answer {
  449. {block:ifnot250pxposts}
  450. width:400px;
  451. {/block:ifnot250pxposts}
  452. {block:if250pxposts}
  453. width:250px;
  454. {/block:if250pxposts}
  455. margin-left:-15px;
  456. border-top:1px solid {color:border};
  457. padding:5px 10px 0px 20px;
  458. text-align:left;
  459. }
  460.  
  461.  
  462. /*audio*/
  463.  
  464. .track {
  465. {block:ifnot250pxposts}
  466. width:400px;
  467. {/block:ifnot250pxposts}
  468. {block:if250pxposts}
  469. width:250px;
  470. {/block:if250pxposts}
  471. font-size:12px;
  472. text-align:center;
  473. text-transform:uppercase;
  474. letter-spacing:2px;
  475. line-height:130%;
  476. padding:0 15px 10px 15px;
  477. margin-left:-15px;
  478. border-bottom:1px solid {color:border};
  479. }
  480.  
  481. .playbutton {
  482. width:20px;
  483. height:30px;
  484. overflow:hidden;
  485. position:relative;
  486. z-index:1000;
  487. margin:10px 19px 8px 11px;
  488. }
  489.  
  490. .playbox {
  491. background-color:{color:background};
  492. -webkit-border-radius:50px;
  493. -moz-border-radius:50px;
  494. border-radius:50px;
  495. border:1px solid {color:border};
  496. box-shadow: 2px 2px 5px #888888;
  497. position:absolute;
  498. margin-top:20px;
  499. {block:ifnot250pxposts}
  500. margin-left:170px;
  501. {/block:ifnot250pxposts}
  502. {block:if250pxposts}
  503. margin-left:95px;
  504. {/block:if250pxposts}
  505. }
  506.  
  507. .audioinfo {
  508. {block:ifnot250pxposts}
  509. width:400px;
  510. {/block:ifnot250pxposts}
  511. {block:if250pxposts}
  512. width:250px;
  513. {/block:if250pxposts}
  514. margin-top:90px;
  515. text-align:center;
  516. font-size:8px;
  517. text-transform:uppercase;
  518. }
  519.  
  520.  
  521. /*permalink page*/
  522.  
  523. .notes {
  524. margin-top:-2px;
  525. {block:ifnot250pxposts}
  526. width:390px;
  527. {/block:ifnot250pxposts}
  528. {block:if250pxposts}
  529. width:240px;
  530. {/block:if250pxposts}
  531. text-align:left;
  532. }
  533. .notes ol {
  534. {block:ifnot250pxposts}
  535. width:390px;
  536. {/block:ifnot250pxposts}
  537. {block:if250pxposts}
  538. width:240px;
  539. {/block:if250pxposts}
  540. border-top:1px solid {color:border};
  541. padding-top:5px;
  542. margin-left:-15px;
  543. text-transform:uppercase;
  544. font-size:7px;
  545. letter-spacing:2px;
  546. }
  547.  
  548. .notes li {
  549. list-style-type:none;
  550. padding:8px 8px 8px 0;
  551. }
  552.  
  553. .notes img {
  554. display:none!important;
  555. }
  556.  
  557.  
  558. /*pagination*/
  559.  
  560.  
  561. #pagi {
  562. {block:ifnot250pxposts}
  563. width:430px;
  564. {/block:ifnot250pxposts}
  565. {block:if250pxposts}
  566. width:280px;
  567. {/block:if250pxposts}
  568. margin-bottom:80px;
  569. font-size:10px;
  570. letter-spacing:2px;
  571. text-transform:uppercase;
  572. text-align:center;
  573. margin-left:auto;
  574. margin-right:auto;
  575. }
  576.  
  577. #pagi a {
  578. color:{color:link};
  579. }
  580.  
  581. #pagi a:hover {
  582. color:{color:hover};
  583. }
  584.  
  585. .currentpage {
  586. color:{color:hover};
  587. }
  588.  
  589. /*credit*/
  590.  
  591.  
  592. #credit {
  593. width:80px;
  594. position:fixed;
  595. bottom:5px;
  596. right:5px;
  597. background:transparent;
  598. }
  599.  
  600. #credit a {
  601. color:{color:text};
  602. }
  603.  
  604. #logo {
  605. position:absolute;
  606. font-size:15px;
  607. font-family:baskerville;
  608. margin-top:-10px;
  609. margin-left:67px;
  610. -webkit-transition:all .5s ease-in-out;
  611. -moz-transition:all .5s ease-in-out;
  612. transition:all .5s ease-in-out;
  613. }
  614.  
  615. #credit:hover #logo {
  616. margin-left:0px;
  617. -webkit-transition:all .5s ease-in-out;
  618. -moz-transition:all .5s ease-in-out;
  619. transition:all .5s ease-in-out;
  620. }
  621.  
  622. #name {
  623. font-family:baskerville;
  624. font-size:10px;
  625. font-weight:normal;
  626. text-transform:uppercase;
  627. margin-left:17px;
  628. opacity:0;
  629. -webkit-transition:all 1s ease-in-out;
  630. -moz-transition:all 1s ease-in-out;
  631. transition:all 1s ease-in-out;
  632. }
  633.  
  634. #credit:hover #name {
  635. opacity:1;
  636. -webkit-transition:all 1s ease-in-out;
  637. -moz-transition:all 1s ease-in-out;
  638. transition:all 1s ease-in-out;
  639. }
  640.  
  641.  
  642. {CustomCSS}
  643.  
  644. </style>
  645. </head>
  646.  
  647.  
  648. <body>
  649.  
  650. <div id="topbar">
  651. <div id="topbarimg"><img src="{image:topbar}"></div>
  652. <div id="title">{Title}</div>
  653. <div id="description">{Description}</div>
  654. <a href="#" class="navi">LINKS&dtrif;<div class="sym"></div></a>
  655. <div class="links">
  656. <links class="cl-effect-1" id="cl-effect-1">
  657. <a href="{text:link 1}">{text:link 1 title}</a>
  658. <a href="{text:link 2}">{text:link 2 title}</a>
  659. <a href="{text:link 3}">{text:link 3 title}</a>
  660. <a href="{text:link 4}">{text:link 4 title}</a>
  661. <a href="{text:link 5}">{text:link 5 title}</a>
  662. </links>
  663. </div>
  664.  
  665. <div id="entries">
  666.  
  667. {block:Posts}
  668.  
  669. <div id="post">
  670.  
  671. {block:HasTags}<div id="tags">{block:Tags}<a href="{TagURL}">#{Tag}</a><br>{/block:Tags}</div>{/block:HasTags}
  672.  
  673. {block:Text}{block:Title}<div id="posttitle">{Title}</div>{/block:Title}<div id="text">{Body}</div>{/block:Text}
  674.  
  675. {block:Photo}
  676. {block:ifnot250pxposts}
  677. {LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}
  678. {block:ifhidecaption}{block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}{/block:ifhidecaption}
  679. {block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}
  680. {/block:ifnot250pxposts}
  681. {block:if250pxposts}
  682. {LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}
  683. {block:ifhidecaption}{block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}{/block:ifhidecaption}
  684. {block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}
  685. {/block:if250pxposts}
  686. {/block:Photo}
  687.  
  688. {block:Photoset}
  689. {block:ifnot250pxposts}{Photoset-400}{block:ifhidecaption}{block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}{/block:ifhidecaption}{block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}{/block:ifnot250pxposts}
  690. {block:if250pxposts}{Photoset-250}{block:ifhidecaption}{block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}{/block:ifhidecaption}{block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}{/block:if250pxposts}
  691. {/block:Photoset}
  692.  
  693. {block:Quote}
  694. <div class="quote">{Quote}</div>
  695. {block:Source}<div class="source">&mdash; {Source} &mdash;</div>{/block:Source}
  696. {/block:Quote}
  697.  
  698. {block:Link}<div id="posttitle"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  699.  
  700. {block:Chat}
  701. {block:Title}<div id="posttitle">{Title}</div>{/block:Title}
  702. <div class="chat"><ol>{block:Lines}<li class="line">{block:Label}<span class="label">{Label} </span>{/block:Label}{Line}</li>{/block:Lines}</ol></div>
  703. {/block:Chat}
  704.  
  705. {block:Video}
  706. {block:ifnot250pxposts}{Video-400}{block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}{/block:ifnot250pxposts}
  707. {block:if250pxposts}{Video-250}{block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}{/block:if250pxposts}
  708. {block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}
  709. {/block:Video}
  710.  
  711. {block:Answer}
  712. <div class="ask">{Asker}</u>:</div>
  713. <div class="question">{Question}</div>
  714. <div class="answer">{Answer}</div>
  715. {/block:Answer}
  716.  
  717. {block:Audio}
  718. {block:TrackName}<div class="track">{TrackName}</div>{/block:TrackName}
  719. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>
  720. <div class="audioinfo">
  721. {block:Artist}{Artist}{/block:Artist} / {PlayCountWithLabel}
  722. </div>
  723. {block:ifhidecaption}{block:PermalinkPage}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:PermalinkPage}{/block:ifhidecaption}
  724. {block:ifnothidecaption}<div id="caption">{block:Caption}{Caption}{/block:Caption}</div>{/block:ifnothidecaption}
  725. {/block:Audio}
  726.  
  727. {block:ContentSource}
  728. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  729. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  730. {/block:SourceLogo}
  731. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  732. {/block:ContentSource}
  733.  
  734. {block:Date}
  735. <div id="info">
  736. <a href="{Permalink}">{DayOfMonth} {ShortMonth}</a>&nbsp;
  737. {block:NoteCount}<a href="{Permalink}">{NoteCount}+</a>&nbsp;{/block:NoteCount}
  738. {block:RebloggedFrom}<a href="{ReblogParentURL}"title="{ReblogParentName}">Via</a>&nbsp;&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">Src</a>&nbsp;{/block:RebloggedFrom}
  739. <a href="{ReblogURL}" target="_blank">Reblog</a>
  740. </div>
  741. {/block:Date}
  742.  
  743. {block:PostNotes}
  744. <div class="notes">{PostNotes}</div>
  745. {/block:PostNotes}
  746.  
  747. </div>
  748.  
  749. {/block:Posts}
  750.  
  751. {block:Pagination}
  752. <div id="pagi">
  753. {block:PreviousPage}
  754. <a href="{PreviousPage}">&larr;</a>&nbsp;&nbsp;
  755. {/block:PreviousPage}
  756. {block:JumpPagination length="5"}
  757. {block:CurrentPage}
  758. <span class="currentpage">[ {PageNumber} ]</span>
  759. {/block:CurrentPage}
  760. {block:JumpPage}
  761. <links class="cl-effect-1" id="cl-effect-1">
  762. <a class="jumppage" href="{URL}">{PageNumber}</a>
  763. </links>
  764. {/block:JumpPage}
  765. {/block:JumpPagination}
  766.  
  767. {block:NextPage}
  768. &nbsp;&nbsp;<a href="{NextPage}">&rarr;</a>
  769. {/block:NextPage}
  770. {/block:Pagination}
  771. </div>
  772. </div>
  773.  
  774. <div id="credit">
  775. <div id="name"><a href="http://silmahril.tumblr.com">ilmahril</a></div>
  776. <div id="logo"><a href="http://silmahril.tumblr.com">&Sopf;</a></div>
  777. </div>
  778.  
  779. </body>
  780.  
  781. </html>
Advertisement
Add Comment
Please, Sign In to add comment