Don't like ads? PRO users don't see any ads ;-)

theme 013 - apache

By: thewicked-eternity on Jun 25th, 2012  |  syntax: None  |  size: 18.96 KB  |  hits: 4,781  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--
  2.     Theme 013 - Apache by thewicked-eternity.tumblr.com
  3.     PLEASE DO NOT REMOVE THE CREDIT OR REDISTRIBUTE
  4.     For any help, visit wickedeternitythemehelp.tumblr.com
  5. -->
  6.  
  7. <html><head>
  8.  
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}" />
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  12. <meta name="description" content="{MetaDescription}" />
  13.  
  14. <!-- DEFAULT VARIABLES -->
  15.         <meta name="color:Background" content="#FCF9ED"/>
  16.         <meta name="color:Text" content="#C2B4A6"/>
  17.         <meta name="color:Links" content="#A08888"/>
  18.         <meta name="color:Links Hover" content="#C2B4A6"/>
  19.         <meta name="color:Sidebar Background" content="#FFFFFF"/>
  20.         <meta name="color:Sidebar Image Border" content="#A08888"/>
  21.         <meta name="color:Mainlinks" content="#473B3A"/>
  22.         <meta name="color:Mainlinks Text" content="#FCF9ED"/>
  23.         <meta name="color:Mainlinks Background" content="#836B6A"/>
  24.         <meta name="color:Sidelinks" content="#473B3A"/>
  25.         <meta name="color:Sidelinks Hover" content="#836B6A"/>
  26.         <meta name="color:Info Background" content="#FFFFFF"/>
  27.         <meta name="color:Info Border" content="#A08888"/>
  28.         <meta name="color:Topbar Background" content="#473B3A"/>
  29.         <meta name="color:Scrollbar" content="#836B6A"/>
  30.  
  31.         <meta name="image:Sidebar" content=""/>
  32.         <meta name="image:Mainlinks" content="http://static.tumblr.com/vyzeblq/lrHm66rt6/background.jpg"/>
  33.         <meta name="image:Background" content=""/>
  34.  
  35.         <meta name="font:sidebar title" content="calibri" />
  36.         <meta name="font:post title" content="georgia" />
  37.         <meta name="font:body" content="arial" />
  38.         <meta name="font:description" content="arial" />
  39.        
  40.         <meta name="if:250px Sidebar" content="0" />
  41.         <meta name="if:Hidden Tags" content="0" />
  42.         <meta name="if:Hide Navigation" content="0" />
  43.         <meta name="if:Show Title" content="0" />
  44.        
  45.         <meta name="text:Link 1" content="http://"/>
  46.         <meta name="text:Link 1 Title" content=""/>
  47.         <meta name="text:Link 2" content="http://">
  48.         <meta name="text:Link 2 Title" content=""/>
  49.         <meta name="text:Link 3" content="http://"/>
  50.         <meta name="text:Link 3 Title" content=""/>
  51.         <meta name="text:Link 4" content="http://"/>
  52.         <meta name="text:Link 4 Title" content=""/>
  53.         <meta name="text:Link 5" content="http://"/>
  54.         <meta name="text:Link 5 Title" content=""/>
  55.  
  56. </head>
  57.  
  58. <style type="text/css">
  59.  
  60.  
  61. /* --- BASICS --- */
  62.  
  63. ::-webkit-scrollbar-thumb:vertical {
  64.     background-color:{color:Scrollbar};
  65.     height:30px;
  66.     }
  67.  
  68. ::-webkit-scrollbar-thumb:horizontal {
  69.     background-color:{color:Scrollbar};
  70.     height:5px!important;
  71.     }
  72.  
  73. ::-webkit-scrollbar {
  74.     background-color:{color:Background};
  75.     height:5px;
  76.     width:5px;
  77.     }
  78.  
  79. body {
  80.     color:{color:Text};
  81.     background-attachment:fixed;
  82.     background-color:{color:Background};
  83.     background-image: url('{image:Background}');
  84.     background-position:bottom left;
  85.     background-repeat:repeat;
  86.     text-align:justify;
  87.     font-family:{font:body};
  88.     font-size:10px;
  89.     }
  90.  
  91. a {
  92.     color:{color:Links};
  93.     text-decoration:none;
  94.     }
  95.  
  96. a:hover {
  97.     color:{color:Links Hover};
  98.     text-decoration:none;
  99.     }
  100.  
  101. #container {
  102.     width:900px;
  103.     margin:auto;
  104.     }
  105.  
  106. #entries {
  107.     overflow:hidden;
  108.     margin-right:-93px;
  109.     margin-top:75px;
  110.     {block:ifHideNavigation}
  111.     margin-top:35px;
  112.     {/block:ifHideNavigation}
  113.     float:right;
  114.     width:650px;
  115.     }
  116.  
  117. #posts {
  118.     width:500px;
  119.     padding:7px;
  120.     }
  121.    
  122. {block:ifHiddenTags}
  123. #posts:hover #tags {
  124.     opacity:1;
  125.     display:block;
  126.     text-align:left;    
  127.     -webkit-transition: opacity 0.7s linear;
  128.     -webkit-transition: all 0.3s ease-out;
  129.     -moz-transition: all 0.3s ease-out;
  130.     transition: all 0.3s ease-out;
  131.     }
  132.  
  133. #tags {
  134.     position:absolute;
  135.     width:110px;
  136.     opacity:0;
  137.     margin-top:10px;
  138.     margin-left:510px;
  139.     font-family:georgia;
  140.     text-align:left;
  141.     text-transform:lowercase;
  142.     font-style:italic;
  143.     font-size:9px;
  144.     -webkit-transition:opacity 0.8s linear;
  145.     -webkit-transition:all 0.5s ease-out;
  146.     -moz-transition:all 0.5s ease-out;
  147.     transition:all 0.5s ease-out;
  148.     }
  149. {/block:ifHiddenTags}
  150.  
  151.  
  152. /* --- SIDEBAR --- */
  153.  
  154. #sidebar {
  155.     position:fixed;
  156.     margin-top:70px;
  157.     margin-left:100px;
  158.     {block:if250pxSidebar}
  159.     margin-left:40px;
  160.     {/block:if250pxSidebar}
  161.     width:220px;
  162.     {block:if250pxSidebar}
  163.     width:280px;
  164.     {/block:if250pxSidebar}
  165.     background-color:{color:Sidebar Background};
  166.     }
  167.  
  168. #sidebarimage img {
  169.     margin-top:10px;
  170.     margin-bottom:-5px;
  171.     max-width:200px;
  172.     {block:if250pxSidebar}
  173.     max-width:250px;
  174.     {/block:if250pxSidebar}
  175.     height:auto;
  176.     }
  177.  
  178. #description {
  179.     font-size:10px;
  180.     margin:12px;
  181.     text-align:justify;
  182.     font-family:{font:description};
  183.     }
  184.  
  185.  
  186. /* --- TITLES --- */
  187.  
  188. {block:ifShowTitle}
  189. #title {
  190.     background-color:{color:Sidebar Background};
  191.     position:fixed;
  192.     width:205px;
  193.     {block:if250pxSidebar}
  194.     width:265px;
  195.     {/block:if250pxSidebar}
  196.     padding:3px;
  197.     margin-top:200px;
  198.     margin-left:5px;
  199.     font-size:15px;
  200.     text-align:center;
  201.     letter-spacing:1px;
  202.     color:{color:Text};
  203.     font-family:{font:sidebar title};
  204.     text-transform:uppercase;
  205.     z-index:2;
  206.     opacity:0.1;
  207.     -webkit-transition:opacity 0.8s linear;
  208.     -webkit-transition:all 0.5s ease-out;
  209.     -moz-transition:all 0.5s ease-out;
  210.     transition:all 0.5s ease-out;
  211.     }
  212.  
  213. #title:hover {
  214.     color:{color:Text};
  215.     opacity:1;
  216.     -webkit-transition:opacity 0.7s linear;
  217.     -webkit-transition:all 0.3s ease-out;
  218.     -moz-transition:all 0.3s ease-out;
  219.     transition:all 0.3s ease-out;
  220.     }
  221. {/block:ifShowTitle}    
  222.  
  223. #title1 {
  224.     font-size:18px;
  225.     font-style:italic;
  226.     text-transform:lowercase;
  227.     text-decoration:none;
  228.     text-align:center;
  229.     font-family:{font:post title};
  230.     }
  231.  
  232. #title2 {
  233.     font-size:14px;
  234.     font-style:italic;
  235.     font-family:{font:post title};
  236.     }
  237.  
  238.  
  239. /* --- SIDELINKS & NAVIGATION --- */
  240.  
  241. #topbar {
  242.     position:fixed;
  243.     margin-left:-8px;
  244.     margin-top:-8px;
  245.     width:100%;
  246.     height:auto;
  247.     background-color:{color:Topbar Background};
  248.     z-index:2;
  249.     }
  250.  
  251. .sidelinks a {
  252.     width:65px;
  253.     margin-top:10px;
  254.     margin-bottom:0px;
  255.     padding:2px;
  256.     display:inline-block;
  257.     font-family:calibri;
  258.     letter-spacing:1px;
  259.     font-size:8px;
  260.     text-align:center;
  261.     background-color:{color:Sidelinks};    
  262.     color:{color:Background};
  263.     text-transform:uppercase;
  264.     -webkit-transition:opacity 0.8s linear;
  265.     -webkit-transition:all 0.5s ease-out;
  266.     -moz-transition:all 0.5s ease-out;
  267.     transition:all 0.5s ease-out;
  268.     }
  269.  
  270. .sidelinks a:hover {
  271.     color:{color:Background};
  272.     background-color:{color:Sidelinks Hover};
  273.     -webkit-transition:opacity 0.7s linear;
  274.     -webkit-transition:all 0.3s ease-out;
  275.     -moz-transition:all 0.3s ease-out;
  276.     transition:all 0.3s ease-out;
  277.     }
  278.  
  279. #mainlinks {
  280.     position:fixed;
  281.     margin-top:26px;
  282.     margin-left:343px;
  283.     width:515px;
  284.     z-index:2;
  285.     background-color:{color:Mainlinks Background};
  286.     background-image: url('{image:Mainlinks}');
  287.     -webkit-border-bottom-left-radius:10px;
  288.     -moz-border-bottom-left-radius:10px;
  289.     border-bottom-left-radius:10px;
  290.     -webkit-border-bottom-right-radius:10px;
  291.     -moz-border-bottom-right-radius:10px;
  292.     border-bottom-right-radius:10px;
  293.     }
  294.  
  295. #navigation {
  296.     margin-top:10px;
  297.     margin-bottom:15px;
  298.     }
  299.  
  300. #navigation a {
  301.     display:inline-block;
  302.     margin-top:-5px;
  303.     margin-bottom:-10px;
  304.     width:84px;
  305.     height:auto;
  306.     font-family:calibri;
  307.     font-size:8px;
  308.     text-align:center;
  309.     background-color:{color:Mainlinks};
  310.     color:{color:Mainlinks Text};
  311.     padding:3px;
  312.     text-transform:uppercase;
  313.     letter-spacing:1px;
  314.     opacity:0.6;
  315.     -webkit-transition:opacity 0.8s linear;
  316.     -webkit-transition:all 0.5s ease-out;
  317.     -moz-transition:all 0.5s ease-out;
  318.     transition:all 0.5s ease-out;
  319.     }
  320.  
  321. #navigation a:hover {
  322.     color:{color:Background};
  323.     background-color:{color:Mainlinks};
  324.     text-align:center;
  325.     text-decoration:none;
  326.     letter-spacing:2px;
  327.     opacity:1;
  328.     -webkit-transition:opacity 0.7s linear;
  329.     -webkit-transition:all 0.3s ease-out;
  330.     -moz-transition:all 0.3s ease-out;
  331.     transition:all 0.3s ease-out;
  332.     }
  333.  
  334.  
  335. /* --- AUDIO --- */
  336.  
  337. #audio {
  338.     margin-bottom:5px;
  339.     width:500px;
  340.     height:105px;
  341.     }
  342.    
  343. .albumart {
  344.     width:100px;
  345.     height:100px;
  346.     position:absolute;
  347.     }
  348.    
  349. .albumart img {
  350.     width:100px;
  351.     height:100px;
  352.     float:left;
  353.     }
  354.    
  355. .playercontainer {
  356.     opacity:.2;
  357.     display:block;
  358.     width:100px;
  359.     height:100px;
  360.     background-color:#ffffff;
  361.     position:absolute;
  362.     z-index:1;
  363.     }
  364.    
  365. .playercontainer:hover {
  366.     opacity:.7;
  367.     -webkit-transition:all 0.5s ease-in-out;
  368.     -moz-transition:all 0.5s ease-in-out;
  369.     -o-transition:all 0.5s ease-in-out;
  370.     -ms-transition: all 0.5s ease-in-out;
  371.     transition: all 0.5s ease-in-out;
  372.     z-index:1;
  373.     }
  374.    
  375. .player {
  376.     margin-left:36px;
  377.     margin-top:36px;
  378.     width:25px;
  379.     height:25px;
  380.     overflow:hidden;
  381.     background-color:white;
  382.     }
  383.    
  384. .audioinfo {
  385.     margin-left:110px;
  386.     float:left;
  387.     background-color:white;
  388.     width:388px;
  389.     padding:2px;
  390.     margin-top:3px;
  391.     }
  392.  
  393.  
  394. /* --- INFO & OTHER --- */
  395.  
  396. #info {
  397.     display:block;
  398.     padding:4px;
  399.     margin-top:3px;
  400.     color:{color:Text};
  401.     font-size:10px;
  402.     font-family:calibri;
  403.     line-height:50%;
  404.     text-transform:uppercase;
  405.     width:495px;
  406.     background-color:{color:Info Background};
  407.     text-align:center;
  408.     border-top:3px solid {color:Info Border};
  409.     opacity:0.6;
  410.     -webkit-transition:opacity 0.8s linear;
  411.     -webkit-transition:all 0.5s ease-out;
  412.     -moz-transition:all 0.5s ease-out;
  413.     transition:all 0.5s ease-out;
  414.     }
  415.    
  416. #info:hover {
  417.     opacity:1;
  418.     -webkit-transition: opacity 0.8s linear;
  419.     -webkit-transition: all 0.5s ease-out;
  420.     -moz-transition: all 0.5s ease-out;
  421.     transition: all 0.5s ease-out;    
  422.     }
  423.    
  424. #info a {
  425.     color:{color:Links};
  426.     }
  427.    
  428. #info a:hover {
  429.     color:{color:Links Hover};
  430.     }
  431.    
  432. {block:ifNotHiddenTags}    
  433. #tags {  
  434.     font-family:georgia;
  435.     text-align:center;
  436.     text-transform:lowercase;
  437.     font-style:italic;
  438.     font-size:9px;
  439.     opacity:0.6;
  440.     -webkit-transition: opacity 0.8s linear;
  441.     -webkit-transition: all 0.5s ease-out;
  442.     -moz-transition: all 0.5s ease-out;
  443.     transition: all 0.5s ease-out;
  444.     }
  445.  
  446. #tags:hover {
  447.     opacity:1;
  448.     -webkit-transition: opacity 0.8s linear;
  449.     -webkit-transition: all 0.5s ease-out;
  450.     -moz-transition: all 0.5s ease-out;
  451.     transition: all 0.5s ease-out;
  452.     }
  453. {/block:ifNotHiddenTags}
  454.  
  455. #questions {
  456.     background-color:white;
  457.     color:{color:Text};
  458.     padding:10px;
  459.     margin-bottom:0px;
  460.     font-family:georgia;
  461.     font-size:10px;
  462.     font-style:italic;
  463.     text-align:left;
  464.     }
  465.    
  466. #questions a {
  467.     color:{color:Links};
  468.     }
  469.    
  470. #questions a:hover {
  471.     color:{color:Links Hover};
  472.     }
  473.    
  474. #source {
  475.     margin-top:3px;
  476.     text-align:right;
  477.     margin-bottom:5px;
  478.     font-size:10px;
  479.     }
  480.    
  481. .pages {
  482.     margin-top:10px;
  483.     margin-bottom:10px;
  484.     text-align:center;
  485.     line-height:20px;
  486.     font-family:calibri;
  487.     font-size:10px;
  488.     }
  489.    
  490. .pages a {
  491.     text-decoration:none;
  492.     background-color:{color:Background};
  493.     padding: 2px 4px 2px 4px;
  494.     color:{color:Text};
  495.     }
  496.    
  497. .pages a:hover {
  498.     background-color:{color:Sidebar Background};
  499.     color:{color:Text};
  500.     }    
  501.  
  502. .chat {
  503.     line-height:12px;
  504.     list-style: none;
  505.     }
  506.    
  507. .chat ul {
  508.     line-height:15px;
  509.     list-style:none;
  510.     padding:0px;
  511.     line-height:20px;
  512.     }
  513.    
  514. .person1 {
  515.     background-color:{color:Info Background};
  516.     color:{color:Text};
  517.     }
  518.    
  519. .person1 .label {
  520.     font-weight:bold;
  521.     padding:0px;
  522.     margin-left:5px;
  523.     color:{color:Text};
  524.     }
  525.    
  526. .person2 {
  527.     color:{color:Text};
  528.     }
  529.  
  530. .person2 .label {
  531.     font-weight:bold;
  532.     padding:0px;
  533.     margin-left:
  534.     5px;
  535.     color:{color:Text};
  536.     }
  537.  
  538. .person3 {
  539.     background-color:{color:Info Background};
  540.     color:{color:Text};
  541.     }
  542.    
  543. .person3 .label {
  544.     font-weight:bold;
  545.     padding:0px;
  546.     margin-left:5px;
  547.     color:{color:Text};
  548.     }
  549.    
  550. .person4 {
  551.     color:{color:Text};
  552.     }
  553.  
  554. .person4 .label {
  555.     font-weight:bold;
  556.     padding:0px;
  557.     margin-left:
  558.     5px;
  559.     color:{color:Text};
  560.     }
  561.  
  562. .person5 {
  563.     background-color:{color:Info Background};
  564.     color:{color:Text};
  565.     }
  566.    
  567. .person5 .label {
  568.     font-weight:bold;
  569.     padding:0px;
  570.     margin-left:5px;
  571.     color:{color:Text};
  572.     }
  573.    
  574. .person6 {
  575.     color:{color:Text};
  576.     }
  577.  
  578. .person6 .label {
  579.     font-weight:bold;
  580.     padding:0px;
  581.     margin-left:
  582.     5px;
  583.     color:{color:Text};
  584.     }
  585.  
  586. blockquote {
  587.     border-left:4px solid {color:Text};
  588.     padding:0px;
  589.     padding-left:5px;
  590.     margin:5px
  591.     }
  592.  
  593. .notes img {
  594.     width:10px;
  595.     position:relative;
  596.     top:1px
  597.     }
  598.    
  599. ol.notes, .notes li {
  600.     width:480px;
  601.     list-style:none;
  602.     margin:0px 0 -1px 10px;
  603.     padding:0px
  604.     }
  605.  
  606. {CustomCSS}
  607.  
  608. </style>
  609.  
  610.    <body>
  611.    
  612.    
  613. <div id="topbar"><center><div class="sidelinks">
  614. <a href="/">home</a> <a href="/ask">message</a> {block:SubmissionsEnabled}<a href="/submit" title="{SubmitLabel}">{SubmitLabel}</a>{/block:SubmissionsEnabled} <a href="/archive">archive</a> <a href="http://thewicked-eternitythemes.tumblr.com">theme</a> <p></center></div></div>
  615.    
  616. <div id="container">  
  617.    
  618. {block:ifNotHideNavigation}
  619. <div id="mainlinks"><div id="navigation"><center>
  620. {block:HasPages}{block:Pages} <a href="{URL}" title="{Label}">{Label}</a> {/block:Pages} {/block:HasPages}
  621. {block:ifLink1Title}<a href="{text:Link 1}">{text:Link 1 Title}</a>{/block:ifLink1Title}
  622. {block:ifLink2Title}<a href="{text:Link 2}">{text:Link 2 Title}</a>{/block:ifLink2Title}
  623. {block:ifLink3Title}<a href="{text:Link 3}">{text:Link 3 Title}</a>{/block:ifLink3Title}
  624. {block:ifLink4Title}<a href="{text:Link 4}">{text:Link 4 Title}</a>{/block:ifLink4Title}
  625. {block:ifLink5Title}<a href="{text:Link 5}">{text:Link 5 Title}</a>{/block:ifLink5Title}</center></div></div>
  626. {/block:ifNotHideNavigation}
  627.  
  628. <div id="sidebar">
  629.  
  630. {block:ifShowTitle}<div id="title">{Title}</div>{/block:ifShowTitle}
  631.  
  632. <center><div id="sidebarimage"><img src="{image:Sidebar}"/></div></center>
  633.  
  634. <div id="description">{block:Description}{Description}{/block:Description}</div>
  635.  
  636. {block:Pagination}<div class="pages">
  637. {block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  638. {block:JumpPagination length="6"}{block:CurrentPage}
  639. <span class="current_page" style="padding-right:3px;padding-left:3px;">{PageNumber}</span>
  640. {/block:CurrentPage}
  641. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  642. {/block:JumpPagination}
  643. {block:NextPage}<a href="{NextPage}">»</a> {/block:NextPage}
  644. </div>{/block:Pagination}</div>
  645.  
  646.  
  647. <div id="entries">{block:Posts}<div id="posts">
  648.  
  649. {block:Title}
  650. <div id="title1">{Title}</div>{/block:Title}{block:Text}{block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}
  651. {Body}{/block:Text}
  652.  
  653. {block:Photo}
  654. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}
  655. {/block:Photo}
  656.  
  657. {block:Photoset}
  658. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<center>{Photoset-500}</center>
  659. {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  660.  
  661. {block:Quote}
  662. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<div id="title2">"{Quote}"</div>{block:Source}<div id="source">— {Source}</div>{/block:Source}
  663. {/block:Quote}
  664.  
  665. {block:Link}
  666. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<div id="title2"><a href="{URL}" class="link" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}
  667. {/block:Link}
  668.  
  669. {block:Chat}
  670. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<div class="chat"><ul>{block:Lines}<li class="person{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  671. {/block:Chat}
  672.  
  673. {block:Audio}
  674. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<div id="audio"><div class="albumart"><img src="http://static.tumblr.com/4wyqgof/Dyvm2qmp1/default.jpg"></div>{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}<div class="playercontainer"><div class="player">{AudioPlayerWhite}</div></div>{block:TrackName}<div class="audioinfo"><b>Track Title:</b> {TrackName}</div><br>{/block:TrackName}{block:Artist}<div class="audioinfo"><b>Artist:</b> {Artist}</div><br>{/block:Artist}{block:Album}<div class="audioinfo"><b>Album:</b> {Album}</div>{/block:Album}</div>{block:Caption}{Caption}{/block:Caption}
  675. {/block:Audio}
  676.  
  677. {block:Video}
  678. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}{Video-500}{block:Caption}{Caption}{/block:Caption}
  679. {/block:Video}
  680.  
  681. {block:Answer}
  682. {block:ifHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifHiddenTags}<div id="questions">{Asker} asked:"{Question}"</div>
  683. {Answer}
  684. {/block:answer}
  685.  
  686. {block:Date}<div id="info"><a href="{ReblogURL}" target="_blank">Reblog</a> / posted <a href="{Permalink}">{TimeAgo}</a>{/block:Date}{block:RebloggedFrom} via <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a> {block:ContentSource} ·  © <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource}{/block:RebloggedFrom}{block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}</div>
  687. {block:ifNotHiddenTags}{block:HasTags}<div id="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifNotHiddenTags}</div><br>
  688.  
  689. {/block:Posts}
  690.  
  691. {block:PostNotes}{PostNotes}{/block:PostNotes}
  692.  
  693. </div></div></div>
  694.  
  695.     </body>
  696. </html>