Advertisement
sarahthemes

Theme 003 by heytonks.tumblr.com

Mar 27th, 2014
2,422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.36 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.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <!-- theme 003 by heytonks.tumblr.com ~ do not remove credit, redistribute, or claim as your own. if you have any questions, feel free to send me a message on my personal blog (heytonks) -->
  7.  
  8. <html>
  9. <head>
  10.  
  11. <title>{Title}</title>
  12. <link rel="shortcut icon" href="{Favicon}" />
  13. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  14. {block:Description} <meta name="description" content="{MetaDescription}" /> {/block:Description}
  15.  
  16. <link href='http://fonts.googleapis.com/css?family=Raleway:800,600' rel='stylesheet' type='text/css'>
  17.  
  18.  
  19. <!-- default variables -->
  20.  
  21. <meta name="if:Pop Up Ask Box" content="1"/>
  22. <meta name="text:Your Username" content="you must put your username / url here for your pop-up ask to work for example if your url is heytonks than you must delete this text and type heytonks in the box"/>
  23.  
  24. <meta name="image:Sidebar Image" content="http://static.tumblr.com/vdw1lg6/teEn5vyuj/static6.gif"/>
  25. <meta name="image:Sidebar Background" content=""/>
  26. <meta name="image:Background" content=""/>
  27.  
  28. <meta name="text:Link 1 URL" content="/"/>
  29. <meta name="text:Link 1" content="home"/>
  30. <meta name="text:Link 2 URL" content="/ask"/>
  31. <meta name="text:Link 2" content="message"/>
  32. <meta name="text:Link 3 URL" content="/"/>
  33. <meta name="text:Link 3" content="link 3"/>
  34. <meta name="text:Link 4 URL" content="/"/>
  35. <meta name="text:Link 4" content="link 4"/>
  36. <meta name="text:Link 5 URL" content="/"/>
  37. <meta name="text:Link 5" content="link 5"/>
  38. <meta name="text:Link 6 URL" content="/"/>
  39. <meta name="text:Link 6" content="link 6"/>
  40. <meta name="text:Custom Cursor URL" content="http://static.tumblr.com/vdw1lg6/KVQn5vyh5/static1.png"/>
  41.  
  42. <meta name="color:Background" content ="#fbfbfb"/>
  43. <meta name="color:Title" content ="#4bc0db"/>
  44. <meta name="color:Sidebar" content ="#ffffff"/>
  45. <meta name="color:Description Text" content ="#5a5a5a"/>
  46. <meta name="color:Description Box" content ="#fdfdfd"/>
  47. <meta name="color:Sidebar Links" content ="#f9f9f9"/>
  48. <meta name="color:Sidebar Links Hover" content ="#cefcff"/>
  49. <meta name="color:Post Background" content ="#ffffff"/>
  50. <meta name="color:Post Title" content ="#fffaf4"/>
  51. <meta name="color:Text" content ="#3e3e3e"/>
  52. <meta name="color:Links" content ="#a3819e"/>
  53. <meta name="color:Links Hover" content ="#ce00b5"/>
  54. <meta name="color:Tags" content ="#484848"/>
  55. <meta name="color:Tags Hover" content ="#d5d5d5"/>
  56. <meta name="color:Post Info" content ="#1c859d"/>
  57. <meta name="color:Post Info Hover" content ="#92eaed"/>
  58. <meta name="color:Scrollbar" content ="#e2e2e2"/>
  59. <meta name="color:Post Border" content ="#f5f5f5"/>
  60.  
  61. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  62.  
  63. <script type="text/javascript" src="http://static.tumblr.com/ko1mcho/PMbmlkh9e/jquery.style-my-tooltips.js"></script>
  64.  
  65. <script>
  66. (function($){
  67. $(document).ready(function(){
  68. $("[title],a[title],img[title]").style_my_tooltips({
  69. tip_follows_cursor:"true",
  70. tip_delay_time:200,
  71. tip_fade_speed:200,
  72. attribute:"title"
  73. });
  74. });
  75. })(jQuery);
  76. </script>
  77.  
  78. {block:ifPopUpAskBox}
  79. <script>
  80. $(document).ready(function() {
  81. //When you click on a link with class of poplight and the href starts with a #
  82. $('a.poplight[href^=#]').click(function() {
  83. var popID = $(this).attr('rel'); //Get Popup Name
  84. var popURL = $(this).attr('href'); //Get Popup href to define size
  85. //Pull Query & Variables from href URL
  86. var query= popURL.split('?');
  87. var dim= query[1].split('&');
  88. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  89. //Fade in the Popup and add close button
  90. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img class="btn_close"/></a>');
  91. //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
  92. var popMargTop = ($('#' + popID).height() + 80) / 2;
  93. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  94. //Apply Margin to Popup
  95. $('#' + popID).css({
  96. 'margin-top' : -popMargTop,
  97. 'margin-left' : -popMargLeft
  98. });
  99. //Fade in Background
  100. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  101. $('#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
  102. return false;
  103. });
  104. //Close Popups and Fade Layer
  105. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  106. $('#fade , .popup_block').fadeOut(function() {
  107. $('#fade, a.close').remove(); //fade them both out
  108. });
  109. return false;
  110. });
  111. });
  112. </script>
  113. {/block:ifPopUpAskBox}
  114.  
  115. </head>
  116. <style type="text/css">
  117.  
  118. *, body, a, a:hover {cursor: url({text:Custom Cursor URL}), auto;}
  119.  
  120. body {
  121. background-color:{color:Background};
  122. font-size:12px;
  123. text-decoration:none;
  124. font-family:"Trebuchet MS";
  125. color:{color:Text};
  126. background-image:url('{image:Background}');
  127. background-attachment:fixed;
  128. background-position:top left;
  129. background-repeat:repeat;
  130. }
  131.  
  132. a {
  133. text-decoration:none;
  134. color:{color:Links};
  135. -webkit-transition:all 0.8s;
  136. -moz-transition: all 0.8s;
  137. -o-transition: all 0.8s;
  138. -ms-transition: all 0.8s;
  139. }
  140.  
  141. a:hover {
  142. color:{color:Links Hover};
  143. -webkit-transition:all 0.8s;
  144. -moz-transition: all 0.8s;
  145. -o-transition: all 0.8s;
  146. -ms-transition: all 0.8s;
  147. }
  148.  
  149. blockquote {
  150. border-left:1px dotted #a5a5a5;
  151. padding:0px 8px;
  152. margin-left:20px;
  153. }
  154.  
  155. h2 {
  156. text-transform:uppercase;
  157. font-size:12px;
  158. display:block;
  159. padding:15px;
  160. text-align:center;
  161. color:{color:Text};
  162. background-color:{color:Post Title};
  163. font-family:"Trebuchet MS";
  164. margin-top:0px;
  165. }
  166.  
  167. #sidebar {
  168. background-color:{color:Sidebar};
  169. margin-top:-20px;
  170. margin-left:-10px;
  171. position:fixed;
  172. width:450px;
  173. height:100%;
  174. padding-right:10px;
  175. border-right:1px solid {color:Post Border};
  176. background-image:url('{image:Sidebar Background}');
  177. background-attachment:fixed;
  178. background-position:bottom left;
  179. background-repeat:none;
  180. }
  181.  
  182. #wrapper {
  183. width:250px;
  184. margin-top:160px;
  185. margin-left:110px;
  186. }
  187.  
  188. #sidebarimage {
  189. margin-left:15px;
  190. }
  191.  
  192. #sidebarimage img {
  193. width:235px;
  194. max-height:350px;
  195. }
  196.  
  197. #title {
  198. font-family: 'Raleway', sans-serif;
  199. font-weight:800;
  200. text-transform:uppercase;
  201. font-size:21px;
  202. color:{color:Title};
  203. margin-left:15px;
  204. padding-bottom:4px;
  205. -webkit-filter:blur(0px);
  206. -webkit-transition:all 0.5s;
  207. -moz-transition: all 0.5s;
  208. -o-transition: all 0.5s;
  209. -ms-transition: all 0.5s;
  210. }
  211.  
  212. #title:hover {
  213. -webkit-filter:blur(1px);
  214. -webkit-transition:all 0.5s;
  215. -moz-transition: all 0.5s;
  216. -o-transition: all 0.5s;
  217. -ms-transition: all 0.5s;
  218. }
  219.  
  220. #title a {
  221. color:{color:Title};
  222. }
  223.  
  224. #title a:hover {
  225. color:{color:Title};
  226. }
  227.  
  228. ::-webkit-scrollbar { background-color: {color:Scrollbar}; height:9px; width:9px; border: 4px solid {color:Description Box}; }
  229.  
  230. ::-webkit-scrollbar-thumb{ background-color: {color:Scrollbar}; height:auto; border-radius:3px; border: 2px solid {color:Description Box}; }
  231.  
  232. #description {
  233. margin-top:10px;
  234. font-size:12px;
  235. float:left;
  236. width:160px;
  237. height:85px;
  238. text-align:justify;
  239. overflow-x:hidden;
  240. overflow-y:auto;
  241. padding:12px;
  242. border:1px dotted {color:Scrollbar};
  243. border-radius:4px;
  244. background-color:{color:Description Box};
  245. color:{color:Description Text};
  246. font-family:Calibri;
  247. letter-spacing:.7px;
  248. line-height:15px;
  249. margin-left:15px;
  250.  
  251. }
  252.  
  253. #links {
  254. width:42px;
  255. margin-top:10px;
  256. float:right;
  257. color:{color:Description Text};
  258. }
  259.  
  260. #links a {
  261. text-align:center;
  262. display:block;
  263. height:12px;
  264. background-color:{color:Sidebar Links};
  265. text-decoration:none;
  266. border-bottom:2px solid {color:Scrollbar};
  267. font-family: 'Raleway', sans-serif;
  268. font-weight:600;
  269. font-size:9px;
  270. margin-bottom:5px;
  271. line-height:26px;
  272. color:{color:Description Text};
  273. text-transform:uppercase;
  274. letter-spacing:1.6px;
  275. -webkit-transition:all 0.8s;
  276. -moz-transition: all 0.8s;
  277. -o-transition: all 0.8s;
  278. -ms-transition: all 0.8s;
  279. }
  280.  
  281. #links a:hover {
  282. color:{color:Description Text};
  283. background-color:{color:Sidebar Links Hover};
  284. border-bottom:2px solid {color:Title};
  285. -webkit-transition:all 0.8s;
  286. -moz-transition: all 0.8s;
  287. -o-transition: all 0.8s;
  288. -ms-transition: all 0.8s;
  289. }
  290.  
  291. #s-m-t-tooltip{
  292. font-family: 'Raleway', sans-serif;
  293. font-weight:600;
  294. font-size:8px;
  295. height:auto;
  296. width:auto;
  297. padding:6px;
  298. margin-top:15px;
  299. margin-left:15px;
  300. background-color:#565656;
  301. position:absolute;
  302. color:#ffffff;
  303. text-transform:uppercase;
  304. letter-spacing:2px;
  305. box-shadow:2px 2px 6px #747474;
  306. }
  307.  
  308. #posts {
  309. background-color:{color:Post Background};
  310. padding:20px;
  311. width:500px;
  312. border:1px solid {color:Post Border};
  313. margin:20px 0px 20px 500px;
  314. border-radius:6px;
  315. opacity:0.8;
  316. -webkit-transition-duration:0.8s;
  317. -moz-transition-duration:0.8s;
  318. -o-transition-duration:0.8s;
  319. }
  320.  
  321. #posts:hover {
  322. opacity:1;
  323. box-shadow: 2px 2px 7px #d2d2d2;
  324. -webkit-transition-duration:0.8s;
  325. -moz-transition-duration:0.8s;
  326. -o-transition-duration:0.8s;
  327. }
  328.  
  329. #posts img {
  330. max-width:100%;
  331. }
  332.  
  333. #albumart img {
  334. padding:8px;
  335. border:1px dashed {color:Scrollbar};
  336. margin-top:-141px;
  337. float:left;
  338. position:relative;
  339. z-index:93;
  340. }
  341.  
  342. #defaultart img {
  343. padding:8px;
  344. border:1px dashed {color:Scrollbar};
  345. position:relative;
  346. z-index:90;
  347. }
  348.  
  349. #player {
  350. overflow: hidden;
  351. width: 30px;
  352. height: 30px;
  353. margin-top:20px;
  354. margin-left:22px;
  355. position:relative;
  356. z-index:99;
  357. opacity:0.7;
  358. -webkit-transition-duration:0.7s;
  359. -moz-transition-duration:0.7s;
  360. -o-transition-duration:0.7s;
  361. }
  362.  
  363. #playerbg {
  364. width:70px;
  365. height:70px;
  366. background-color:#ffffff;
  367. position:absolute;
  368. margin-top:-107px;
  369. margin-left:37px;
  370. z-index:96;
  371. -moz-border-radius: 70px;
  372. -webkit-border-radius: 70px;
  373. border-radius: 70px;
  374. opacity:0.7;
  375. -webkit-transition-duration:0.7s;
  376. -moz-transition-duration:0.7s;
  377. -o-transition-duration:0.7s;
  378. }
  379.  
  380. #player:hover {
  381. opacity:0.9;
  382. -webkit-transition-duration:0.7s;
  383. -moz-transition-duration:0.7s;
  384. -o-transition-duration:0.7s;
  385. }
  386.  
  387. #playerbg:hover {
  388. opacity:0.9;
  389. -webkit-transition-duration:0.7s;
  390. -moz-transition-duration:0.7s;
  391. -o-transition-duration:0.7s;
  392. }
  393.  
  394.  
  395. #audioinfo {
  396. font-size:11px;
  397. text-align:center;
  398. background-color:{color:Description Box};
  399. border-top:1px solid {color:Post Border};
  400. border-bottom:1px solid {color:Post Border};
  401. width:300px;
  402. line-height:15px;
  403. height:98px;
  404. padding:20px 20px;
  405. margin-left:155px;
  406. margin-top:-141px;
  407. float:right;
  408. position:relative;
  409. display:table;
  410. }
  411.  
  412. #audioinfo p {
  413. display:table-cell;
  414. vertical-align:middle;
  415. text-align:center;
  416. }
  417.  
  418. #tags {
  419. font-size:11px;
  420. opacity: 0;
  421. height: 0;
  422. -moz-transition-duration: .4s;
  423. -webkit-transition-duration: .4s;
  424. transition-duration: .4s;
  425. }
  426.  
  427. #posts:hover #tags {
  428. display:block;
  429. margin-top:5px;
  430. background-color:{color:Description Box};
  431. padding:5px;
  432. border:1px dotted {color:Post Border};
  433. opacity: 1;
  434. height: auto;
  435. -moz-transition-duration: .4s;
  436. -webkit-transition-duration: .44s;
  437. transition-duration: .4s;
  438. }
  439.  
  440. #posts:hover #tags a {
  441. color:{color:Tags};
  442. }
  443.  
  444. #posts:hover #tags a:hover {
  445. color:{color:Tags Hover};
  446. }
  447.  
  448. #postinfo {
  449. margin-top:27px;
  450. font-size:10px;
  451. text-transform:uppercase;
  452. border-top:1px dashed {color:Scrollbar};
  453. padding-top:11px;
  454. width:250px;
  455. }
  456.  
  457. #postinfo a {
  458. color:{color:Post Info};
  459. }
  460.  
  461. #postinfo a:hover {
  462. color:{color:Post Info Hover};
  463. }
  464.  
  465.  
  466. #tags img {
  467. vertical-align:middle;
  468. }
  469.  
  470. #ask {
  471. display:block;
  472. background-color:{color:Description Box};
  473. border-top:1px solid {color:Post Border};
  474. border-bottom:1px solid {color:Post Border};
  475. margin-top:30px;
  476. padding:20px;
  477. }
  478.  
  479. #askerimg img {
  480. border-radius:40px;
  481. margin-top:-48px;
  482. background-color:{color:Post Background};
  483. padding:5px;
  484. border:1px dashed {color:Scrollbar};
  485. transform: rotate(0deg);
  486. -webkit-transition-duration: 1s;
  487. -moz-transform: rotate(0deg);
  488. -webkit-transform: rotate(0deg);
  489. -o-transform: rotate(0deg);
  490. }
  491.  
  492. #askerimg img:hover {
  493. transform: rotate(360deg);
  494. -webkit-transition-duration: 1s;
  495. -moz-transform: rotate(360deg);
  496. -webkit-transform: rotate(360deg);
  497. -o-transform: rotate(360deg);
  498. }
  499.  
  500. #asker {
  501. font-family: 'Raleway', sans-serif;
  502. font-weight:800;
  503. font-size:14px;
  504. text-transform:uppercase;
  505. margin-top:4px;
  506. }
  507.  
  508. #question {
  509. margin-top:3px;
  510. }
  511.  
  512. #pagination {
  513. margin-top:165px;
  514. font-size:11px;
  515. font-style:italic;
  516. letter-spacing:0.6px;
  517. }
  518.  
  519. #pagination a {
  520. color:{color:Title};
  521. display:inline-block;
  522. background-color:{color:Sidebar};
  523. padding:4px 8px;
  524. }
  525.  
  526. #pagination a:hover {
  527. color:{color:Sidebar};
  528. background-color:{color:Title};
  529. }
  530.  
  531.  
  532.  
  533. .date {
  534. margin-left:530px;
  535. position:absolute;
  536. font-size:22px;
  537. font-family: 'Raleway', sans-serif;
  538. font-weight:800;
  539. letter-spacing:-1.0px;
  540. line-height:19px;
  541. text-align:right;
  542. }
  543.  
  544. #notecontainer {
  545. width:500px;
  546. margin-left:500px;
  547. text-transform:lowercase;
  548. font-size:10px;
  549. font-style:italic;
  550. }
  551.  
  552. ol.notes {
  553. list-style-type:none;
  554. }
  555.  
  556. li.note {
  557. padding:10px 2px;
  558. border-bottom:1px solid {color:Post Border};
  559. list-style-image:url('http://static.tumblr.com/vdw1lg6/f8Fn2ytm8/theme-x.png');
  560. }
  561.  
  562. img.avatar {
  563. width:16px;
  564. height:16px;
  565. border-radius:3px;
  566. display:inline-block;
  567. vertical-align:middle;
  568. margin-right:10px;
  569. }
  570.  
  571. #posts li {
  572. list-style-image:url('http://static.tumblr.com/vdw1lg6/f8Fn2ytm8/theme-x.png');
  573. }
  574.  
  575. #quote {
  576. font-style:italic;
  577. font-size:17px;
  578. line-height:25px;
  579. margin-left:33px;
  580. margin-top:-13px;
  581. padding-right:10px;
  582. }
  583.  
  584. #quotemark {
  585. color: #eeeeee;
  586. font-size:110px;
  587. font-style: italic;
  588. height:46px;
  589. z-index: 0;
  590. }
  591.  
  592. #quotesource {
  593. font-family: 'Raleway', sans-serif;
  594. font-weight:600;
  595. text-align:right;
  596. text-transform:uppercase;
  597. font-size:11px;
  598. margin-top:7px;
  599. }
  600.  
  601. #credit a {
  602. position:fixed;
  603. bottom:12px;
  604. right:12px;
  605. padding:6px;
  606. border:1px dashed #cecece;
  607. font-family: 'Raleway', sans-serif;
  608. font-weight:800;
  609. font-size:11px;
  610. background-color:{color:Sidebar};
  611. color:{color:Title};
  612. -webkit-transition:all 0.8s;
  613. -moz-transition: all 0.8s;
  614. -o-transition: all 0.8s;
  615. -ms-transition: all 0.8s;
  616. }
  617.  
  618. #credit a:hover {
  619. color:{color:Sidebar};
  620. background-color:{color:Title};
  621. -webkit-transition:all 0.8s;
  622. -moz-transition: all 0.8s;
  623. -o-transition: all 0.8s;
  624. -ms-transition: all 0.8s;
  625. }
  626.  
  627. {block:ifPopUpAskBox}
  628. #fade { /*--Transparent background layer--*/
  629. background: #000;
  630. position: fixed; left: 0; top: 0;
  631. width: 100%; height: 100%;
  632. opacity: .80;
  633. z-index: 9999;
  634. }
  635. .popup_block{
  636. display: none; /*--hidden by default--*/
  637. background:transparent;
  638. padding: 20px;
  639. float: left;
  640. position: fixed;
  641. top: 50%; left: 50%;
  642. z-index: 99999;
  643. }
  644. img.btn_close {
  645. float: right;
  646. margin: -5px -5px 0 0;
  647. }
  648. /*--Making IE6 Understand Fixed Positioning--*/
  649. *html #fade {
  650. position: absolute;
  651. }
  652. *html .popup_block {
  653. position: absolute;
  654. }
  655. .showhide_element {
  656. display: none;
  657. }
  658. {/block:ifPopUpAskBox}
  659.  
  660.  
  661.  
  662. {CustomCSS}
  663. </style>
  664. <body>
  665.  
  666. <div id="credit"><a href="http://heytonks.tumblr.com/" title="heytonks">THEME</a></div>
  667.  
  668. <div id="sidebar">
  669.  
  670. <div id="wrapper"><div id="title"><a href="/">{Title}</a></div>
  671.  
  672. <div id="sidebarimage"><a href="/"><img src="{image:Sidebar Image}"></a></div>
  673.  
  674. <div id="description">{Description}</div>
  675.  
  676. <div id="links">
  677. {block:ifLink1}<a href="{text:Link 1 URL}" title="{text:Link 1}">01</a>{/block:ifLink1}
  678. {block:ifLink2}{block:ifPopUpAskBox}<a href="#?w=500" rel="02" class="poplight" title="{text:Link 2}">02</a>{/block:ifPopUpAskBox}{/block:ifLink2}
  679. {block:ifLink2}{block:ifNotPopUpAskBox}<a href="{text:Link 2 URL}" title="{text:Link 2}">02</a>{/block:ifNotPopUpAskBox}{/block:ifLink2}
  680. {block:ifLink3}<a href="{text:Link 3 URL}" title="{text:Link 3}">03</a>{/block:ifLink3}
  681. {block:ifLink4}<a href="{text:Link 4 URL}" title="{text:Link 4}">04</a>{/block:ifLink4}
  682. {block:ifLink5}<a href="{text:Link 5 URL}" title="{text:Link 5}">05</a>{/block:ifLink5}
  683. {block:ifLink6}<a href="{text:Link 6 URL}" title="{text:Link 6}">06</a>{/block:ifLink6}
  684. </div>
  685.  
  686. {block:Pagination}<center>
  687. <div id="pagination">{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} /
  688. {block:NextPage}<a href="{NextPage}">forth</a>{/block:NextPage}</div>
  689. </center>{/block:Pagination}
  690. <!-- wrapper --> </div>
  691. </div>
  692.  
  693. <!-- posts -->
  694.  
  695. <div id="content">
  696. {block:Posts}
  697.  
  698.  
  699.  
  700. <div id="posts">
  701.  
  702. {block:IndexPage}<div class="date">
  703. {block:Date}<a href="{Permalink}" title="{TimeAgo}">.{MonthNumberWithZero}<br/>{DayOfMonthWithZero}<br/>{ShortYear}</a>{/block:Date}
  704. </div>{/block:IndexPage}
  705.  
  706. {block:PermalinkPage}<div class="date">
  707. {block:Date}<a href="{Permalink}" title="{TimeAgo}">.{MonthNumberWithZero}<br/>{DayOfMonthWithZero}<br/>{ShortYear}</a>{/block:Date}
  708. </div>{/block:PermalinkPage}
  709.  
  710. {block:Text}
  711. {block:Title}<h2>{Title}</h2>{/block:Title}
  712. {Body}
  713. {/block:Text}
  714.  
  715. {block:Photo}
  716. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}
  717. {block:Caption}{Caption}{/block:Caption}
  718. {/block:Photo}
  719.  
  720. {block:Panorama}
  721. {LinkOpenTag}<img src="{PhotoURL-Panorama}">{LinkCloseTag}
  722. {block:Caption}{Caption}{/block:Caption}
  723. {/block:Panorama}
  724.  
  725. {block:Photoset}
  726. {Photoset-500}
  727. {block:Caption}{Caption}{/block:Caption}
  728. {/block:Photoset}
  729.  
  730. {block:Quote}
  731. <div id="quotemark">“</div>
  732. <div id="quote">{Quote}</div>
  733. {block:Source}<div id="quotesource">{Source}</div>{/block:Source}
  734. {/block:Quote}
  735.  
  736. {block:Link}
  737. <h2><a href="{URL}">{Name}</a></h2>
  738. {block:Description}{Description}{/block:Description}
  739. {/block:Link}
  740.  
  741. {block:Chat}
  742. {block:Title}<h2>{Title}</h2>{/block:Title}
  743. {block:Lines}
  744. {block:Label}<b>{Label}</b>{/block:Label}
  745. {Line}<br/>{/block:Lines}
  746. {/block:Chat}
  747.  
  748. {block:Audio}<div id="audiowrap">
  749. <div id="defaultart"><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg" width="120" alt="default album art"/></div>
  750. {block:AlbumArt}<div id="albumart"><img src="{AlbumArtURL}" width="120"></div>{/block:AlbumArt}
  751. <div id="playerbg"><div id="player">{AudioPlayerWhite}</div></div>
  752. <div id="audioinfo"><p>{block:TrackName}<span style="text-transform:uppercase; font-size:14px; color:#66d2d9; font-family: 'Raleway', sans-serif; font-weight:800;">{TrackName}</span><br/>{/block:TrackName}
  753. {block:Artist}<b>Artist:</b> {Artist}<br/>{/block:Artist}
  754. {block:Album}<b>Album:</b> {Album}<br/>{/block:Album}
  755. <span style="text-transform:uppercase; font-size:12px; color:#000000; font-weight:bold;">{PlayCountWithLabel}</span></p></div></div>
  756. {block:Caption}{Caption}{/block:Caption}
  757. {/block:Audio}
  758.  
  759. {block:Video}
  760. {Video-500}
  761. {block:Caption}{Caption}{/block:Caption}
  762. {/block:Video}
  763.  
  764. {block:Answer}<center><div id="ask">
  765. <div id="askerimg"><img src="{AskerPortraitURL-40}"></div>
  766. <div id="asker">{Asker} <span style="line-height:14px; font-size:10px; display:inline-block; vertical-align:middle;">asked:</span></div>
  767. <div id="question">{Question}</div></div></center>
  768. {Answer}
  769. {/block:Answer}
  770.  
  771. <!-- post info -->
  772.  
  773. {block:IndexPage}<center><div id="postinfo">
  774. {block:NoteCount}<span style="color:#c32a13; font-size:9px; padding-right:1px;">&hearts;</span><a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<span style="padding:0px 8px;"> - </span><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> / <a href="{ReblogRootURL}" title="{ReblogRootName}">root</a><br/>{/block:RebloggedFrom}</div>
  775. {block:HasTags}<div id="tags"><span style="text-transform:uppercase; font-size:9px;">tagged under:</span> {block:Tags}<a href="{TagURL}"><img src="http://p.yusukekamiyamane.com/icons/search/fugue/icons/tag-small.png">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  776. </center>{/block:IndexPage}
  777.  
  778. {block:PermalinkPage}<center><div id="postinfo">
  779. {block:NoteCount}<span style="color:#c32a13; font-size:9px; padding-right:1px;">&hearts;</span><a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<span style="padding:0px 8px;"> - </span><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> / <a href="{ReblogRootURL}" title="{ReblogRootName}">root</a><br/>{/block:RebloggedFrom}</div>
  780. {block:Date}<span style="text-transform:uppercase; font-size:10px; color:#000000; padding:6px;">posted at {12Hour}:{Minutes} on {Month} {DayOfMonth}, {Year}</span>{/block:Date}
  781. {block:HasTags}<div id="tags"><span style="text-transform:uppercase; font-size:9px;">tagged under:</span> {block:Tags}<a href="{TagURL}"><img src="http://p.yusukekamiyamane.com/icons/search/fugue/icons/tag-small.png">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  782. </center>{/block:PermalinkPage}
  783.  
  784.  
  785.  
  786. </div>
  787. {/block:Posts}
  788.  
  789. {block:PostNotes}<div id="notecontainer">{PostNotes}</div>{/block:PostNotes}
  790. </div>
  791.  
  792.  
  793. </body>
  794.  
  795. {block:ifPopUpAskBox}
  796. <div id="02" class="popup_block">
  797.  
  798. <center><span style="text-transform:uppercase; font-family: 'Raleway', sans-serif; font-weight:800; font-size:14px; color:#ffffff;">{AskLabel}</span><p><iframe frameborder="0" height="200" src="http://www.tumblr.com/ask_form/{text:Your Username}.tumblr.com/" width="500"></iframe></p>
  799. <p><span style="color:#ffffff;">YOUR FAQ OR UPDATES GO HERE</span></p>
  800. </center></div>
  801. </div></div></div></div></div></div></div></div></div></div>
  802. {/block:ifPopUpAskBox}
  803.  
  804. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement