Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <!--
- T I A N S H I (天使) theme by
- █░░█ █▀▀█ █░█ █▀▀ █░░█ ░▀░
- █▀▀█ █░░█ █▀▄ ▀▀█ █▀▀█ ▀█▀
- ▀░░▀ ▀▀▀▀ ▀░▀ ▀▀▀ ▀░░▀ ▀▀▀
- ©
- -->
- <head>
- <html>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}" />
- <link rel="alternate" type="application/rss+xml" href="{RSS}" />
- <link href='http://fonts.googleapis.com/css?family=Lekton:400,700,400italic' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Contrail+One' rel='stylesheet' type='text/css'>
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <!-- fade-out -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $("body").css("display", "none");
- $("body").fadeIn(700);
- $("a.transition").click(function(event){
- event.preventDefault();
- linkLocation = this.href;
- $("body").fadeOut(1000, redirectPage);
- });
- function redirectPage() {
- window.location = linkLocation;
- }
- });
- </script>
- <!-- fade out pictures -->
- <script type="text/javascript" src="http://static.tumblr.com/zh7ydxo/CIvlwa3c5/jquery.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/zh7ydxo/CtWlwa3d9/lazyload.js"></script>
- <script type="text/javascript" charset="utf-8">
- var $j = jQuery.noConflict();
- $j(function() {
- if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
- $j("img").lazyload({
- placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
- effect: "fadeIn",
- });
- });
- </script>
- <!-- controls -->
- <meta name="color:background" content="#fdfcfc"/>
- <meta name="color:text" content="#9e9e9c"/>
- <meta name="color:link" content="#a72222"/>
- <meta name="color:link hover" content="#020202"/>
- <meta name="color:sideimg background" content="#f3f2f1"/>
- <meta name="color:posts" content="#ffffff"/>
- <meta name="color:permalink bar" content="#fdfcfc"/>
- <meta name="image:background" content=""/>
- <meta name="image:post background" content=""/>
- <meta name="image:sidebar picture" content="http://static.tumblr.com/b1e91b92dd22238eab17e69c5581bd52/ii9pnwy/N8vmi1m8q/tumblr_static_b.png"/>
- <meta name="image:permalink bar" content=""/>
- <meta name="if:Infinite Scrolling" content="0"/>
- <meta name="if:Smaller Posts" content="0"/>
- <meta name="if:Show Captions" content="0"/>
- <meta name="text:Link 1 URL" content="/" />
- <meta name="text:Link 1 Name" content="link 1" />
- <meta name="text:Link 2 URL" content="/" />
- <meta name="text:Link 2 Name" content="link 2" />
- <meta name="text:Link 3 URL" content="/" />
- <meta name="text:Link 3 Name" content="link 3" />
- <meta name="text:Link 4 URL" content="/" />
- <meta name="text:Link 4 Name" content="link 4" />
- <meta name="text:Link 5 URL" content="/" />
- <meta name="text:Link 5 Name" content="link 5" />
- {block:IfInfiniteScrolling}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- {/block:IfInfiniteScrolling}
- <style type="text/css">
- {CustomCSS}
- iframe#tumblr_controls {
- position: fixed !important;
- -webkit-filter: invert(100%);
- opacity: 0.3;
- z-index: 9999;
- -webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- iframe#tumblr_controls:hover {
- opacity: 1;
- -webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- ::-webkit-scrollbar{
- width: 7px; height: 7px; background-color:#fff;
- }
- ::-webkit-scrollbar-thumb{
- background-color: #000;
- border: 1px solid #f0f0f0;
- }
- img {
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- img:hover {
- filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
- filter: gray; /* IE6-9 */
- -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- body{
- background: {color:background};
- background-image: url('{image:background}');
- background-attachment: fixed;
- font-size: 9px;
- line-height: 10px;
- color: {color:text};
- text-align: justify;
- }
- a{
- color: {color:link};
- text-decoration: none;
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- a:link, a:visited, a:active{
- text-decoration:none;
- }
- a:hover{
- color: {color:link hover};
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- #post{
- position: absolute;
- width: 560px;
- top: 120px;
- {block:IfSmallerPosts}
- width: 460px;
- left: 475px;
- {/block:IfSmallerPosts}
- {block:IfNotSmallerPosts}
- left: 475px;
- {/block:IfNotSmallerPosts}
- }
- #entry {
- width: 500px;
- {block:IfSmallerPosts}
- width: 400px;
- {block:IfSmallerPosts}
- padding: 15px;
- margin-bottom:85px;
- background: {color:posts};
- background-image: url('{image:post background}');
- font-family: lekton;
- font-size: 10px;
- font-color: {color:font};
- border-top:3px solid #000;
- line-height: 16px;
- }
- #title{
- position: fixed;
- color:#fff;
- letter-spacing:-4px;
- text-transform: uppercase;
- font-family: Courier New;
- font-size:53px;
- line-height:12px;
- text-align:center;
- margin-top: 10px;
- right: 50%;
- margin-right:165px;
- z-index:5;
- }
- #menu{
- position: fixed;
- background: transparent;
- width: 800px;
- height: 20px;
- float:left;
- top: 50px;
- margin-left:50px;
- z-index:6;
- }
- #menu2{
- position: fixed;
- background: transparent;
- width: 279px;
- height: 10px;
- float:left;
- top: 245px;
- right: 50%;
- margin-right:101px;
- z-index:2;
- }
- #titlebar{
- font-style:italic;
- background: #f0f0f0;
- padding: 3px;
- color: #313131;
- letter-spacing:1px;
- text-transform: uppercase;
- font-family: lekton;
- font-size:12px;
- line-height: 12px;
- }
- #titles{
- position:fixed;
- top:20px;
- margin-left:50px;
- color: #000;
- line-height: 10px;
- text-transform: uppercase;
- z-index: 10000;
- }
- #sideimg{
- background: #fff;
- width: 270px;
- height: 165px;
- padding: 5px;
- right: 50%;
- margin-right:105px;
- top: 65px;
- position: fixed;
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- }
- .hidden{
- width: 300px;
- right: 50%;
- margin-right:80px;
- top: 260px;
- position: fixed;
- opacity: 1;
- font-family: arial;
- font-size: 9px;
- -webkit-transition: all 2s ease;
- -moz-transition: all 2s ease;
- -o-transition: all 2s ease;
- border-radius: 15px;
- font-family: arial;
- letter-spacing:0px;
- font-size: 9px;
- }
- .sideimg2{
- width: 270px;
- height: 200px;
- padding: 0px;
- right: 50%;
- margin-right:160px;
- top: 130px;
- position: fixed;
- -webkit-transition: all 2s ease;
- -moz-transition: all 2s ease;
- -o-transition: all 2s ease;
- opacity:0;
- }
- #sidebar{
- position:fixed;
- top:100px;
- left: 255px;
- width: 162px;
- padding:20px;
- font-family: lekton;
- font-size: 10px;
- line-height: 17px;
- letter-spacing: 0px;
- background: {color:background};
- text-align: justify;
- z-index: 6;
- color: {color:text};
- }
- #bar{
- background: #000;
- height:35px;
- width:100%;
- position: fixed;
- right: 0%;
- margin-right:0px;
- top:40px;
- z-index:5;
- }
- #bar2{
- background: {color:background};
- height:40px;
- width:100%;
- position: fixed;
- right: 0%;
- margin-right:0px;
- top:0px;
- z-index:999;
- }
- #link{
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- background: ({color:font});
- height: 15px;
- padding:5px;
- border-bottom: 1px dotted #919191;
- }
- .permalink {
- float: right;
- width: 100px;
- height: 5px;
- font-size: 9px;
- padding-top: 10px;
- padding-bottom:7px;
- font-family: cambria;
- margin-top:0px;
- margin-left: 490px;
- border-left: 1px solid #919191;
- {block:IfSmallerPosts}
- margin-left: 450px;
- {/block:IfSmallerPosts}
- position: absolute;
- letter-spacing: 1px;
- text-align: left;
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- z-index: 2;
- opacity: 0;
- text-transform: uppercase;
- }
- #entry:hover .permalink {
- margin-top: 0px;
- margin-left: 505px;
- padding: 10px;
- {block:IfSmallerPosts}
- margin-left: 450px;
- {/block:IfSmallerPosts}
- webkit-transition: opacity 1s linear;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- transition: all 0.7s ease;
- width: 100px;
- height:40px;
- opacity: 1;
- }
- #chat{
- border-bottom: 1px solid #eee;
- padding: 2px;
- }
- #perma{
- font-family: lekton;
- font-size: 10px;
- letter-spacing: 0px;
- text-align: left;
- line-height:8px;
- margin-top:-85px;
- position: absolute;
- background-color:{color:permalink bar};
- background-image: url('{image:permalink bar}');
- {block:IfSmallerPosts}
- width:415px;
- {/block:IfSmallerPosts}
- {block:IfNotSmallerPosts}
- width:515px;
- {/block:IfNotSmallerPosts}
- height: 18px;
- color: #000;
- padding:8px;
- border-top:1px solid #f0f0f0;
- }
- #perma a:hover{
- background: #ffd900;
- }
- #notoo{
- font-family: courier new;
- font-size: 9px;
- text-transform: uppercase;
- letter-spacing: 0px;
- text-align: center;
- line-height:8px;
- margin-left:0px;
- margin-top:-85px;
- position: absolute;
- background-color:#eee;
- background-image: url('{image:permalink bar}');
- width:70px;
- {block:IfSmallerPosts}
- width:410px;
- {/block:IfSmallerPosts}
- height: 18px;
- color: #000;
- padding:8px;
- }
- .source{
- right:50%;
- margin-right:266px;
- margin-top:-32px;
- {block:IfSmallerPosts}
- left:50%;
- margin-left:175px;
- {/block:IfSmallerPosts}
- position:absolute;
- width:14px;
- padding: 0px;
- z-index: 2;
- background:#fff;
- }
- .dateu{
- font-family: lekton;
- font-size: 9px;
- text-transform: uppercase;
- text-align: center;
- margin-top:-20px;
- position:absolute;
- {block:IfSmallerPosts}
- width:420px;
- {/block:IfSmallerPosts}
- {block:IfNotSmallerPosts}
- width:520px;
- {/block:IfNotSmallerPosts}
- padding: 5px;
- z-index: 2;
- color:#000;
- border-top: 1px dashed #eee;
- }
- #links .links{
- text-align: right;
- background:{color:links background};
- text-align:center;
- text-transform: uppercase;
- font-family: courier new;
- font-size: 9px;
- font-color:{color:sidebar background};
- position: fixed;
- opacity: 0;
- margin-top: -4px;
- -webkit-transition: opacity 0.4s linear;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- }
- #links:hover .links{
- text-align:center;
- opacity: 1;
- margin-top: 4px;
- -webkit-transition: opacity 0.4s linear;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- }
- #navi{
- top:70px;
- text-align: right;
- background:{color:links background};
- font-family: cambria;
- font-size: 9px;
- text-transform: uppercase;
- padding: 5px;
- position: fixed;
- right: 50%;
- margin-right: 380px;
- }
- #navi2{
- top:100px;
- text-align: right;
- background:{color:links background};
- font-family: cambria;
- font-size: 9px;
- text-transform: uppercase;
- padding: 5px;
- position: fixed;
- right: 50%;
- margin-right: 380px;
- }
- #next{
- padding:3px;
- width:5px;
- height: 15px;
- background:#f0d81d;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition:all 0.7s ease;
- }
- #next:hover{
- background:#000;
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition:all 0.7s ease;
- }
- #picture{
- width: 36px;
- padding: 4px;
- background: #000;
- }
- #picture2{
- width: 36px;
- padding: 4px;
- background: #000;
- }
- .navigation{
- float:left;
- text-align:center;
- margin-right:2px;
- width:66px;
- height: 15px;
- text-transform:uppercase;
- font-size:12px;
- font-family:courier new;
- padding-top: 50px;
- -webkit-transition: opacity 0.4s linear;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- background-color:#eeeeee;}
- .navigation:hover{
- background-color:#000;
- }
- .navigation2{
- float:left;
- text-align:center;
- margin-right:10px;
- width:45px;
- height: 3px;
- font-size:9px;
- font-family:arial;
- -webkit-transition: opacity 0.4s linear;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- background-color:#f5de51;}
- .navigation2:hover{
- background-color:#000;
- }
- .nav {
- margin-top:-10px;
- display: inline-block;
- padding: 5px;
- text-align: center;
- color:#f0f0f0;
- float:left;
- margin-right:5px;
- font: 11px Lekton;
- -webkit-transition: opacity 1s linear;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- text-transform:uppercase;
- width:53px;
- z-index:3;
- height:15px;
- letter-spacing:0px;
- padding-top: 10px;
- text-shadow: 0px 0px 0px #fff;
- }
- .nav:hover {
- -webkit-transition: opacity 1s linear;
- -webkit-transition: all 1s ease-in-out;
- -moz-transition: all 1s ease-in-out;
- -o-transition: all 1s ease-in-out;
- text-shadow: 0px 0px 25px #fff;
- }
- .sidew{
- position:fixed;
- top:100px;
- left:25px;
- border: solid 20px {color:sideimg background};
- z-index:10;
- }
- .photo img{
- width:170px;
- margin:auto;
- }
- .player {
- width:95px;
- height:95px;
- position:absolute;
- z-index:3;
- text-align:center;
- background:white;
- margin-top:0px;
- margin-left:0px;
- opacity:0.6;
- transition-duration: 0.6s;
- -moz-transition-duration: 0.6s;
- -webkit-transition-duration: 0.6s;
- -o-transition-duration: 0.6s;
- border-radius: 0px 0px 0px 0px ;
- }
- .audioplayer {
- background-color:transparent;
- width:15px; height:6px;
- overflow:hidden;
- padding:22px;
- margin: 10px 10px 10px 10px;}
- .audioinfo {
- padding:0px 0px 5px 0px;
- width:401px;
- margin-left:99px;
- text-align:left}
- .audiocaption {
- width:401px;
- margin-left:99px;}
- .pagination {
- position:fixed;
- left:75px;
- top: 400px;
- text-align:center;
- color:#fff;
- z-index:100;
- }
- .current_page {
- padding: 6px;
- color: #000;
- }
- .jump_page, .next {
- background-color:#f0f0f0;
- padding:2px 6px 2px 6px;
- font-family: lekton;
- font-size: 10px;
- color:#000;
- }
- .title {
- font-family: contrail one;
- font-size:20px;
- color: #fff;
- text-shadow: 2px 2px #eee;
- letter-spacing: 5px;
- }
- #notes {
- padding-right: 10px;
- text-align: left;
- font-size: 9px;
- letter-spacing: 1px;
- font-family: lekton;
- text-transform: uppercase;
- margin-left: 6px;
- width: 530px;
- }
- #notes img {
- width: 8px;
- height: 8px;
- margin-bottom: -1px;
- }
- .cred {
- border: 3px double #eee;
- padding: 3px 5px 3px 5px;
- bottom:10px;
- right:5px;
- position:fixed;
- font-family: Arial;
- font-size: 10px;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition:all 0.5s ease;
- }
- .cred a{
- color: black;
- }
- .cred a:hover{
- color: {color:links};
- }
- .cred:hover {
- border: 5px dashed #000;
- padding: 3px 5px 3px 5px;
- margin-top:-100px;
- bottom:10px;
- right:5px;
- position:fixed;
- font-family: Arial;
- font-size: 10px;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition:all 0.5s ease;
- }
- blockquote {
- padding: 3px;
- border: 4px double #bbb;
- color: {color:link};
- }
- </style>
- </head>
- <body>
- <div id="bar"></div>
- <div id="bar2"></div>
- <div id="titles"><span class="title">{Title}</span></div>
- <div id="sidebar">{Description}</div>
- <div id="menu">
- <a href="/" class="nav" onmouseover="this.innerHTML='index'"onmouseout="this.innerHTML='.01'">.01</a>
- <a href="/archive" class="nav" onmouseover="this.innerHTML='archive'"onmouseout="this.innerHTML='.02'">.02</a>
- <a href="/ask" class="nav" onmouseover="this.innerHTML='message'"onmouseout="this.innerHTML='.03'">.03</a>
- {block:ifLink1URL}<a href="{text:Link 1 URL}" class="nav" onmouseover="this.innerHTML='{text:Link 1 Name}'"onmouseout="this.innerHTML='.04'">.04</a>{/block:ifLink1URL}
- {block:ifLink2URL}<a href="{text:Link 2 URL}" class="nav" onmouseover="this.innerHTML='{text:Link 2 Name}'"onmouseout="this.innerHTML='.05'">.05</a>{/block:ifLink2URL}
- {block:ifLink3URL}<a href="{text:Link 3 URL}" class="nav" onmouseover="this.innerHTML='{text:Link 3 Name}'"onmouseout="this.innerHTML='.06'">.06</a>{/block:ifLink3URL}
- {block:ifLink4URL}<a href="{text:Link 4 URL}" class="nav" onmouseover="this.innerHTML='{text:Link 4 Name}'"onmouseout="this.innerHTML='.07'">.07</a>{/block:ifLink4URL}
- {block:ifLink5URL}<a href="{text:Link 5 URL}" class="nav" onmouseover="this.innerHTML='{text:Link 5 Name}'"onmouseout="this.innerHTML='.08'">.08</a>{/block:ifLink5URL}
- </div>
- <div class="photo"><img src="{image:sidebar picture}" class="sidew" border="0"></div>
- {block:IfNotInfiniteScrolling}
- <div class="pagination">
- {block:Pagination}
- {block:PreviousPage}
- <a class="next" href="{PreviousPage}">newer</a>
- {/block:PreviousPage}
- {block:JumpPagination length="3"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}
- <a class="next" href="{NextPage}">older</a>
- {/block:NextPage}
- {/block:Pagination}
- </div>
- {/block:IfNotInfiniteScrolling}
- </div></div>
- <div id="post">
- {block:IfInfiniteScrolling}
- <div class = "autopagerize_page_element" >
- {/block:IfInfiniteScrolling}
- {block:Posts}
- <div class="dateu">{block:Date} [{DayOfWeek}] - <a href="{Permalink}">{Year}/{ShortMonth}/{DayOfMonthWithZero}</a> {/block:Date} with {NoteCountwithLabel} • <a href="{ReblogURL}">reblog</a></div>
- <div class="per"> </div>
- {block:Text}
- <div id="entry">
- <a href="{Permalink}">{block:Title}<div id="titlebar">{Title}</div>{/block:Title}</a>{/block:Title}
- <div align="left">{Body}</div>
- </div>
- {/block:Text}
- {block:Photo}
- <div id="entry">
- <a href="{Permalink}">{block:IfNotSmallerPosts}{block:IndexPage}<a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" border="0" width="500" /></a>{/block:IndexPage}{block:PermalinkPage}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" border="0" width="500" />{/block:PermalinkPage}{/block:IfNotSmallerPosts}
- {block:IfSmallerPosts} {block:IndexPage}<a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" border="0" width="400" /></a>{/block:IndexPage}{block:PermalinkPage}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" border="0" width="400" />{/block:PermalinkPage} {/block:IfSmallerPosts}</a>
- {block:Ifshowcaptions}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Ifshowcaptions}
- </div>
- {/block:Photo}
- {block:Photoset}
- <div id="entry">
- <a href="{Permalink}">{block:IfNotSmallerPosts}{block:IndexPage}{Photoset-500}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{/block:IfNotSmallerPosts}
- {block:IfSmallerPosts} {block:IndexPage}{Photoset-400}{/block:IndexPage}{block:PermalinkPage}{Photoset-400}{/block:PermalinkPage} {/block:IfSmallerPosts}</a>
- {block:Ifshowcaptions}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Ifshowcaptions}
- </div>
- {/block:Photoset}
- {block:Quote}
- <div id="entry">
- <div id="titlebar"><div align="center">❝{Quote}</div></div>
- {block:Source}
- <p><div align="right"> - {Source}</div></p>
- {/block:Source}
- </div>
- {/block:Quote}
- {block:Link}
- <div id="entry">
- <a href="{URL}" class="link" {Target}>
- <div id="titlebar">{Name}</div></a>
- {block:Description}{Description}{/block:Description}
- </div>
- {/block:Link}
- {block:Chat}
- <div id="entry">
- {block:Title}
- <a href="{Permalink}"><div id="titlebar"><i>{Title}</i></div></a>
- {/block:Title}
- {block:Lines}<div id="chat">{block:Label}<i><font color="#DBA901">{Label}</font></i>{/block:Label} {Line}</div>{/block:Lines}
- </div>
- {/block:Chat}
- {block:Video}
- <div id="entry">
- {Video-400}
- {block:Ifshowcaptions}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Ifshowcaptions}
- </div>
- {/block:Video}
- {block:Audio}
- <div id="entry">
- <span style="width:95px; height:95px; align=left">
- {block:AlbumArt}<img src="{AlbumArtURL}" class="albumart" width="95px" height="95px" align="left"/>{/block:AlbumArt}
- <div class="player"><div class="audioplayer">{AudioPlayer}</div></div></span>
- <div class="audioinfo">
- <b>Song:</b> <span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}<br>
- <b>Artist:</b> <span{block:Artist} style="display: none;"{block:Artist}>Unknown</span>{block:Artist}{Artist}{/block:Artist}<br>
- <b>Album:</b> <span{block:Album} style="display: none;"{block:Album}>Unknown</span>{block:Album}{Album}{/block:Album}<br />
- <b>Played:</b> {PlayCount} times</div>
- <div class="audiocaption">{block:Caption}{Caption}{/block:Caption}</div>
- </div>
- {/block:Audio}
- {block:Answer}
- <div id="entry">
- <div id="titlebar">{Asker}: {Question}</div>
- {Answer}
- </div>
- {/block:Answer}
- {block:IndexPage}
- <div id="perma">{block:HasTags} {block:Tags} <img src="http://static.tumblr.com/ii9pnwy/hUemi1ed8/a.png"> <a href="{TagURL}">{Tag} </a>{/block:Tags}{/block:HasTags}
- </div>
- {/block:IndexPage}
- {block:PermalinkPage}
- {block:Date}
- <div style="font-family: Lekton; font-size: 9px; line-height: 12px; padding: 15px;letter-spacing: 1px; text-align: left; width: 420; margin-top:-90px; text-transform: uppercase;">
- Posted on: {Month} {DayOfMonth}, {Year}
- {/block:Date}
- {block:RebloggedFrom}
- <br> Via: <a href="{ReblogParentURL}">{ReblogParentName}</a> | Original: <a href="{ReblogRootURL}">{ReblogRootName}</a>
- {/block:RebloggedFrom}
- {block:HasTags}
- <div id="tags">{block:Tags}<a href="{TagURL}">#{Tag} </a> {/block:Tags}</div>
- {/block:HasTags}
- </div>
- {/block:PermalinkPage}
- {block:PostNotes}
- <div id="notes">
- {PostNotes}
- </div>
- {/block:PostNotes}
- {/block:Posts}
- {block:IfInfiniteScrolling}</div>{/block:IfInfiniteScrolling}
- <!-- do not remove this i'm gonna cut you down -->
- <div class="cred"><a href="http://hokshi.tumblr.com/"><img src="http://tinyiconfactory.com/images/icons/254540.png?1321822627"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment