Advertisement
diannaelise

Theme 1

Aug 10th, 2014
4,443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.91 KB | None | 0 0
  1. <!-- THEME 1 by ADRIANIVASHKOVS.TUMBLR.COM-->
  2.  
  3.  
  4. <!------------
  5.  
  6. p l e a s e r e a d
  7.  
  8. by using my themes, you’ve agreed to the following conditions:
  9. don't steal my codes,
  10. don't use them as base,
  11. don't claim them as your own,
  12. leave all credit intact.
  13.  
  14. ------------>
  15.  
  16.  
  17. <html><head>
  18. <title>{Title}</title>
  19. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  20. <link rel="shortcut icon" href="{Favicon}" />
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  22.  
  23. <meta name="text:second title" content="second title" />
  24.  
  25. <meta name="color:background" content="#FFFFFF" />
  26. <meta name="color:entries" content="#FFFFFF" />
  27. <meta name="color:text" content="#8C8989" />
  28. <meta name="color:link" content="#5E6468" />
  29. <meta name="color:hover" content="#000000" />
  30. <meta name="color:highlight" content="#F5F5F5" />
  31. <meta name="color:scrollbar" content="#000000" />
  32. <meta name="color:border" content="#F3F3F3" />
  33.  
  34. <meta name="color:pagination" content="#000000" />
  35. <meta name="color:pagination text" content="#FFFFFF" />
  36.  
  37. <meta name="color:heart" content="#B0000" />
  38. <meta name="color:postinfo links" content="#000000" />
  39.  
  40. <meta name="color:navigation link" content="#000000" />
  41. <meta name="color:title" content="#000000" />
  42. <meta name="color:description text" content="#000000" />
  43.  
  44. <meta name="color:chat person 1" content="#F5F5F5" />
  45. <meta name="color:chat person 2" content="#EDEDED" />
  46.  
  47. <meta name="color:audio" content="#FCFCFC" />
  48. <meta name="color:audio text" content="#000000" />
  49.  
  50. <meta name="color:question" content="#000000" />
  51. <meta name="color:question text" content="#FFFFFF" />
  52.  
  53. <meta name="color:italic" content="#000000" />
  54. <meta name="color:bold" content="#000000" />
  55.  
  56. <meta name="if:Lazy Load" content="0" />
  57. <meta name="if:Posts 400px" content="0" />
  58.  
  59. <meta name="text:link1" content="/" />
  60. <meta name="text:link1 title" content="link one" />
  61. <meta name="text:link2" content="/" />
  62. <meta name="text:link2 title" content="link two" />
  63. <meta name="text:link3" content="/" />
  64. <meta name="text:link3 title" content="link three" />
  65. <meta name="text:link4" content="/" />
  66. <meta name="text:link4 title" content="link four" />
  67.  
  68. <!-------------------------
  69. LAZY LOAD
  70. --------------------------->
  71.  
  72. {block:ifLazyLoad}
  73. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  74. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  75. <script type="text/javascript" charset="utf-8">
  76. var $j = jQuery.noConflict();
  77. $j(function() {
  78. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  79. $j("img").lazyload({
  80. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  81. effect: "fadeIn",
  82. });
  83. });
  84. </script>
  85. {/block:ifLazyLoad}
  86.  
  87. <!-------------------------
  88. TOOLTIPS
  89. --------------------------->
  90.  
  91. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  92.  
  93. <script type="text/javascript" src="http://static.tumblr.com/ko1mcho/PMbmlkh9e/jquery.style-my-tooltips.js"></script>
  94.  
  95. <script>
  96. (function($){
  97. $(document).ready(function(){
  98. $("[title],a[title],img[title]").style_my_tooltips({
  99. tip_follows_cursor:"true",
  100. tip_delay_time:100,
  101. tip_fade_speed:100,
  102. attribute:"title"
  103. });
  104. });
  105. })(jQuery);
  106. </script>
  107.  
  108. <!-------------------------
  109. MAGIC LINE by chris coyier
  110. http://css-tricks.com/jquery-magicline-navigation/
  111. --------------------------->
  112.  
  113. <script>
  114. $(function() {
  115.  
  116. var $el, leftPos, newWidth,
  117. $mainNav = $("#links");
  118.  
  119. $mainNav.append("<li id='magic-line'></li>");
  120. var $magicLine = $("#magic-line");
  121.  
  122. $magicLine
  123. .width($(".current_page_item").width())
  124. .css("left", $(".current_page_item").position().left)
  125. .data("origLeft", $magicLine.position().left)
  126. .data("origWidth", $magicLine.width());
  127.  
  128. $("#links li").hover(function() {
  129. $el = $(this);
  130. leftPos = $el.position().left;
  131. newWidth = $el.width();
  132. $magicLine.stop().animate({
  133. left: leftPos,
  134. width: newWidth
  135. });
  136. }, function() {
  137. $magicLine.stop().animate({
  138. left: $magicLine.data("origLeft"),
  139. width: $magicLine.data("origWidth")
  140. });
  141. });
  142. });
  143. </script>
  144.  
  145. <style type="text/css">
  146.  
  147. #s-m-t-tooltip {
  148. color:#fff;
  149. background-color:{color:question};
  150. display:none;
  151. text-align:left;
  152. position:absolute;
  153. z-index:9999;
  154. font-size:8px;
  155. font-family:arial;
  156. text-transform:uppercase;
  157. padding:1px 3px 1px 3px;
  158. margin-top:27px;
  159. -webkit-transition:all 0.2s ease-out
  160. -moz-transition:all 0.2s ease-out;
  161. transition:all 0.2s ease-out;
  162. }
  163.  
  164. iframe#tumblr_controls {
  165. white-space:nowrap;
  166. -webkit-filter: invert(100%);
  167. -moz-filter: invert(100%);
  168. -o-filter: invert(100%);
  169. -ms-filter: invert(100%); filter: invert(100%);
  170. opacity:0.5;
  171. transition: .8s ease-in-out;
  172. -webkit-transition: .8s ease-in-out;
  173. -moz-transition: .8s ease-in-out;
  174. -o-transition: .8s ease-in-out;
  175. }
  176.  
  177. /*<!-------------------------
  178. SCROLLBAR
  179. --------------------------->*/
  180.  
  181. ::-webkit-scrollbar-thumb:vertical {
  182. background-color:{color:scrollbar};
  183. height:10px;}
  184.  
  185. ::-webkit-scrollbar-thumb:horizontal {
  186. background-color:{color:scrollbar};
  187. height:10px!important;
  188. }
  189.  
  190. ::-webkit-scrollbar {
  191. background-color:{color:background};
  192. height:10px;
  193. width:7px;
  194. }
  195.  
  196. ::selection {
  197. background: {color:highlight};
  198. }
  199.  
  200. ::-moz-selection {
  201. background: {color:highlight};
  202. }
  203.  
  204. /*<!-------------------------
  205. BASICS
  206. --------------------------->*/
  207.  
  208. h1 {
  209. color:{color:text};
  210. font-size:18px;
  211. font-weight:bold;
  212. margin-top:0px;
  213. letter-spacing:1px;
  214. font-family:calibri;
  215. text-align:left;
  216. line-height:18px;
  217. margin-left:-10px;
  218. padding-left:12px;
  219. font-style:normal;
  220. -webkit-transition:opacity 0.8s linear;
  221. -webkit-transition:all 0.5s ease-out;
  222. -moz-transition:all 0.5s ease-out;
  223. transition:all 0.5s ease-out;
  224. }
  225.  
  226. h1:hover {
  227. color:{color:bold};
  228. -webkit-transition:opacity 0.8s linear;
  229. -webkit-transition:all 0.5s ease-out;
  230. -moz-transition:all 0.5s ease-out;
  231. transition:all 0.5s ease-out;
  232. }
  233.  
  234. h2 {
  235. font-size:15px;
  236. {block:IfNotPosts400px}
  237. width:490px;
  238. {/block:IfNotPosts400px}
  239. {block:IfPosts400px}
  240. width:390px;
  241. {/block:IfPosts400px}
  242. font-family:georgia;
  243. text-transform:uppercase;
  244. line-height:18px;
  245. text-align:left;
  246. margin-top:0px;
  247. color:{color:link};
  248. font-weight:normal;
  249. }
  250.  
  251. h3 {
  252. font-size:14px;
  253. line-height:17px;
  254. letter-spacing:1px;
  255. background-color:{color:question};
  256. color:{color:question text};
  257. padding:15px;
  258. font-family:times;
  259. font-style:italic;
  260. font-weight:normal;
  261. text-align:center;
  262. {block:IfNotPosts400px}
  263. width:470px;
  264. {/block:IfNotPosts400px}
  265. {block:IfPosts400px}
  266. width:370px;
  267. {/block:IfPosts400px}
  268. }
  269.  
  270. b {
  271. color:{color:bold};
  272. }
  273.  
  274. i {
  275. color:{color:italic};
  276. font-weight:bold;
  277. }
  278.  
  279. body {
  280. color:{color:text};
  281. background-color:{color:background};
  282. font-style:normal;
  283. text-align:justify;
  284. font-family:calibri;
  285. font-size:11px;
  286. text-decoration:none;
  287. line-height:110%;
  288. }
  289.  
  290. a {
  291. color: {color:link};
  292. cursor:help;
  293. text-decoration:none;
  294. -webkit-transition:opacity 0.8s linear;
  295. -webkit-transition:all 0.5s ease-out;
  296. -moz-transition:all 0.5s ease-out;
  297. transition:all 0.5s ease-out;
  298. }
  299.  
  300. a:hover {
  301. color:{color:hover};
  302. -webkit-transition:opacity 0.8s linear;
  303. -webkit-transition:all 0.5s ease-out;
  304. -moz-transition:all 0.5s ease-out;
  305. transition:all 0.5s ease-out;}
  306.  
  307. #container {
  308. width:900px;
  309. margin:0px;
  310. }
  311.  
  312. #entries {
  313. position:absolute;
  314. padding:28px 0px 0px 20px;
  315. overflow:hidden;
  316. background-color:{color:entries};
  317. {block:IfNotPosts400px}
  318. width:520px;
  319. {/block:IfNotPosts400px}
  320. {block:IfPosts400px}
  321. width:420px;
  322. {/block:IfPosts400px}
  323. border-left:1px solid {color:border};
  324. border-right:1px solid {color:border};
  325. border-bottom:1px solid {color:border};
  326. margin-left:300px;
  327. margin-top:-15px;
  328. }
  329.  
  330. #posts {
  331. {block:IfNotPosts400px}
  332. width:500px;
  333. {/block:IfNotPosts400px}
  334. {block:IfPosts400px}
  335. width:400px;
  336. {/block:IfPosts400px}
  337. background:transparent;
  338. color:{color:text};
  339. padding:0px;
  340. }
  341.  
  342. #text {
  343. background-color:{color:background};
  344. padding:24px;
  345. }
  346.  
  347. /*<!-------------------------
  348. POSTINFO
  349. --------------------------->*/
  350.  
  351. #tags {
  352. padding:0px 0px 0px 0px;
  353. text-align:left;
  354. margin-top:10px;
  355. font-size:8px;
  356. color:{color:postinfo links};
  357. font-family:ariaL;
  358. letter-spacing:1px;
  359. margin-bottom:40px;
  360. text-transform:uppercase;
  361. {block:IfNotPosts400px}
  362. width:500px;
  363. {/block:IfNotPosts400px}
  364. {block:IfPosts400px}
  365. width:400px;
  366. {/block:IfPosts400px}
  367. }
  368.  
  369. #tags a {
  370. font-size:8px;
  371. font-family:arial;
  372. letter-spacing:1px;
  373. font-weight:bold;
  374. color:{color:postinfo links};
  375. }
  376.  
  377. #tags a:hover {
  378. color:{color:hover};
  379. }
  380.  
  381. /*<!-------------------------
  382. SIDEBAR
  383. --------------------------->*/
  384.  
  385. #sidebar {
  386. border-top:1px solid {color:border};
  387. position:fixed;
  388. padding:15px;
  389. margin-left:0px;
  390. margin-top:100px;
  391. width:100%;
  392. }
  393.  
  394. #title {
  395. line-height:16px;
  396. width:160px;
  397. position:relative;
  398. margin-top:15px;
  399. font-family:calibri;
  400. font-size:16px;
  401. letter-spacing:1px;
  402. padding-bottom:12px;
  403. text-align:center;
  404. margin-left:0px;
  405. }
  406.  
  407. #title a {
  408. color:{color:title};
  409. }
  410.  
  411.  
  412. #links {
  413. width:220px;
  414. position:relative;
  415. margin:0;
  416. }
  417.  
  418. #links li {
  419. float:right;
  420. display:inline-block;
  421. padding:0px;
  422. }
  423.  
  424. #links li a {
  425. position:relative;
  426. z-index:200;
  427. color:{color:navigation link};
  428. font-size:10px;
  429. letter-spacing:1px;
  430. display:block;
  431. font-family:calibri;
  432. font-weight:bold;
  433. text-decoration:none;
  434. text-transform:uppercase;
  435. padding:8px 3px 3px 3px;
  436. }
  437.  
  438. #links #magic-line {
  439. position:absolute;
  440. top:0;
  441. height:18px;
  442. border-top:1px solid {color:border};
  443. }
  444.  
  445. .navigation {
  446. width:auto;
  447. margin-left:-30px;
  448. position:fixed;
  449. }
  450.  
  451. #description {
  452. line-height:18px;
  453. background-color:{color:description};
  454. font-family:arial;
  455. font-size:10px;
  456. position:fixed;
  457. line-height:18px;
  458. width:160px;
  459. padding:15px;
  460. text-align:justify;
  461. margin-top:0px;
  462. color:{color:description text};
  463. margin-left:87px;
  464. }
  465.  
  466. #pag {
  467. font-size:13px;
  468. position:fixed;
  469. font-family:calibri;
  470. margin-top:125px;
  471. letter-spacing:1px;
  472. {block:IfNotPosts400px}
  473. margin-left:865px;
  474. {/block:IfNotPosts400px}
  475. {block:IfPosts400px}
  476. margin-left:765px;
  477. {/block:IfPosts400px}
  478. }
  479.  
  480. .jump_page {
  481. padding:4px 8px;
  482. color:{color:text};
  483. font-family:calibri;
  484. font-size:11px;
  485. text-decoration:none;
  486. }
  487.  
  488. .current_page, .jump_page:hover {
  489. padding: 4px 8px;
  490. background-color:{color:pagination};
  491. color:{color:pagination text};
  492. font-family:calibri;
  493. font-size:11px;
  494. text-decoration:none;
  495. }
  496.  
  497.  
  498. /*<!-------------------------
  499. BLOCKQUOTE
  500. --------------------------->*/
  501.  
  502. .blockquote, blockquote {
  503. margin-left:0px;
  504. letter-spacing:1px;
  505. padding-left:10px;
  506. border-left:1px solid {color:text};
  507. }
  508.  
  509. blockquote, small {
  510. font-size:11px;
  511. }
  512.  
  513. blockquote img {
  514. height:auto;
  515. max-width:300px;
  516. }
  517.  
  518. /*<!-------------------------
  519. CHAT
  520. --------------------------->*/
  521.  
  522. .chat {
  523. list-style:none;
  524. margin-top:15px;
  525. margin-bottom:0px;
  526. font-size:10px;
  527. margin-left:0px;
  528. {block:IfNotPosts400px}
  529. width:500px;
  530. {/block:IfNotPosts400px}
  531. {block:IfPosts400px}
  532. width:400px;
  533. {/block:IfPosts400px}
  534. }
  535.  
  536. .chat ul {
  537. line-height:15px;
  538. margin-top:0px;
  539. list-style:none;
  540. padding:0px;
  541. margin-bottom:0px;
  542. line-height:17px;
  543. }
  544.  
  545. .person1, .person3, .person5, .person7, .person9, .person11, .person13{
  546. background-color:{color:chat person 1};
  547. padding:5px 10px 5px 10px;
  548. color:{color:chat text};
  549. border-bottom:2px solid {color:background};
  550. }
  551.  
  552. .person2, .person4, .person6, .person8, .person10, .person12, .person14{
  553. padding:5px 10px 5px 10px;
  554. background-color:{color:chat person 2};
  555. border-bottom:2px solid {color:background};
  556. color:{color:chat text};
  557. }
  558.  
  559. /*<!-------------------------
  560. CREDIT
  561. --------------------------->*/
  562.  
  563. #credit {
  564. right:7px;
  565. bottom:10px;
  566. padding:5px;
  567. background:transparent;
  568. font-size:8px;
  569. position:fixed;
  570. font-family:arial;
  571. }
  572.  
  573. #credit a {
  574. color:{color:link};
  575. padding:5px;
  576. }
  577.  
  578. /*<!-------------------------
  579. ASK
  580. --------------------------->*/
  581.  
  582. #question {
  583. background-color:{color:question};
  584. color:{color:question text};
  585. padding:10px;
  586. letter-spacing:1px;
  587. margin-top:2px;
  588. {block:IfNotPosts400px}width:480px;{/block:IfNotPosts400px}
  589. {block:IfPosts400px}width:380px;{/block:IfPosts400px}
  590. margin-bottom:5px;
  591. border-top:1px solid {color:border};
  592. font-size:10px;
  593. font-family:arial;
  594. text-align:left;
  595. }
  596.  
  597. #answer {
  598. {block:IfNotPosts400px}width:470px;{/block:IfNotPosts400px}
  599. {block:IfPosts400px}width:370px;{/block:IfPosts400px}
  600. padding:15px;
  601. background-color:{color:background};
  602. }
  603.  
  604. #question a {
  605. color:{color:question text};
  606. }
  607.  
  608. /*<!-------------------------
  609. AUDIO
  610. --------------------------->*/
  611.  
  612. .audioplayer {
  613. width:25px;
  614. height:25px;
  615. margin-top:13px;
  616. position:absolute;
  617. margin-left:15px;
  618. overflow:hidden;
  619. padding:3px;
  620. }
  621.  
  622. .info {
  623. {block:IfNotPosts400px}width:445px;{/block:IfNotPosts400px}
  624. {block:IfPosts400px}width:345px;{/block:IfPosts400px}
  625. height:50px;
  626. margin-left:0px;
  627. display:block;
  628. line-height:20px;
  629. margin-top:0px;
  630. padding-top:10px;
  631. font-family:calibri;
  632. font-size:12px;
  633. letter-spacing:0px;
  634. font-weight:400;
  635. letter-spacing:1px;
  636. padding-right:55px;
  637. text-align:right;
  638. margin-bottom:0px;
  639. color:{color:audio text};
  640. background-color:{color:audio};
  641. }
  642.  
  643. /*<!-------------------------
  644. NOTES
  645. --------------------------->*/
  646.  
  647. ol.notes {
  648. padding:0px;
  649. {block:IfNotPosts400px}width:500px;{/block:IfNotPosts400px}
  650. {block:IfPosts400px}width:400px;{/block:IfPosts400px}
  651. margin:15px 0px;
  652. list-style-type:none;
  653. border-bottom:solid 1px {color:border};
  654. }
  655.  
  656. ol.notes li.note {
  657. border-top:solid 1px {color:border};
  658. padding:10px;
  659. }
  660.  
  661. ol.notes li.note img.avatar {
  662. vertical-align:-4px;
  663. margin-right:10px;
  664. width:16px;
  665. height:16px;
  666. }
  667.  
  668. ol.notes li.note blockquote {
  669. padding:4px 10px;
  670. margin:10px 0px 0px 25px;
  671. }
  672.  
  673.  
  674.  
  675. </style><style type="text/css">{CustomCSS}</style>
  676.  
  677. </head><body>
  678.  
  679. <div id="container">
  680.  
  681. <div class="navigation" style="margin-top:70px;margin-left:25px;">
  682. <ul class="group" id="links">
  683. <li><a href="/ask">&nbsp; message &nbsp;</a></li>
  684. <li><a href="/archive">&nbsp; archive &nbsp;</a></li>
  685. <li class="current_page_item"><a href="/">&nbsp; index &nbsp;</a></li>
  686. </ul></div>
  687.  
  688. <div id="pag">
  689. {block:Pagination}
  690. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  691. {block:JumpPagination length="3"}
  692. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  693. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  694. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  695. {/block:Pagination}
  696. </div>
  697.  
  698. <div id="sidebar">
  699.  
  700. <div id="description" style="margin-top:-30px;">
  701.  
  702. <div id="title"><a href="/">{text:second title}</a></div>
  703.  
  704. {Description}
  705.  
  706. {block:ifLink1}<a href="{text:link1}"><b>{text:link1 title}</b></a>{/block:ifLink1}
  707. {block:ifLink2}<a href="{text:link2}"> | <b>{text:link2 title}</b></a>{/block:ifLink2}
  708. {block:ifLink3}<a href="{text:link3}"> | <b>{text:link3 title}</b></a>{/block:ifLink3}
  709. {block:ifLink4}<a href="{text:link4}"> | <b>{text:link4 title}</b></a>{/block:ifLink4}
  710.  
  711.  
  712. </div>
  713.  
  714. </div>
  715.  
  716. <div id="entries">
  717.  
  718. {block:Posts}
  719.  
  720. <div id="posts">
  721.  
  722. {block:Text}
  723. <div id="text">
  724. {block:Title}<h1>{Title}</h1>{/block:Title}
  725. <center><div style="text-align:left;">{Body}</div></center>
  726. </div>
  727. {/block:Text}
  728.  
  729. {block:Quote}
  730. <h3>
  731. <font style="font-family:times;font-size:20px;">&#8220; </font> {Quote} <font style="font-family:times;font-size:20px;">”</font></h3>
  732. <div id="text" style="margin-top:-10px;">
  733. <center>{Source}</center>
  734. </div>
  735. {/block:Quote}
  736.  
  737. {block:Link}
  738. <a href="{URL}"><h1>{Name}</h1></a>{block:Description}
  739. <div id="text">{Description}</div>{/block:Description}
  740. {/block:Link}
  741.  
  742. {block:Photo}
  743. {LinkOpenTag}
  744. {block:IfNotPosts400px}
  745. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  746. {block:Caption}<div id="text" style="margin-top:10px;">{Caption}</div>{/block:Caption}
  747. {/block:IfNotPosts400px}
  748. {block:IfPosts400px}
  749. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  750. {block:Caption}<div id="text" style="margin-top:10px;">{Caption}</div>{/block:Caption}
  751. {block:IfPosts400px}
  752. {LinkCloseTag}
  753. {/block:Photo}
  754.  
  755. {block:Photoset}
  756. {block:IfNotPosts400px}
  757. {Photoset-500}
  758. {block:Caption}
  759. <div id="text" style="margin-top:10px;">{Caption}</div>{/block:Caption}
  760. {block:IfNotPosts400px}
  761. {block:IfPosts400px}
  762. {Photoset-400}
  763. {block:Caption}
  764. <div id="text" style="margin-top:10px;">{Caption}</div>{/block:Caption}
  765. {/block:IfPosts400px}
  766. {/block:Photoset}
  767.  
  768. {block:Video}
  769. {block:IfNotPosts400px}
  770. {Video-500}
  771. {block:Caption}
  772. <div id="text" style="margin-top:10px;">
  773. {Caption}
  774. </div>
  775. {/block:Caption}
  776. {block:IfNotPosts400px}
  777. {block:IfPosts400px}
  778. {Video-400}
  779. {block:Caption}
  780. <div id="text" style="margin-top:10px;">
  781. {Caption}
  782. </div>
  783. {/block:Caption}
  784. {/block:IfPosts400px}
  785. {/block:Video}
  786.  
  787. {block:Chat}
  788. {block:Title}<a href="{Permalink}"><h3>{Title}</h3></a>{/block:Title}
  789. <div class="chat"><ul>{block:Lines}<li class="person{UserNumber}">{block:Label}<span class="label"><b>{Label}</b> &nbsp; </span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  790. {/block:Chat}
  791.  
  792. {block:Answer}
  793. <h1>{Asker} asked: </h1>
  794. <div id="question">{Question}</div>
  795. <div id="answer"><font style="text-align:center;">{answer}</font></div>
  796. {/block:Answer}
  797.  
  798. {block:Audio}
  799. <div class="audio">
  800. <div class="audioplayer">{AudioPlayerWhite}</div>
  801. <div class="info">
  802. {block:TrackName}
  803. <font style="text-transform:lowercase;letter-spacing:1px;font-weight:bold;color:{color:bold};font-family:arial;font-size:10px;font-style:italic;">{TrackName}</font>{/block:TrackName}<br>
  804. {block:Artist}<small>{Artist}</small>{/block:Artist}
  805. </div>
  806. {block:Caption}<div id="text" style="margin-top:10px;">{Caption}</div>{/block:Caption}
  807. </div>
  808. {/block:Audio}
  809. </div>
  810.  
  811. <div id="tags">
  812. {block:Date}
  813. <a href="{Permalink}" title="{TimeAgo}"> {DayOfMonthWithZero} / {MonthNumberWithZero} / {ShortYear}&nbsp;</a>
  814. {block:NoteCount}
  815. <a href="{Permalink}"><font style="color:{color:heart}">♥ </font>{notecount}&nbsp;</a>
  816. {/block:notecount}
  817. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>
  818. <a href="{ReblogRootURL}" title="{ReblogRootName}">/ Source &nbsp;</a>
  819. {/block:RebloggedFrom}
  820. <a href="{ReblogURL}" target="_blank">reblog &nbsp;</a> &nbsp;
  821. {block:Tags}
  822. #
  823. <a href="/tagged/{Tag}">{Tag} &nbsp;</a>
  824. {/block:Tags}
  825.  
  826. {block:ContentSource}
  827. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  828. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  829. {/block:SourceLogo}
  830. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  831. {/block:ContentSource}
  832. {/block:Date}
  833. </div>
  834.  
  835.  
  836. <div id="credit">
  837. <a href="http://adrianivashkovs.tumblr.com/">A I</a>
  838. </div>
  839.  
  840. {block:PostNotes}{PostNotes}{/block:PostNotes}
  841.  
  842. {/block:Posts}
  843.  
  844. </div>
  845. </div>
  846. </div>
  847. </div>
  848.  
  849. </body>
  850.  
  851. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement