glam0urkills

theme #7 by tylersequins

Oct 15th, 2014
1,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.31 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  8.  
  9. <!---- theme {suomi} © imjaebumx
  10.  
  11.  
  12. yes this is a theme made by me (ノ◕ヮ◕)ノ*:・゚✧
  13.  
  14.  
  15. feel free to edit away, but please don't remove the credits!
  16. it's very tiny, see? :) it won't hurt to leave it there
  17. thanks for using this code! ilu (◕‿◕✿)
  18.  
  19.  
  20.  
  21. (no srsly i really do ♡) --->
  22.  
  23. <meta name="if:Hover tags" content="1"/>
  24.  
  25. <meta name="color:Background" content="#ffffff"/>
  26. <meta name="color:Text" content="#818181"/>
  27. <meta name="color:Link" content="#474747"/>
  28. <meta name="color:Linkhover" content="#bdbcbc"/>
  29. <meta name="color:bold" content="#252525"/>
  30. <meta name="color:italic" content="#c5c4c4"/>
  31. <meta name="color:ask" content="#f7f7f7"/>
  32. <meta name="color:description" content="#2b2b2b"/>
  33. <meta name="color:description text" content="#ffffff"/>
  34. <meta name="color:navlinks" content="#d4d4d4"/>
  35. <meta name="color:selection bg" content="#2b2b2b"/>
  36. <meta name="image:sidebar" content=""/>
  37.  
  38. <meta name="text:ask title" content="ask title here :)"/>
  39. <meta name="text:your url" content="your url here"/>
  40.  
  41. <meta name="text:Link1" content="/" />
  42. <meta name="text:Link1 Title" content="link1 title" />
  43. <meta name="text:Link2" content="/" />
  44. <meta name="text:Link2 Title" content="link2 title" />
  45. <meta name="text:Link3" content="/" />
  46. <meta name="text:Link3 Title" content="link3 title" />
  47. <meta name="text:Link4" content="/" />
  48. <meta name="text:Link4 Title" content="link4 title" />
  49.  
  50.  
  51. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  52.  
  53. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  54. <script>
  55. (function($){
  56. $(document).ready(function(){
  57. $("[title]").style_my_tooltips({
  58. tip_follows_cursor:true,
  59. tip_delay_time:200,
  60. tip_fade_speed:300
  61. }
  62. );
  63. });
  64. })(jQuery);
  65. </script>
  66.  
  67. <script type="text/javascript"
  68. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  69.  
  70. <script>
  71.  
  72.  
  73.  
  74. $(document).ready(function() {
  75.  
  76. //
  77.  
  78.  
  79.  
  80. //When you click on a link with class of poplight and the href starts with a #
  81.  
  82. $('a.poplight[href^=#]').click(function() {
  83.  
  84. var popID = $(this).attr('rel'); //Get Popup Name
  85.  
  86. var popURL = $(this).attr('href'); //Get Popup href to define size
  87.  
  88.  
  89.  
  90. //Pull Query & Variables from href URL
  91.  
  92. var query= popURL.split('?');
  93.  
  94. var dim= query[1].split('&');
  95.  
  96. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  97.  
  98.  
  99.  
  100. //Fade in the Popup and add close button
  101.  
  102. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  103.  
  104.  
  105. //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
  106.  
  107. var popMargTop = ($('#' + popID).height() + 80) / 2;
  108.  
  109. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  110.  
  111.  
  112.  
  113. //Apply Margin to Popup
  114.  
  115. $('#' + popID).css({
  116.  
  117. 'margin-top' : -popMargTop,
  118.  
  119. 'margin-left' : -popMargLeft
  120.  
  121. });
  122.  
  123.  
  124.  
  125. //Fade in Background
  126.  
  127. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  128.  
  129. $('#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
  130.  
  131.  
  132.  
  133. return false;
  134.  
  135. });
  136.  
  137.  
  138.  
  139. //Close Popups and Fade Layer
  140.  
  141. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  142.  
  143. $('#fade , .popup_block').fadeOut(function() {
  144.  
  145. $('#fade, a.close').remove(); //fade them both out
  146.  
  147. });
  148.  
  149. return false;
  150.  
  151. });
  152.  
  153.  
  154.  
  155.  
  156.  
  157. });
  158.  
  159. </script>
  160.  
  161. <style type="text/css">
  162.  
  163. body {
  164. background:{color:background};
  165. margin:0px;
  166. color:{color:text};
  167. font-family:cambria;
  168. font-size:11px;
  169. line-height:100%;
  170. }
  171.  
  172. b, bold, strong {
  173. font-style:bold;
  174. color:{color:bold};
  175. }
  176.  
  177. i, em {
  178. font-style:italic;
  179. font-color:italic;
  180. }
  181.  
  182. #fade {
  183. display: none;
  184. background: #000;
  185. position: fixed;
  186. left: 0;
  187. top: 0;
  188. width: 100%;
  189. height: 100%;
  190. opacity: .80;
  191. z-index: 9999;
  192. }
  193.  
  194. .popup_block{
  195. display: none;
  196. background: #FFFFFF;
  197. padding: 50px;
  198. float: left;
  199. position: fixed;
  200. top: 50%;
  201. left: 50%;
  202. -webkit-box-shadow: 0px 0px 20px #000;
  203. -moz-box-shadow: 0px 0px 20px #000;
  204. box-shadow: 0px 0px 20px #000;
  205.  
  206. z-index: 99999;
  207. }
  208.  
  209. img.btn_close {
  210. float: right;
  211. margin: -55px -55px 0 0;
  212. }
  213.  
  214. *html #fade {
  215. position: absolute;
  216. }
  217.  
  218. *html .popup_block {
  219. position: absolute;
  220. }
  221.  
  222. #linkage a {
  223. margin-right:6px;
  224. display:inline-block;
  225. margin-bottom:7px;
  226. width:170px;
  227. font:7px 'Times New Roman';
  228. color:{color:background};
  229. padding:10px;
  230. text-transform:uppercase;
  231. font-weight:bold;
  232. letter-spacing:1px;
  233. text-align:center;
  234. letter-spacing:1px;
  235. font-weight:none;
  236. background-color:{color:description};
  237. -moz-transition-duration:0.6s;
  238. -webkit-transition-duration:0.6s;
  239. -o-transition-duration:0.6s;
  240. }
  241.  
  242. #linkage a:hover {
  243. text-decoration:none;
  244. color:{color:description};
  245. background-color:{color:background};
  246. -moz-transition-duration:0.6s;
  247. -webkit-transition-duration:0.6s;
  248. -o-transition-duration:0.6s;
  249. }
  250.  
  251. ::-webkit-scrollbar {height: auto;width: 3px;}
  252. ::-webkit-scrollbar-thumb {background-color:{color:bold};}
  253. ::-webkit-scrollbar-track{background-color:{color:background};}
  254.  
  255. ::-moz-selection {color:{color:background};cursor: crosshair;background-color:{color:selectiong bg};}
  256. ::selection{color:{color:background};cursor: crosshair;background-color:{color:selection bg};}
  257.  
  258. #tumblr_controls{position: fixed!important;z-index:15;}
  259.  
  260. iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.5s linear; opacity: 0.6; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out;}
  261.  
  262. 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;}
  263.  
  264. #s-m-t-tooltip{
  265. max-width:300px;
  266. margin:15px;
  267. padding:2px 8px;
  268. background:{color:background};
  269. color:{color:text};
  270. text-align:justify;
  271. z-index:999999;
  272. font-size:10px;
  273. font-weight:lighter;
  274. text-transform:uppercase;
  275. box-shadow:3px 3px 5px rgba(3,3,3,.4);}
  276.  
  277.  
  278. .navhover a::before,
  279. .navhover a::after {
  280. display: inline-block;
  281. opacity: 0;
  282. -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  283. -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  284. transition: transform 0.3s, opacity 0.2s;
  285. }
  286.  
  287. .navhover a::before {
  288. padding-right:2px;
  289. content: '{';
  290. -webkit-transform: translateX(20px);
  291. -moz-transform: translateX(20px);
  292. transform: translateX(20px);
  293. }
  294.  
  295. .navhover a::after {
  296. padding-left:2px;
  297. content: '}';
  298. -webkit-transform: translateX(-20px);
  299. -moz-transform: translateX(-20px);
  300. transform: translateX(-20px);
  301. }
  302.  
  303. .navhover a:hover::before,
  304. .navhover a:hover::after,
  305. .navhover a:focus::before,
  306. .navhover a:focus::after {
  307. opacity: 1;
  308. -webkit-transform: translateX(0px);
  309. -moz-transform: translateX(0px);
  310. transform: translateX(0px);
  311. }
  312.  
  313. #nav {
  314. font-size:7px;
  315. color:white;
  316. text-align:center;
  317. text-transform:uppercase;
  318. font-family:times new roman;
  319. font-weight:bold;
  320. width:250px;
  321. padding:10px 10px 5px 10px;
  322. letter-spacing:2px;
  323. }
  324.  
  325. #nav a {
  326. color:{color:navlinks};
  327. padding:4px;
  328. -webkit-transition:all 0.6s ease-out;
  329. -moz-transition:all 0.6s ease-out;
  330. transition:all 0.6s ease-out;
  331. }
  332.  
  333. #nav a:hover {
  334. color:{color:description text};
  335. -webkit-transition:all 0.6s ease-out;
  336. -moz-transition:all 0.6s ease-out;
  337. transition:all 0.6s ease-out;
  338. }
  339.  
  340.  
  341. a {
  342. text-decoration:none;
  343. outline:none;
  344. -moz-outline-style:none;
  345. color:{color:link};
  346. -moz-transition-duration: 0.9s;
  347. -webkit-transition-duration: 0.9s;
  348. -o-transition-duration: 0.9s;
  349. }
  350.  
  351. a:hover {
  352. text-decoration:none;
  353. outline:none;
  354. -moz-outline-style:none;
  355. color:{color:linkhover};
  356. -moz-transition-duration: 0.9s;
  357. -webkit-transition-duration: 0.9s;
  358. -o-transition-duration: 0.9s;
  359. }
  360.  
  361. blockquote {
  362. padding-left:5px;
  363. border-left:1px dotted {color:bold};
  364. }
  365.  
  366. blockquote blockquote {
  367. padding-left:5px;
  368. border-left:1px dotted {color:navlinks};
  369. }
  370.  
  371. h1 {
  372. font-family:times new roman;
  373. font-weight:bold;
  374. text-transform:uppercase;
  375. font-size:10px;
  376. }
  377.  
  378. #entries {
  379. padding:10px;
  380. padding-top:60px;
  381. width:500px;
  382. margin:auto;
  383. }
  384.  
  385. #entries:hover #tags {
  386. opacity:1;
  387. -moz-transition-duration: 0.9s;
  388. -webkit-transition-duration: 0.9s;
  389. -o-transition-duration: 0.9s;
  390. }
  391.  
  392. #post {
  393. width:500px;
  394. padding-bottom:40px;
  395. }
  396.  
  397.  
  398. #pagination {
  399. bottom:0px;
  400. width:500px;
  401. padding:11px;
  402. margin:auto;
  403. margin-bottom:20px;
  404. word-spacing:15px;
  405. text-align:center;
  406. background:{color:background};
  407. opacity:1;
  408. }
  409.  
  410. #pagination a {
  411. color:{color:italic};
  412. font-family:times new roman;
  413. font-size:7px;
  414. font-weight:bold;
  415. text-transform:uppercase;
  416. letter-spacing:1px;
  417. padding:5px;
  418. background-color:{color:background};
  419. -moz-transition-duration: 0.9s;
  420. -webkit-transition-duration: 0.9s;
  421. -o-transition-duration: 0.9s;
  422. }
  423.  
  424. #pagination a:hover {
  425. color:{color:background};
  426. font-family:times new roman;
  427. font-size:7px;
  428. font-weight:bold;
  429. text-transform:uppercase;
  430. letter-spacing:1px;
  431. padding:5px;
  432. background-color:{color:bold};
  433. -moz-transition-duration: 0.9s;
  434. -webkit-transition-duration: 0.9s;
  435. -o-transition-duration: 0.9s;
  436. }
  437.  
  438. #title {
  439. font-size:18px;
  440. text-align:center;
  441. text-transform:uppercase;
  442. font-family:times new roman;
  443. font-weight:bold;
  444. margin:auto;
  445. color:{color:description text};
  446. margin-bottom:15px;
  447. margin-top:20px;
  448. }
  449.  
  450. #sidebar {
  451. height:70%;
  452. padding-top:10px;
  453. background-color:{color:description};
  454. padding:20px 20px 10px 20px;
  455. }
  456.  
  457. #sidebarimage img {
  458. width:70px;
  459. height:70px;
  460. border-radius:100px;
  461. border-bottom: 4px solid {color:bold};
  462. border-right: 4px solid {color:bold};
  463. }
  464.  
  465. #description {
  466. padding-top:15px;
  467. text-align:justify;
  468. margin:auto;
  469. color:{color:description text};
  470. width:250px;
  471. margin-bottom:20px;
  472. }
  473.  
  474. #description b, bold, strong {
  475. font-style:bold;
  476. color:{color:description text};
  477. padding-bottom:2px;
  478. border-bottom:1px solid {color:navlinks};
  479. }
  480.  
  481. #description a {
  482. font-family:times new roman;
  483. font-size:7px;
  484. text-transform:uppercase;
  485. color:{color:navlinks};
  486. letter-spacing:1px;
  487. -moz-transition-duration: 0.9s;
  488. -webkit-transition-duration: 0.9s;
  489. -o-transition-duration: 0.9s;
  490. }
  491.  
  492. #description a:hover {
  493. font-family:times new roman;
  494. font-size:7px;
  495. text-transform:uppercase;
  496. letter-spacing:1px;
  497. color:{color:description text};
  498. -moz-transition-duration: 0.9s;
  499. -webkit-transition-duration: 0.9s;
  500. -o-transition-duration: 0.9s;
  501. }
  502.  
  503. #permalink {
  504. text-align:center;
  505. font-size:7px;
  506. margin-top:10px;
  507. padding-bottom:5px;
  508. text-transform:uppercase;
  509. font-family:times new roman;
  510. font-weight:bold;
  511. border-bottom:1px solid {color:navlinks};
  512. letter-spacing:1px;
  513. opacity:1;
  514. -moz-transition-duration: 0.6s;
  515. -webkit-transition-duration: 0.6s;
  516. -o-transition-duration: 0.6s;
  517. }
  518.  
  519. #tags {
  520. font:7px 'Times New Roman';
  521. font-weight:bold;
  522. text-transform:uppercase;
  523. letter-spacing:1px;
  524. {block:IfHovertags}opacity:0;{block:IfHovertags}
  525. padding-top:10px;
  526. text-align:center;
  527. -moz-transition-duration: 0.6s;
  528. -webkit-transition-duration: 0.6s;
  529. -o-transition-duration: 0.6s;
  530. }
  531.  
  532. #pagination {
  533. font-size:20px;
  534. text-align:center;
  535. }
  536.  
  537.  
  538. #audio {
  539. height:auto;
  540. min-height:100px;
  541. padding-bottom:13px;
  542. }
  543.  
  544. .cover {
  545. position:absolute;
  546. z-index:1;
  547. width:100px;
  548. height:100px;
  549. border-radius:100px;
  550. padding-right:20px;
  551. }
  552.  
  553. .cover img {
  554. float:left;
  555. width:100px;
  556. height:100px;
  557. box-shadow: 4px 4px 10px {color:navlinks};
  558. border-radius:100px;
  559. }
  560.  
  561. .button {
  562. width:19px;
  563. height:20px;
  564. overflow:hidden;
  565. position:relative;
  566. z-index:1000;
  567. margin-top:22px;
  568. margin-left:21px;
  569. text-align:center;
  570. margin-top:6px;
  571. margin-left:8px;
  572. -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
  573. }
  574.  
  575. .box {
  576. opacity:0.8;
  577. width:40px;
  578. height:40px;
  579. margin-top:30px;
  580. margin-left:30px;
  581. background:#fff;
  582. position:absolute;
  583. z-index:1000;
  584. -webkit-border-radius:100px;
  585. -moz-border-radius:100px;
  586. border-radius:100px;
  587. -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
  588. }
  589.  
  590. artist {
  591. font-family:times new roman;
  592. font-size:7px;
  593. font-weight:bold;
  594. color:{color:bold};
  595. text-transform:uppercase;
  596. }
  597.  
  598. label {
  599. font-style:italic;
  600. }
  601.  
  602. .box:hover {
  603. opacity:1.0;
  604. width:40px;
  605. height:40px;
  606. margin-top:30px;
  607. margin-left:30px;
  608. background:{color:background};
  609. position:absolute;
  610. z-index:1000;
  611. -webkit-border-radius:100px;
  612. -moz-border-radius:100px;
  613. border-radius:100px;
  614. -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
  615. }
  616.  
  617. .capbox {
  618. padding:20px 50px 20px 20px;
  619. margin-left:82px;
  620. border-top:10px solid transparent;
  621. border-left:20px solid transparent;
  622. height:auto;
  623. min-height:35px;
  624. font-family:times new roman;
  625. font-size:10px;
  626. background-color: {color:background};
  627. text-align:left;
  628. width:320px;
  629. }
  630.  
  631. .notes {
  632. font-family:times new roman;
  633. font-size:7px;
  634. text-transform:uppercase;
  635. padding:10px 0px 10px 0px;
  636. }
  637.  
  638. .ask {
  639. padding: 20px;
  640. background-color: {color:ask};
  641. font-size: 8px;
  642. text-align: justify;
  643. min-height:50px;
  644. text-transform: uppercase;
  645. }
  646.  
  647. .ask a {
  648. font-family:times new roman;
  649. font-size:7px;
  650. text-transform:uppercase;
  651. }
  652.  
  653. .ask img {float: left;
  654. padding: 3px;
  655. margin-right: 10px;
  656. margin-bottom: 10px;}
  657.  
  658. .chat {
  659. line-height: 12px;
  660. list-style: none }
  661.  
  662. .chat ul {
  663. line-height: 15px;
  664. list-style: none;
  665. padding: 0px;
  666. line-height:20px;}
  667.  
  668. .person1 {
  669. background-color:{color:ask};
  670. color: {color:Text};}
  671.  
  672. .person1 .label {
  673. font:7px 'Times New Roman';
  674. font-weight:bold;
  675. text-transform:uppercase;
  676. padding: 0px;
  677. margin-left: 5px;
  678. color:{color:bold};}
  679.  
  680. .person2 {
  681. background-color:{color:background};
  682. color: {color:text}; }
  683.  
  684. .person2 .label {
  685. font:7px 'Times New Roman';
  686. font-weight:bold;
  687. text-transform:uppercase;
  688. padding: 0px;
  689. margin-left: 5px;
  690. color:{color:italic};}
  691.  
  692. #cred a {
  693. color:{color:background};
  694. background-color:{color:bold};
  695. padding:3px;
  696. border-radius:100px;
  697. border:1px solid {color:bold};
  698. font-family:"calibri";
  699. }
  700.  
  701. #cred a:hover {
  702. color:{color:bold};
  703. background-color:{color:ask};
  704. border:1px solid {color:ask};
  705. padding:3px;
  706. border-radius:100px;
  707. font-family:"calibri";
  708. text-decoration:none;
  709. }
  710.  
  711. #cred {
  712. width:auto;
  713. height:auto;
  714. bottom:15px;
  715. right:15px;
  716. padding:4px;
  717. z-index:1000000;
  718. font-size:8px;
  719. letter-spacing:1px;
  720. position:fixed;
  721. text-align:center;
  722. font-family:"calibri";
  723. text-transform:uppercase;
  724. -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
  725. }
  726.  
  727.  
  728. {CustomCSS}
  729.  
  730. </style>
  731.  
  732. </head>
  733.  
  734. <body>
  735.  
  736. <div id="askbox" class="popup_block">
  737. <h1>{text:ask title}</h1>
  738. <p><iframe frameborder="0" height="200" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/{text:your url}.tumblr.com" width="100%"></iframe></p>
  739. </div>
  740.  
  741. <div id="linkage" class="popup_block">
  742. <div id="linkage">
  743. <h1>navigation</h1><br>
  744. <a title="{text:Link1 Title}" href="{text:Link1}">{text:Link1 Title}</a>
  745. <a title="{text:Link2 Title}" href="{text:Link2}">{text:Link2 Title}</a>
  746. <a title="{text:Link3 Title}" href="{text:Link3}">{text:Link3 Title}</a>
  747. <a title="{text:Link4 Title}" href="{text:Link4}">{text:Link4 Title}</a>
  748. <br><br>
  749.  
  750. </div>
  751. </div>
  752.  
  753. <center><div id="sidebar">
  754.  
  755. <center><div id="sidebarimage" align="center"><a title="{Title}" href="/"><img src="{image:sidebar}"></a></div></center>
  756.  
  757. <div id="title">{<font color="{color:description}">------</font>{Title}<font color="{color:description}">------</font>}</div>
  758.  
  759. <center><div id="nav" class="navhover" align="center">
  760.  
  761. <a href="/">home</a>
  762.  
  763. <a href="#?w=300" rel="askbox" class="poplight">ask</a>
  764.  
  765. <a href="/archive">memories</a>
  766.  
  767. <a href="#?w=400" rel="linkage" class="poplight">links</a>
  768.  
  769. </div></center>
  770.  
  771. <div id="description">{Description}</div>
  772.  
  773. </div>
  774.  
  775. </div>
  776. </center>
  777.  
  778. <div id="cred"><a title="©theme by imjaebumx" href="http://imjaebumx.tumblr.com">IJX</a></div>
  779. <div id="entries">{block:Posts}<div id="post">
  780.  
  781. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  782.  
  783. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  784.  
  785. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  786.  
  787. <center>{block:Quote}<b><h1><quotation>"</quotation>{Quote}”</h1></b><p align="left">–{Source}</p>{/block:Quote}</center>
  788.  
  789. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  790.  
  791. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  792.  
  793. {block:Chat}
  794. {block:Title}
  795. <h1>{Title}</h1>
  796. {/block:Title}
  797. <div class="chat"><ul>{block:Lines}
  798. <li class="person{UserNumber}">{block:Label}
  799. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  800.  
  801. {/block:Chat}
  802.  
  803. {block:Audio}
  804. <div id="audio">
  805. <div class="cover">
  806. <img src="http://static.tumblr.com/k9utpfa/tcom8wpif/default_cover_m.jpg">
  807. </div>
  808. {block:AlbumArt}
  809. <div class="cover">
  810. <img src="{AlbumArtURL}"></div>
  811. {/block:AlbumArt}
  812. <div class="box">
  813. <div class="button">
  814. {block:AudioPlayer}
  815. {AudioPlayerWhite}
  816. {/block:AudioPlayer}
  817. </div></div>
  818. <div class="capbox">
  819. <span class="caption"><artist><span {block:Artist} style="display:none;"{/block:Artist}>Unknown</span> {block:Artist}{Artist}</artist>{/block:Artist}<br>
  820. <label><span{block:TrackName} style="display:none;"{/block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}
  821. <br>{block:PlayCount} {PlayCountWithLabel}</label>{/block:PlayCount}
  822. </span>
  823. </div></div>
  824.  
  825. {block:Caption}{Caption}{/block:Caption}
  826. {/block:Audio}
  827.  
  828. {block:Answer}
  829. <div class="ask"><img src="{AskerPortraitURL-40}"><b>{Asker}</b>:<br>{Question}</div>
  830. {Answer}
  831. {/block:Answer}
  832.  
  833. <div id="permalink">
  834. <br> {block:Date}<div id="info"><a href="{Permalink}">{DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</a> {block:NoteCount} - { <a href="{Permalink}">{NoteCount}</a> } {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentTitle}" href="{ReblogParentURL}">VIA</a>{/block:RebloggedFrom}{block:ContentSource}/ <a title="{SourceTitle}" href="{SourceURL}">SOURCE</a>{/block:ContentSource} {/block:Date}</div></div> <div id="tags">{block:HasTags}{block:Tags} <a title="#{Tag}" href="{TagURL}">#{Tag}</a>{/block:Tags}{/block:HasTags}</div>
  835.  
  836. </div>
  837. {block:PostNotes} <div class="notes"> <img scr=" {PostNotes-16}"/> &nbsp;&nbsp; &nbsp;&nbsp;{PostNotes} &nbsp;&nbsp;</div>{/block:PostNotes}
  838. {/block:Posts}</div>
  839.  
  840. <div id="pagination">
  841. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage}&nbsp; {block:NextPage}<a href="{NextPage}"> next</a><br />{/block:NextPage}{/block:Pagination}</div></center>
  842.  
  843. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment