The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Editing Tumblr Theme HTML, Getting the Picture bigger
MrShrimps
post Apr 29 2012, 11:11 AM
Post #1





Group: Members
Posts: 4
Joined: 23-April 12
Member No.: 16,969



Hi, I have a tumblr and I am using a theme, that when you click the desired photo it is smaller than I would wish. Below is the HTML code for the theme, and i was wondering if there is a way that i can edit it so that when click the photo it brings me to a bigger size.
Thanks
link to see it
http://mrshrimps.tumblr.com/


<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html>

<head>

<!--

By:

######## ## ## #### ## ###### ########
## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
######## ######### ## ## ###### ######
## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
## ## ## #### ######## ###### ########

PHILSE.Tumblr.com

Integrated Theme v2.3.1

This theme is available at Tumblr's theme garden
tumblr.com/theme/32175

-->

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<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}

<meta name="if:Use Infinite Scroll" content="0" />
<meta name="if:Use White Scroll To Top Button" content="0" />
<meta name="if:Use Four Columns" content="0" />
<meta name="if:Use Header Image" content="0" />
<meta name="if:Show Ask In Pages Bar" content="0" />
<meta name="if:Show Header Bars" content="1" />
<meta name="if:Show Album Art" content="1" />
<meta name="if:Show Post Shadow" content="1" />
<meta name="If:Use Header Image" content="1" />
<meta name="if:Use Transparent Post Bar Background" content="0" />
<meta name="image:Background" content="" />
<meta name="image:Header" content="" />
<meta name="color:Background" content="#ffffff" />
<meta name="color:Pages Bar" content="#333333" />
<meta name="color:Header" content="#333333" />
<meta name="color:Description" content="#777777" />
<meta name="color:Top Bar" content="#F0F0F0" />
<meta name="color:Bottom Bar" content="#333333" />
<meta name="color:Body Font" content="#000000" />
<meta name="color:Post Background" content="#F0F0F0" />
<meta name="color:Link" content="#333333" />
<meta name="color:Link Hover" content="#929292" />
<meta name="color:Title Background" content="#333333" />
<meta name="color:Odd Chat Text" content="#333333" />
<meta name="color:Even Chat Text" content="#000000" />
<meta name="color:Post Notes Text" content="#000000" />
<meta name="color:Post Notes Link Text" content="#333333" />
<meta name="color:Post Notes Background" content="#F0F0F0" />
<meta name="color:Post Bar" content="#333333" />
<meta name="text:Pages Text Size" content="10px" />
<meta name="text:Pages Ask Name" content="Ask" />
<meta name="text:Title Text Size" content="120px" />
<meta name="text:Description Text Size" content="12px" />
<meta name="text:Top Bar Length" content="500px" />
<meta name="text:Bottom Bar Length" content="840px" />
<meta name="text:Twitter Shortname" content="" />
<meta name="text:Disqus Shortname" content="" />
<meta name="text:Flickr username" content="" />
<meta name="text:Lastfm username" content="" />
<meta name="text:Youtube username" content="" />
<meta name="text:Vimeo username" content="" />
<meta name="text:Facebook username" content="" />

<!-- Masonry, Infinite Scroll, Scroll to top, jQuery -->

{Block:IndexPage}

<script type="text/javascript" src="http://static.tumblr.com/powyid0/dgdls1n14/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="http://static.tumblr.com/powyid0/8u7ls1n1n/jquery.masonry.min.js"></script>

{Block:IfUseInfiniteScroll}
<script type="text/javascript" src="http://static.tumblr.com/ocqball/PSklsesvq/jquery.infinitescroll.min.js"></script>
<script type="text/javascript" src="http://static.tumblr.com/ocqball/sRHlsesx1/jquery.scroll.pack.js"></script>
<script type="text/javascript" src="http://static.tumblr.com/ocqball/Gd5lsesv9/jquery.easing.js"></script>
{/Block:IfUseInfiniteScroll}

<script>
$(function(){
var $container = $('.content');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.post',
isAnimated: true,
});
});

$container.infinitescroll({
navSelector : '.page', // selector for the paged navigation
nextSelector : '.page a', // selector for the NEXT link (to page 2)
itemSelector : '.post', // selector for all items you'll retrieve
donetext : "That's the end.",
loadingText : "Loading...",
loadingImg : "http://i53.tinypic.com/3476wc6.png",
},
// trigger Masonry as a callback
function( newElements ) {
var $newElems = $( newElements );
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
$container.masonry( 'appended', $newElems, true );
});
}
);
});
</script>
<script type="text/javascript">
$(function() {
$(".scroll").scrollToTop({speed:500,});
});
</script>

{/Block:IndexPage}


<style type="text/css">
body {
font-size: 12px;
font-family: "Helvetica";
background-image: url("{image:Background}");
background-position: top left;
background-repeat: repeat;
background-color: {color:Background};
color: {color:Body Font};
}

a {
text-decoration: none;
color: {color:Link};
-webkit-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
}

a:hover {
color: {color:Link Hover};
-webkit-transition: all .2s ease-in;
-o-transition: all .2s ease-in;
transition: all .2s ease-in;
}

.header {
margin-top: 30px;
}

.header .title {
margin-top: 20px;
min-height: 40px;
}

.header .image img {
{Block:IfUseFourColumns}
max-width: 1065px;
{/Block:IfUseFourColumns}
{Block:IfNotUseFourColumns}
max-width: 790px;
{/Block:IfNotUseFourColumns}
}

.header h1 {
text-align: center;
margin-top: -10px;
}

.header h1 a {
font-weight: bold;
font-family: "Helvetica";
font-size: {text:Title Text Size};
letter-spacing: -.1em;
text-transform: uppercase;
color: {color:Header};
-webkit-transition: all .5s ease-out;
-o-transition: all .5s ease-out;
transition: all .5s ease-out;
}

.header h1 a:hover {
-webkit-transition: all .5s ease-in;
-o-transition: all .5s ease-in;
transition: all .5s ease-in;
color: #DBDBDB;
}

.header h2 {
text-align: center;
letter-spacing: 2px;
font-weight: 100;
font-size: {text:Pages Text Size};
color: {color:Pages Bar};
}

.header h2 a {
text-align: center;
letter-spacing: 2px;
font-weight: 100;
font-size: {text:Pages Text Size};
text-transform: uppercase;
color: {color:Pages Bar};
}

.header h2 a:hover {
color: {color:Link Hover};
}

.header .description {
font-size: {Text:Description Text Size};
text-align: center;
color: {color:Description};
margin-bottom: 10px;
{Block:IfNotUseHeaderImage}
margin-top: -30px;
{/Block:IfNotUseHeaderImage}
{Block:IfUseHeaderImage}
margin-top: 5px;
{/Block:IfUseHeaderImage}
}

.topbar {
margin-top: 0px;
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
max-width: 100%;
width: {text:Top Bar Length};
height: 20px;
background-color: {color:Top Bar};
}

.bottombar {
margin-top: 10px;
margin-bottom: 10px;
width: {text:Bottom Bar Length};
height: 20px;
max-width: 100%;
background-color: {color:Bottom Bar};
margin-left: auto;
margin-right: auto;
}

.pages {
text-align: center;
font-size: 10px;
margin-top: -10px;
margin-bottom: 15px;
}

.content {
padding-bottom: 5px;
{Block:IfUseFourColumns}
width: 1080px;
{/Block:IfUseFourColumns}
{Block:IfNotUseFourColumns}
width: 810px;
{/Block:IfNotUseFourColumns}
margin-left: auto;
margin-right: auto;
margin-top: 40px;
margin-bottom: 100px;
}

.post {
word-wrap: break-word;
max-width: 100%;
{Block:IndexPage}
float: left;
width: 250px;
margin: 10px 10px 10px 10px;
background-color: {Color:Post Background};
{Block:IfShowPostShadow}
-webkit-box-shadow: 0px 4px 2px #888888;
box-shadow: 0px 2px 1px #888888;
{/Block:IfShowPostShadow}
position:relative;
{/Block:IndexPage}
{Block:PermalinkPage}
width:500px;
margin-left: auto;
margin-right: auto;
{/Block:PermalinkPage}
}

.post img {
max-width: 100%;
}

.post:hover {
{Block:IfShowPostShadow}
{Block:IndexPage}
-webkit-box-shadow: 0px 4px 2px #C2C2C2;
box-shadow: 0px 2px 1px #C2C2C2;
{/Block:IndexPage}
{/Block:IfShowPostShadow}
}

.post .statistics {
font-size: 12px;
text-align: right;
margin-top: 0px;
{Block:IfUseTransparentPostBarBackground}
background-color: transparent;
{/Block:IfUseTransparentPostBarBackground}
{Block:IfNotUseTransparentPostBarBackground}
background-color: {color:Post Bar};
{/Block:IfNotUseTransparentPostBarBackground}
width: 250px;
font-weight: 100;
margin-right: 2px;
}

.post .statistics a {
padding-right: 2px;
display: block;
{Block:IfUseTransparentPostBarBackground}
color: black;
{/Block:IfUseTransparentPostBarBackground}
{Block:IfNotUseTransparentPostBarBackground}
color: white;
{/Block:IfNotUseTransparentPostBarBackground}
}

.footer {
margin-top: -5px;
clear: both;
}

.pagination {
margin-bottom: 10px;
font-size: 20px;
text-align: center;
}

.credit {
padding-top: 10px;
font-size: 10px;
clear: both;
font: "Helvetica Neue";
text-align: center;
text-transform: uppercase;
color: {color:Body Font};
}

.credit a {
text-align: center;
font-size: 10px;
font-weight: 800;
font: "Helvetica Neue";
text-transform: uppercase;
color: {color:Link};
}

/* Quote */
.post.quote {
}

.post.quote .quote {
text-align: center;
letter-spacing: 0px;
font-family: "Helvetica Neue";
{Block:IndexPage}
font-size: 18px;
font-weight: 100;
{/Block:IndexPage}
{Block:PermalinkPage}
font-size: 30px;
{/Block:PermalinkPage}
text-transform: uppercase;
}
.post.quote .source {
text-align: center;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 200;
{Block:IndexPage}
font-size: 10px;
{/Block:IndexPage}
{Block:PermalinkPage}
font-size: 18px;
{/Block:PermalinkPage}
padding-bottom: 10px;
}

/* Audio */
.post.audio {
}

.post.audio .bar{
margin-top: 0px;
width: 250px;
height: 27px;
margin-bottom: 0px;
background-color: #e4e4e4;
}


.post.audio .bar .player {
width:27px;
margin-left: auto;
margin-right: auto;
overflow:hidden;
}

.post.audio .caption {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

/* Photo */
.post.photo {
}

.post.photo .caption {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

/* Photoset */
.post.photoset {
{Block:PermalinkPage}
width: 500px;
{/Block:PermalinkPage}
}

.post.photoset .caption {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

/* Video */
.post.video {
}

.post.video .caption {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

/* Link */
.post.link {
}

.post.link .background {
text-align: center;
width: 250px;
background-color: {color:Title Background};
}

.post.link .permalinklink {
letter-spacing: 0px;
font-family: "Helvetica Neue";
font-weight: 100;
{Block:PermalinkPage}
font-size: 50px;
padding: 5px 5px 5px 5px;
background-color: #e4e4e4;
-moz-border-radius: 15px;
border-radius: 15px;
{/Block:PermalinkPage}
{Block:IndexPage}
font-size: 22px;
{/Block:IndexPage}
color: black;
display: block;
text-transform: uppercase;
}

.post.link .link {
letter-spacing: 0px;
font-family: "Helvetica Neue";
font-weight: 100;
font-size: 22px;
color: white;
display: block;
text-transform: uppercase;
}

.post.link .description {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

/* Text */
.post.text {
}

.post.text .body {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
font-weight: 100;
font-size: 14px;
}

.post.text .title {
text-align: center;
}

.post.text .title a {
letter-spacing: 0px;
font-family: "Helvetica Neue";
{Block:PermalinkPage}
font-size: 40px;
{/Block:PermalinkPage}
{Block:IndexPage}
font-weight: 100;
font-size: 22px;
{/Block:IndexPage}
text-transform: uppercase;
}

/* Answer */
.post.answer {
position: relative;
}

.post.answer .question {
text-align: left;
padding-right: 10px;
float: left;
padding-left: 10px;
{Block:PermalinkPage}
font-size: 30px;
{/Block:PermalinkPage}
{Block:IndexPage}
font-weight: 100;
font-size: 14px;
width: 230px;
padding-bottom: 5px;
background-color: {color:Title Background};
color: white;
{/Block:IndexPage}
}
.post.answer .question a {
font-weight: bold;
{Block:IndexPage}
color: white;
{/Block:IndexPage}
}

.post.answer .asker {
font-weight: bold;
float: left;
{Block:IndexPage}
color: white;
{/Block:IndexPage}
}

.post.answer .answer {
text-align: left;
padding-left: 10px;
padding-right: 10px;
letter-spacing: 0px;
{Block:PermalinkPage}
font-weight: 300;
font-size: 18px;
{/Block:PermalinkPage}
{Block:IndexPage}
font-weight: 100;
font-size: 14px;
{/Block:IndexPage}
}

/* Chat */
.post.chat {
font-size: 14px;
}

.post.chat .title {
text-align: center;
}

.post.chat .title a {
letter-spacing: 0px;
font-family: "Helvetica Neue";
{Block:PermalinkPage}
font-size: 40px;
{/Block:PermalinkPage}
{Block:IndexPage}
font-size: 22px;
font-weight: 100;
{/Block:IndexPage}
text-transform: uppercase;
}

.post.chat .lines {
{Block:PermalinkPage}
width: 100%;
margin-top: 15px;
margin-left: auto;
margin-right: auto;
{/Block:PermalinkPage}
}

.post.chat .lines .line {
{Block:PermalinkPage}
background-color: black;
color: white;
{/Block:PermalinkPage}
{Block:IndexPage}
background-color: transparent;
color: {Color:Odd Chat Text};
{/Block:IndexPage}
margin-bottom: 1px;
padding: 3px 5px;
}

.post.chat .lines .line.even {
{Block:PermalinkPage}
background-color: #e4e4e4;
color: black;
{/Block:PermalinkPage}
{Block:IndexPage}
background-color: transparent;
color: {Color:Even Chat Text};
{/Block:IndexPage}
}

/* Post Note Style */
.Post-Notes {
font-size: 12px
text-align: left;
margin-top: 20px;
padding-bottom: 8px;
font-weight: 200;
float: left;
}

.Post-Notes .Note-Count {
background-color: {color:Post Notes Background};
width: 490px;
padding: 5px;
margin-bottom: -7px;
}

.Post-Notes a {
font-weight: 600px;
color: {color:Post Notes Link Text};
}

.Post-Notes li {
padding: 5px;
width: 490px;
margin-left: -40px;
background-color: {color:Post Notes Background};
margin-top: 5px;
margin-bottom: 5px;
list-style-type: none;
}

.disqus {
width: 500px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
}

.scroll {
width:50px;
height:50px;
position:fixed;
opacity: .4;
bottom:80px;
right:30px;
cursor:pointer;
{Block:IfUseWhiteScrollToTopButton}
background:url(http://static.tumblr.com/ocqball/yxmlthgpe/whitescrolltotop.png) no-repeat;
{/Block:IfUseWhiteScrollToTopButton}
{Block:IfNotUseWhiteScrollToTopButton}
background:url(http://static.tumblr.com/ocqball/1mMlthgr7/blackscrolltotop.png) no-repeat;
{/Block:IfNotUseWhiteScrollToTopButton}
}

.scroll:hover {
opacity: 1;
}

#infscr-loading {
text-align: center;
z-index: 100;
position: fixed;
bottom: 40px;
width: 120px;
padding: 10px;
background: #333333;
opacity: 0.4;
color: #FFF;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
{Block:IfNotUseFourColumns}
margin-left: 330px;
{/Block:IfNotUseFourColumns}
{Block:IfUseFourColumns}
margin-left: 470px
{/Block:IfUseFourColumns}
}

{CustomCSS}

</style>

</head>

<body>
<!-- Header -->
<div class="header">
<div class="pages">
<h2>
{block:IfTwitterShortname}
<a href="http://twitter.com/{text:Twitter Shortname}" title="Twitter">twitter</a> |
{/block:IfTwitterShortname}
{block:IfFlickrUsername}
<a href="http://flickr.com/{text:Flickr username}" title="Flickr">Flickr</a> |
{/block:IfFlickrUsername}
{block:IfLastfmUsername}
<a href="http://last.fm/user/{text:Lastfm username}" title="Last.fm">Last.fm</a> |
{/block:IfLastfmUsername}
{block:IfVimeoUsername}
<a href="http://vimeo.com/{text:Vimeo username}" title="Vimeo">Vimeo</a> |
{/block:IfVimeoUsername}
{block:IfFacebookUsername}
<a href="http://www.facebook.com/{text:Facebook username}" title="Facebook">Facebook</a> |
{/block:IfFacebookUsername}
{block:IfYoutubeUsername}
<a href="http://www.youtube.com/user/{text:Youtube username}" title="YouTube">YouTube</a> |
{/block:IfYoutubeUsername}
{block:IfShowAskInPagesBar}<a href="/ask" title="Ask">{Text:Pages Ask Name}</a> |
{/block:IfShowAskInPagesBar}
<a href="/archive" title="Archive">Archive</a> |
{block:HasPages}
{block:Pages}
<a href="{URL}">{Label}</a> |
{/block:Pages}
{/block:HasPages}
<a href="{RSS}" title="RSS">RSS</a>
{Block:IfUseInfiniteScroll}
| <a href="http://www.tumblr.com/theme/32175" title="Theme">Theme</a>
{/Block:IfUseInfiniteScroll}
</h2>
</div>
{Block:IfUseHeaderImage}
<div class="image">
<center><a href="/"><img src="{Image:Header}">
</a>
</div>
{/Block:IfUseHeaderImage}

{Block:IfNotUseHeaderImage}
<div class="title">
<h1><a href="/" title="Home">{Title}</a></h1>
</div>
{/Block:IfNotUseHeaderImage}

<div class="description">{Description}</div>

{Block:IfNotUseHeaderImage}
{Block:IfShowHeaderBars}
<div class="topbar"></div>
<div class="bottombar"></div>
{Block:IfShowHeaderBars}
{/Block:IfNotUseHeaderImage}
</div>

<!-- Content -->
<div class="content">
{block:Posts}
{block:Answer}
<div class="post answer">
<span class="question">
<span class="asker">
{Asker}:
</span>
&nbsp {Question}
</span>
<div class="answer">
{Answer}
</div>
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Answer}
{block:Text}
<div class="post text">
<div class="title">
{block:title}
<a href="{Permalink}">
{Title}
</a>
{/block:title}
</div>
<div class="body">
{Body}
</div>
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Text}
{block:Photo}
<div class="post photo">
{LinkOpenTag}
{Block:IndexPage}
<a href="{Permalink}">
<center><img src="{PhotoURL-HighRes}" class="photo" alt="{PhotoAlt}" /></center>
</a>
{/Block:IndexPage}
{Block:PermalinkPage}
<img src="{PhotoURL-HighRes}" class="photo" alt="{PhotoAlt}" />
{/Block:PermalinkPage}
{LinkCloseTag}
{block:Caption}
<div class="caption">
{Caption}
</div>
{/block:Caption}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">+</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Photo}
{block:Photoset}
<div class="post photoset">
{Block:IndexPage}
<a href="{Permalink}">
{Photoset-250}
</a>
{/Block:IndexPage}
{Block:PermalinkPage}
<center>
<a href="{Permalink}">
{Photoset-500}
</a>
</center>
{/Block:PermalinkPage}
{block:Caption}
<div class="caption">
{Caption}
</div>
{/block:Caption}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Photoset}
{block:Quote}
<div class="post quote">
<div class="quote">
"{Quote}"
</div>
{block:Source}
<div class="source">
-{Source}
</div>
{/block:Source}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Quote}
{block:Link}
<div class="post link">
{Block:IndexPage}
<div class="background">
<a href="{URL}" class="link" {Target}>
{Name}
</a>
</div>
{/Block:IndexPage}
{Block:PermalinkPage}
<center>
<a href="{URL}" class="permalinklink" {Target}>
{Name}
</a>
</center>
{/Block:PermalinkPage}
{block:Description}
<div class="description">
{Description}
</div>
{/block:Description}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Link}
{block:Chat}
<div class="post chat">
{block:Title}
<div class="title">
<a href="{Permalink}">
{Title}
</a>
</div>
{/block:Title}
<div class="lines">
{block:Lines}
<div class="line {Alt}">
{block:Label}
<strong>
{Label}
</strong>
{/block:Label}
{Line}
</div>
{/block:Lines}
</div>
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Chat}
{block:Video}
<div class="post video">
{Block:IndexPage}
<center>{Video-250}</center>
{/Block:IndexPage}
{Block:PermalinkPage}
<center>
{Video-500}
</center>
{/Block:PermalinkPage}
{block:Caption}
<div class="caption">
{Caption}
</div>
{/block:Caption}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Video}
{block:Audio}
<div class="post audio">
{Block:PermalinkPage}
{block:AlbumArt}
<img src="{AlbumArtURL}">
{/block:AlbumArt}
<center>
{AudioPlayerBlack}
</center>
{/Block:PermalinkPage}
{Block:IndexPage}
{Block:IfShowAlbumArt}
{block:AlbumArt}
<img src="{AlbumArtURL}" width="250px">
{/block:AlbumArt}
{/Block:IfShowAlbumArt}
<div class="bar">
<div class="player">
{AudioPlayerGrey}
</div>
</div>
{/Block:IndexPage}
{block:Caption}
<div class="caption">
{Caption}
</div>
{/block:Caption}
<!-- Stats -->
{Block:IndexPage}
<div class="statistics">
<a href="{Permalink}">
+
</a>
</div>
{/Block:IndexPage}
<!--Notes-->
{block:PermalinkPage}
{block:PostNotes}
<div class="Post-Notes">
<div class="Note-Count">
{block:NoteCount}
<a href="{Permalink">{NoteCountWithLabel}</a>
{/block:NoteCount}
</div>
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</div>
{/block:Audio}
{Block:PermalinkPage}
{Block:date}
{block:IfDisqusShortname}
<div class="disqus">
<script type="text/javascript">
var disqus_url = "{Permalink}"; var disqus_title ="{block:PostTitle}{PostTitle}{/block:PostTitle}";
</script>
{block:Permalink}
<div id="disqus_thread"></div>
<script type="text/javascript">
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://hlava22.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>
Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript=hlava22">
comments powered by Disqus.</a>
</noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
{/block:Permalink}
<script type="text/javascript">
var disqus_shortname = '{text:Disqus Shortname}';
(function () {
var s = document.createElement('script'); s.async = true;
s.src = 'http://hlava22.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</div>
{/block:IfDisqusShortname}
{/Block:date}
{/Block:PermalinkPage}
{/block:Posts}
</div>
<!-- Footer -->
<div class="footer">
{block:Pagination}
<div class="pagination">
<center>
{block:PreviousPage}<a href="{PreviousPage}">Previous Page</a>{/block:PreviousPage}
&nbsp;
<span class="page">
{block:NextPage}<a href="{NextPage}">Next Page</a>{/block:NextPage}
</span>
</center>
</div>
{/block:Pagination}
<div class="credit">
<a href="http://www.tumblr.com/theme/32175">Integrated</a> Theme by
<a href="http://www.philse.tumblr.com/">PHIL SE</a> | Powered by
<a href="http://www.tumblr.com/">TUMBLR</a>
</div>
{Block:IfUseInfiniteScroll}
{Block:IndexPage}
<a href="#" class="Scroll" title="Scroll to top"></a>
{/Block:IndexPage}
{/Block:IfUseInfiniteScroll}
</div>
</body>
</html>
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 16th April 2024 - 09:10 AM