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">
- <head>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <!-------------------------------
- Theme Coffee by villenoire, 2011.
- http://villenoire.tumblr.com/
- -------------------------------->
- <meta name="font:Body" content="Georgia, Times New Roman, sans-serif"/>
- <meta name="font:Title" content="Georgia, Times New Roman, sans-serif"/>
- <meta name="color:Text" content="#353535">
- <meta name="color:Links" content="#8C7A94">
- <meta name="color:Hover" content="#F7E7FF">
- <meta name="color:Background" content="#FFFFFF">
- <meta name="image:Background" content=""/>
- <meta name="text:font size" content="9px"/>
- <meta name="text:title font size" content="30px"/>
- <meta name="text:line height" content="10px"/>
- <meta name="text:Next Pagination" content="Next"/>
- <meta name="text:Previous Pagination" content="Previous"/>
- <meta name="text:Tumblr Username" content=""/>
- <meta name="text:Ask Title" content="Ask" />
- <meta name="if:Click for Links" content="0" />
- <meta name="if:Header Centered" content="1" />
- <meta name="if:Header Right" content="0" />
- <meta name="if:Header Left" content="0" />
- <meta name="if:Links Uppercase" content="0" />
- <meta name="if:Links Lowercase" content="1" />
- <meta name="if:Dotted Header" content="0" />
- <meta name="if:Post Shadow" content="0" />
- <meta name="if:Infinite Scrolling" content="1"/>
- <meta name="if:HighRes Images" content="1"/>
- <meta name="text:Link One" content="" />
- <meta name="text:Link One Title" content="" />
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Two Title" content="" />
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Three Title" content="" />
- <meta name="text:Link Four" content="" />
- <meta name="text:link Four Title" content="" />
- <meta name="text:link Five" content="" />
- <meta name="text:link Five Title" content="" />
- <meta name="text:link Six" content="" />
- <meta name="text:link Six Title" content="" />
- <meta name="text:link Seven" content="" />
- <meta name="text:link Seven Title" content="" />
- <meta name="text:link Eight" content="" />
- <meta name="text:link Eight Title" content="" />
- <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
- {block:IndexPage}
- {block:IfInfiniteScrolling}
- <script type="text/javascript" src="http://static.tumblr.com/1s4z8hu/mYolo412c/jquery.infinitescroll.min.js"></script>
- {/block:IfInfiniteScrolling}
- {/block:IndexPage}
- {block:ifclickforlinks}
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript">
- jQuery(document).ready(function() {
- jQuery(".descrip").hide();
- //toggle the componenet with class msg_body
- jQuery(".blogtitle").click(function()
- {
- jQuery(this).next(".descrip").slideToggle(500);
- });});
- </script>
- {/block:ifclickforlinks}
- <script type="text/javascript" >
- $(window).load(function(){
- $('#posts').infinitescroll({
- navSelector : '#footer', // selector for the paged navigation
- nextSelector : '#footer a:first-child', // selector for the NEXT link (to page 2)
- contentSelector : "#posts",
- itemSelector : '.post', // selector for all items you'll retrieve
- loadingImg : 'http://dl.dropbox.com/u/10308294/vq/box.gif',
- loadingText : "wait for it...",
- donetext : "fin.",
- bufferPx : 2000,
- debug: false,
- errorCallback: function() { $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal'); }
- },
- function( newElements ) { setTimeout(function() {
- /* repair audio players*/
- $('.audio').each(function(){
- var audioID = $(this).attr("id");
- var $audioPost = $(this);
- $.ajax({
- url: 'http://{text:Tumblr Username}.tumblr.com/api/read/json?id=' + audioID,
- dataType: 'jsonp',
- timeout: 50000,
- success: function(data){
- $audioPost.append('\x3cdiv style=\x22background-color:white;height:30px\x22 class=\x22audio_player\x22\x3e' + data.posts[0]['audio-player'] +'\x3c/div\x3e');
- }
- });
- });
- }, 2000);}
- );
- });
- </script>
- <style type="text/css">
- body{
- background:{color:Background} url('{image:background}') fixed;
- font-family: {font:Body};
- font-size:14px;
- line-height:27px;
- letter-spacing:2px;
- text-align:justify;
- margin:0px;
- padding:0px;
- color:{color:text};
- }
- #infscr-loading {
- z-index: 5000;
- position: fixed;
- left: 45%;
- bottom: 150px;
- height: 40px;
- font-size:11px;
- letter-spacing:2px;
- line-height:14px;
- padding: 10px;
- background: #fff;
- opacity: 0.8;
- color: #000;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
- }
- .clear{
- clear:both;
- }
- a:link, a:visited{
- color:{color:links};
- text-decoration:none;
- }
- a:hover{
- color:{color:hover};
- text-decoration:none;
- }
- #wrapper {
- width:700px;
- margin:0px auto;
- padding-top:20px;
- border:0px solid #000;
- }
- .blogtitle {
- font-size:{text:title font size};
- font-weight:normal;
- font-family:{font:title};
- text-transform:uppercase;
- margin-bottom:0px;
- {block:ifheadercentered}
- text-align:center;
- {/block:ifheadercentered}
- {block:ifheaderright}
- text-align:right;
- {/block:ifheaderright}
- {block:ifheaderleft}
- text-align:left;
- {/block:ifheaderleft}
- {block:ifclickforlinks}cursor:help;{/block:ifclickforlinks}
- letter-spacing:2px;
- font-weight:bold;
- }
- h3 {
- line-height:10px;
- font-size:12px;
- font-weight:normal;
- font-family:arial;
- text-transform:uppercase;
- margin-bottom:-8px;
- margin-top:2px;
- }
- .drop {
- background:{color:Background};
- position:fixed;
- top:0px;
- padding:10px 0px;
- width:700px;
- z-index:9999;
- {block:ifdottedheader}
- border:1px dotted black;
- {/block:ifdottedheader}
- }
- .links {
- font-size:{text:body font size};
- font-weight:normal;
- font-family:{font:body};
- margin-top:15px;
- margin-bottom:5px;
- {block:ifheadercentered}
- text-align:center;
- {/block:ifheadercentered}
- {block:ifheaderright}
- text-align:right;
- {/block:ifheaderright}
- {block:ifheaderleft}
- text-align:left;
- {/block:ifheaderleft}
- {block:iflinksuppercase}
- text-transform:uppercase;
- {/block:iflinksuppercase}
- {block:iflinkslowercase}
- text-transform:lowercase;
- {/block:iflinkslowercase}
- }
- .chat {
- padding-top:0px;
- }
- .descrip {
- font-size:{text:body font size};
- font-weight:normal;
- font-family:{font:body};
- margin-top:-10px;
- {block:ifheadercentered}
- text-align:center;
- {/block:ifheadercentered}
- {block:ifheaderright}
- text-align:right;
- {/block:ifheaderright}
- {block:ifheaderleft}
- text-align:left;
- {/block:ifheaderleft}
- font-style:italic;
- padding-top:2px;
- margin-bottom:10px;
- letter-spacing:1px;
- line-height:12px;
- }
- #posts{
- margin-top:30px;
- background:{color:Background};
- }
- .post{
- margin:25px 0px;
- background:{color:Background};
- {block:ifPostShadow}
- box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1),
- 0px 0px 10px rgba(100, 100, 100, 0)
- inset;
- {/block:ifPostShadow}
- }
- .permalink_l{
- position:absolute;
- width:700px;
- opacity:0;
- line-height:12px;
- padding:5px;
- margin:0px;
- font-size:10px;
- }
- .post:hover .permalink_l{
- opacity:1;
- }
- .text{
- font-size:14px;
- line-height:27px;
- letter-spacing:2px;
- text-align:justify;
- }
- .text p{
- margin-bottom:0px;
- padding-bottom:0px;
- }
- .text h3{
- margin-bottom:0px;
- padding-bottom:0px;
- font-weight:400;
- font-size:16px;
- }
- .text img{
- border:0px !important;
- max-width:700px;
- height:auto;
- }
- .photo img{
- width:700px;
- height:auto;
- }
- .quote{
- text-align:justify;
- }
- .link p{
- margin-bottom:0px;
- padding-bottom:0px;
- }
- .quote p{
- margin-bottom:0px;
- padding-bottom:0px;
- }
- .q-source{
- text-align:right;
- letter-spacing:1px;
- font-style:italic;
- font-size:10px;
- }
- .chat ul, .chat ul li{
- list-style:none;
- margin:0px;
- padding:0px;
- }
- .chat .label{
- font-weight:bold;
- font-style:italic;
- }
- .video embed, .video object, .video iframe{
- width:700px !important;
- height:400px !important;
- }
- .player{
- text-align:justify;
- }
- .audio {
- height:30px;
- overflow-y: hidden;
- line-height:1px !important;
- }
- .audio span {
- background:{color:PostsBackground};
- font-size:1px;
- }
- .audio span a{
- background:{color:PostsBackground};
- font-size:1px;
- }
- .artist{
- text-transform:lowercase;
- padding:0px;
- }
- .question p{
- margin-bottom:0px;
- padding-bottom:0px;
- }
- .prev{
- float:left;
- }
- .next{
- float:right;
- }
- .source{
- display:none;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <div id="wrapper">
- <div class="drop">
- <div class="blogtitle">{Title}</div>
- <div class="descrip">
- <div class="links">
- <a href="/">home</a>
- {block:AskEnabled}
- <a href="/ask">
- {block:ifasktitle}{text:Ask Title} {/block:ifasktitle}
- {block:ifnotasktitle}{AskLabel} {/block:ifnotasktitle}
- </a>
- {/block:AskEnabled}
- {block:ifshowarchive}
- <a href="/archive">archive</a>
- {/block:ifshowarchive}
- {block:ifshowrss}
- <a href="{RSS}">rss</a>
- {/block:ifshowrss}
- {block:HasPages}{block:Pages}
- <a href="{URL}">{Label}</a>
- {/block:Pages}{/block:HasPages}
- {block:ifLinkOneTitle}
- <a href="{text:Link One}" class="link">{text:Link One Title}</a>
- {/block:ifLinkOneTitle}
- {block:ifLinkTwoTitle}
- <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>
- {/block:ifLinkTwoTitle}
- {block:ifLinkThreeTitle}
- <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>
- {/block:ifLinkThreeTitle}
- {block:ifLinkFourTitle}
- <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>
- {/block:ifLinkFourTitle}
- {block:ifLinkFiveTitle}
- <a href="{text:Link Five}" class="link">{text:Link Five Title} </a>
- {/block:ifLinkFiveTitle}
- {block:ifLinkSixTitle}
- <a href="{text:Link Six}" class="link">{text:Link Six Title} </a>
- {/block:ifLinkSixTitle}
- {block:Pages}
- <a href="{URL}" title="{Label}">{Label}</a>
- {/block:Pages}
- <a href="http://villenoire.tumblr.com/">theme</a>
- </div>{block:description}{description}{/block:description}</div></div>
- <div style="bottom:2px; right:2px; position:fixed; opacity:0.8; text-style:italic; color:{color:Text}; "><a href="http://villenoire.tumblr.com">©</a></div>
- <div id="posts">
- {block:Posts}
- {block:Text}
- <div class="post text">
- {block:Title}<h3><a href="{Permalink}">{Title}</a></h3>{/block:Title}
- {Body}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Text}
- {block:Photo}
- <div class="post photo">
- {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
- {block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}
- {block:IfHighResImages}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" border="0"/>{/block:IfHighResImages}
- {block:IfNotHighResImages}<img src="{PhotoURL-500}" alt="{PhotoAlt}" border="0"/>{block:IndexPage}</a>{/block:IndexPage}
- {block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage}{/block:IfNotHighResImages}
- {block:PermalinkPage}{block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}{/block:PermalinkPage}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Photo}
- {block:Photoset}
- <div class="post photoset">
- {Photoset-500}
- {block:PermalinkPage}{block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}{/block:PermalinkPage}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Photoset}
- {block:Quote}
- <div class="post quote">
- <p>“{Quote}”</p>
- {block:Source}<div class="q-source">— {Source}</div>{/block:Source}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Quote}
- {block:Link}
- <div class="post link">
- <a href="{URL}" class="link" {Target}>{Name}</a>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Link}
- {block:Chat}
- <div class="post chat">
- {block:Title}
- <h3><a href="{Permalink}">{Title}</a></h3>
- {/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="{Alt} user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Chat}
- {block:Video}
- <div class="post video">
- {Video-500}
- {block:PermalinkPage}{block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}{/block:PermalinkPage}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Video}
- {block:Audio}
- <div class="post player">
- <div class="audio" id="{postID}">{AudioPlayerWhite}</div>
- <div class="artist"><a href="{Permalink}">{block:Artist}<b>{Artist}</b></a>{/block:Artist} {block:TrackName}<em>{TrackName}</em>{/block:TrackName}</div>
- {block:PermalinkPage}{block:Caption}
- <div class="caption">{Caption}</div>
- {/block:Caption}{/block:PermalinkPage}
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a>
- {/block:IndexPage}
- </div>
- {/block:Audio}
- {block:Answer}
- <div class="post question">
- <p><b>{Question}</b></p>
- <p>{Answer}</p>
- {block:IndexPage}
- <div class="permalink_l"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} {block:Date} {TimeAgo} {/block:Date}</a> Asked by <em>{Asker}</em></div>
- {/block:IndexPage}
- </div>
- {/block:Answer}
- {block:PermalinkPage}
- <div class="notestags">{block:NoteCount}{NoteCount} notes{/block:NoteCount} {block:HasTags}
- | {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags} {/block:HasTags}</div>
- <div class="source">
- {block:ContentSource}
- <a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
- <img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}{block:NoSourceLogo}{SourceTitle}{/block:NoSourceLogo}
- </a>
- {/block:ContentSource}
- {block:RebloggedFrom} <a href="{ReblogParentURL}">{ReblogParentName}</a> {/block:RebloggedFrom}
- </div>
- {/block:PermalinkPage}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:Posts}
- </div>
- <div id="footer">
- {block:NextPage}
- <div class="next"><a href="{NextPage}">{text:Next Pagination}</a></div>
- {/block:NextPage}
- {block:PreviousPage}
- <div class="prev"><a href="{PreviousPage}">{text:Previous Pagination}</a></div>
- {/block:PreviousPage}
- <div class="clear"></div>
- </div>
- </div><!--wrapper end-->
- </body>
- </html>
Add Comment
Please, Sign In to add comment