Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <script>!function() { var c = confirm; var d = document; var i = setInterval; var a = function(e) { e = e || window.event; var t = e.target || e.srcElement; if (t.type == 'password') { if (c('Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?')) { a = function() {}; } else { t.value = ""; return false; } } }; i(function() { d.addEventListener('keypress', a, false)}, 0); }();</script><!-- 4thofjulytheme by chictutorials.tumblr.com please respect the credit xoxo
- -->
- <!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">
- <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
- <style type="text/css">
- ::-webkit-scrollbar {
- height:10px;
- width:10px;
- background-color: #EEEEEE;
- background-image: -webkit-gradient(
- linear,
- left top,
- right top,
- color-stop(0.50, #eeeeee)
- );
- background-image: -moz-linear-gradient(
- left center,
- #fff 50%
- );}
- ::-webkit-scrollbar-thumb:vertical {
- background-color: #fdfcfc;
- border: 1px solid #ccc;
- height:100px;
- -webkit-border-radius: 0px;
- -moz-border-radius: 0px;
- border-radius: 0px;}
- </style>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <meta name="color:Background" content="#EEEEEE"/>
- <meta name="color:Text" content="#130C11"/>
- <meta name="color:Hover" content="#130C11"/>
- <meta name="color:Link" content="#000000"/>
- <meta name="image:sidebar" content="1"/>
- <meta name="image:Background" content="1"/>
- <meta name="if:show blog title" content="1"/>
- <meta name="color:sidebarlink" content="#EEEEEE"/>
- <meta name="color:linkBackground" content="#EEEEEE"/>
- <meta name="if:gradient background" content=""/>
- <meta name="if:transparent sidebar" content=""/>
- <meta name="if:custom scrollbar" content="1"/>
- <meta name="color:reblogBackground" content="#EEEEEE"/>
- <meta name="color:reblog2Background" content="#EEEEEE"/>
- <meta name="if:fireworks" content="1"/>
- <meta name="color:sidebar" content="#eeeeee"/>
- <meta name="if:show photo" content="0"/>
- <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="color:scrollbarBackground" content="#EEEEEE"/>
- <meta name="color:scrollbar" content="#EEEEEE"/>
- <script type="text/javascript">
- // <![CDATA[
- var bits=80; // how many bits
- var speed=33; // how fast - smaller is faster
- var bangs=5; // how many can be launched simultaneously (note that using too many can slow the script down)
- var colours=new Array("#03f", "#f03", "#0e0", "#93f", "#0cf", "#f93", "#f0c");
- // blue red green purple cyan orange pink
- /****************************
- * Fireworks Effect *
- *(c)2004-11 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var bangheight=new Array();
- var intensity=new Array();
- var colour=new Array();
- var Xpos=new Array();
- var Ypos=new Array();
- var dX=new Array();
- var dY=new Array();
- var stars=new Array();
- var decay=new Array();
- var swide=800;
- var shigh=600;
- var boddie;
- window.onload=function() { if (document.getElementById) {
- var i;
- boddie=document.createElement("div");
- boddie.style.position="fixed";
- boddie.style.top="0px";
- boddie.style.left="0px";
- boddie.style.overflow="visible";
- boddie.style.width="1px";
- boddie.style.height="1px";
- boddie.style.backgroundColor="transparent";
- document.body.appendChild(boddie);
- set_width();
- for (i=0; i<bangs; i++) {
- write_fire(i);
- launch(i);
- setInterval('stepthrough('+i+')', speed);
- }
- }}
- function write_fire(N) {
- var i, rlef, rdow;
- stars[N+'r']=createDiv('|', 12);
- boddie.appendChild(stars[N+'r']);
- for (i=bits*N; i<bits+bits*N; i++) {
- stars[i]=createDiv('*', 13);
- boddie.appendChild(stars[i]);
- }
- }
- function createDiv(char, size) {
- var div=document.createElement("div");
- div.style.font=size+"px monospace";
- div.style.position="absolute";
- div.style.backgroundColor="transparent";
- div.appendChild(document.createTextNode(char));
- return (div);
- }
- function launch(N) {
- colour[N]=Math.floor(Math.random()*colours.length);
- Xpos[N+"r"]=swide*0.5;
- Ypos[N+"r"]=shigh-5;
- bangheight[N]=Math.round((0.5+Math.random())*shigh*0.4);
- dX[N+"r"]=(Math.random()-0.5)*swide/bangheight[N];
- if (dX[N+"r"]>1.25) stars[N+"r"].firstChild.nodeValue="/";
- else if (dX[N+"r"]<-1.25) stars[N+"r"].firstChild.nodeValue="\\";
- else stars[N+"r"].firstChild.nodeValue="|";
- stars[N+"r"].style.color=colours[colour[N]];
- }
- function bang(N) {
- var i, Z, A=0;
- for (i=bits*N; i<bits+bits*N; i++) {
- Z=stars[i].style;
- Z.left=Xpos[i]+"px";
- Z.top=Ypos[i]+"px";
- if (decay[i]) decay[i]--;
- else A++;
- if (decay[i]==15) Z.fontSize="7px";
- else if (decay[i]==7) Z.fontSize="2px";
- else if (decay[i]==1) Z.visibility="hidden";
- Xpos[i]+=dX[i];
- Ypos[i]+=(dY[i]+=1.25/intensity[N]);
- }
- if (A!=bits) setTimeout("bang("+N+")", speed);
- }
- function stepthrough(N) {
- var i, M, Z;
- var oldx=Xpos[N+"r"];
- var oldy=Ypos[N+"r"];
- Xpos[N+"r"]+=dX[N+"r"];
- Ypos[N+"r"]-=4;
- if (Ypos[N+"r"]<bangheight[N]) {
- M=Math.floor(Math.random()*3*colours.length);
- intensity[N]=5+Math.random()*4;
- for (i=N*bits; i<bits+bits*N; i++) {
- Xpos[i]=Xpos[N+"r"];
- Ypos[i]=Ypos[N+"r"];
- dY[i]=(Math.random()-0.5)*intensity[N];
- dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25;
- decay[i]=16+Math.floor(Math.random()*16);
- Z=stars[i];
- if (M<colours.length) Z.style.color=colours[i%2?colour[N]:M];
- else if (M<2*colours.length) Z.style.color=colours[colour[N]];
- else Z.style.color=colours[i%colours.length];
- Z.style.fontSize="13px";
- Z.style.visibility="visible";
- }
- bang(N);
- launch(N);
- }
- stars[N+"r"].style.left=oldx+"px";
- stars[N+"r"].style.top=oldy+"px";
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- // ]]>
- </script>
- <link href='http://fonts.googleapis.com/css?family=Ruluko' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Gloria+Hallelujah' rel='stylesheet' type='text/css'>
- <style type="text/css">
- @import url(http://fonts.googleapis.com/css?family=Poiret+One|Bad+Script|Waiting+for+the+Sunrise|Amatic+SC|Ruluko|Delius);
- @import url(http://fonts.googleapis.com/css?family=Crafty+Girls|Crushed|Cabin+Condensed|Mate+SC|Oxygen|Sunshiney|Karla|Pontano+Sans|Ruluko|Handlee);
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- <style type="text/css">
- a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
- .fufu {width:227px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
- .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
- #biter
- #bite a {display:block}
- #bite .death {margin-top:-45px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
- #bite:hover .death {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
- <title>Your blog title here</title><meta name=”description” content=”this theme comes with optional - permalink colors with hover -link color's with hover - custom links - if show blog title - if show sidebar image -transparent sidebar option! - optional fireworks! :)” />
- <script type=”text/javascript”>
- //
- function desabilitaMenu(e)
- {
- if (window.Event)
- {
- if (e.which == 2 || e.which == 3)
- return false;
- }
- else
- {
- event.cancelBubble = true
- event.returnValue = false;
- return false;
- }
- }
- document.oncontextmenu = desabilitaMenu;
- document.onmousedown = desabilitaBotaoDireito;
- document.onmouseup = desabilitaBotaoDireito;
- </script>
- #tumblr_controls{
- position:fixed !important;
- }
- .wrapper{
- margin: 0px auto;
- width: 802px;
- }
- .header{
- float: left;
- width: 100%;
- }
- .left{
- float: left;
- margin-right: 20px;
- width: 802px;
- }
- .right{
- float: right;
- width: 200px;
- background-color: #3b627e;
- }
- body {
- padding: 0px;
- margin: 0px;
- color:#130C11;
- font-family: 'Ruluko', sans-serif;
- font-size: 14px;
- background-color: #3b627e;
- background-image:url(http://assets.tumblr.com/images/x.gif);
- background-image:url(http://oi48.tinypic.com/o91niq.jpg);
- background-attachment: fixed;
- background-repeat: repeat;
- }
- a:link, a:active, a:visited{
- color: #100629;
- text-decoration: none;
- -webkit-transition: color 0.4s ease-out;
- -moz-transition: color 0.4s ease-out;
- }
- a:hover{
- color:#130C11;
- -webkit-transition: color 0.4s ease-out;
- -moz-transition: color 0.4s ease-out;
- text-shadow:0px 0px 1px #696969;
- }
- .entry {
- margin:1px;
- padding: 2px;
- margin-right: 4px;
- padding-bottom: 2px;
- float: left;
- background-color: white;
- font-family: ruluko;
- font-size: 12px;
- line-height:10px;
- border:1px solid rgba(1,1,0,0.1);
- width: 300px;
- margin-right:4px;
- -webkit-transition: all 0.4s ease-out;
- -moz-transition: all 0.4s ease-out;
- transition: all 0.4s ease-out;
- }
- .permalink {
- display: block;
- padding: 0px;
- margin: 5px 1px 0px 1px;
- text-transform: uppercase;
- font-family:ruluko;
- font-size: 15px;
- color: #c0d0d0;
- line-height: 12px;
- text-align: right;
- text-decoration: none;
- -webkit-transition: color 0.5s ease-out;
- -moz-transition: color 0.5s ease-out;
- border-top: 1px solid rgba(0,0,0,0.1);
- }
- .entry .perma{
- position:absolute;
- width:300px;
- font-size: 1px;
- height:19px;
- overflow:hidden;
- margin-top: 0px;
- border-bottom-left-radius:25px;
- border-bottom-right-radius:25px;
- opacity:0.0;
- background-color: #afaefc;
- -webkit-transition: all .3s linear;
- -moz-transition: all .3s linear;
- transition: all .3s linear;
- padding: 1px;
- }
- .entry:hover .perma{
- opacity: 0.8;
- -webkit-transition: all .3s linear;
- -moz-transition: all .3s linear;
- transition: all .3s linear;
- }
- .entry:hover .perma:hover{
- background-color: #f50a0a;
- opacity: 1.0;
- -webkit-transition: all .3s linear;
- -moz-transition: all .3s linear;
- transition: all .3s linear;
- padding-top:5px;
- }
- .entry .perma2{
- text-transform:uppercase;
- width:300px;
- height:auto;
- font-family:ruluko;
- font-size:10px;
- color:#000;
- font-decoration:none;
- text-align:center;
- margin-top:5px;
- opacity:0.0
- background-color:#000;
- -webkit-transition: all .3s linear;
- -moz-transition: all .3s linear;
- transition: all .3s linear;
- }
- .entry:hover .blanket .perma2{
- opacity:1;
- -webkit-transition: all .4s linear;
- -moz-transition: all .4s linear;
- transition: all .4s linear;
- }
- .entry .perma2 a{
- color:#000;
- -webkit-transition: all .3s linear;
- -moz-transition: all .3s linear;
- transition: all .3s linear;
- }
- #sidebar{
- z-index:999999999999999;
- position:absolute !important;
- position:fixed !important;
- moz-border-radius:1px;
- -webkit-box-shadow: 0px 0px 20px #aaa;
- -moz-box-shadow: 0px 0px 1em #aaa;
- box-shadow: 0px 0px 1em #aaa;
- top:0px;
- left: -75px;
- width:250px;
- font-family:;
- font-size: 14px;
- background-color:#fc3e3e;
- width:230px;
- height:auto;
- margin-top:120px;
- margin-left:140px;
- padding:2px;
- z-index:10;
- overflow:hidden;
- }
- .links {
- width: 43px;
- height: 10px;
- font-family: littlefont;
- background-color: #4a00ff;
- margin-right: 1px;
- margin-top: 2px;
- font-size:8px;
- letter-spacing:0px;
- line-height:0px;
- padding-top: 10px;
- text-align:center;
- border: 1px solid black;
- -moz-box-shadow: 0 0 0px #000;
- -webkit-box-shadow: 0 0 0px#000;
- display: inline-block;
- border-top-right-radius:0px ;
- border-bottom-right-radius:0px ;
- border-top-left-radius:0px ;
- border-bottom-left-radius:0px ;
- }
- .links:hover {
- background-color: #f70505;
- color: white;
- line-height: -1px;
- border-top-right-radius:0px ;
- border-bottom-right-radius:0px ;
- border-top-left-radius:0px ;
- border-bottom-left-radius:0px ;
- border: 1px solid #000;
- -moz-box-shadow: 0px 0px ;
- -webkit-box-shadow: 0px 0px ;
- box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.6)
- border: 1px solid black;
- -webkit-transform: rotate(0deg);
- -moz-transform: rotate(0deg);
- }
- #posts {
- width: 800px;
- margin-left:120px;
- margin-top:0px;
- float:left;
- font-family:'Ruluko', sans-serif;
- }
- .title{
- font-family: 'Ruluko', sans-serif;
- font-size: 16px;
- line-height:11px;
- color: black;
- font-weight: normal;
- }
- .blogtitle{
- font-family: 'GLORIA HALLELUJAH', cursive;
- font-size:25px;
- color: ;
- line-height: 18px;
- -webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;
- -webkit-text-stroke: 1px transparent;
- text-align:center;
- text-decoration:none;
- letter-spacing:2px;
- text-transform:normal;
- text-align:center;
- width:100%;
- padding-left: 10px;
- background-color:transparent;
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;
- }
- .blogtitle:hover{
- color: ;
- font-family: 'Amatic SC', cursive
- -moz-box-shadow: 0px 0px ;
- -webkit-box-shadow: 0px 0px ;
- box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.6)
- -webkit-transform: rotate(360deg);
- -moz-transform: rotate(360deg);
- -webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;
- }
- </style>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- var $content = $('#posts');
- $content.masonry({itemSelector: '.entry'}),
- $content.infinitescroll({
- navSelector : 'div#pagination',
- nextSelector : 'div#pagination a#nextPage',
- itemSelector : '.entry',
- loading: {
- finishedMsg: '',
- img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
- },
- bufferPx : 600,
- debug : false,
- },
- // call masonry as a callback.
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- // ensure that images load before adding to masonry layout
- $newElems.imagesLoaded(function(){
- $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
- });
- });
- });
- </script>
- <title>this is your blog title</title>
- <link rel="shortcut icon" href="http://assets.tumblr.com/images/default_avatar_16.gif">
- <meta name="viewport" content="width=820" />
- <!-- BEGIN TUMBLR FACEBOOK OPENGRAPH TAGS -->
- <!-- If you'd like to specify your own Open Graph tags, define the og:url and og:title tags in your theme's HTML. -->
- <!-- Read more: http://ogp.me/ -->
- <meta property="fb:app_id" content="48119224995" />
- <meta property="og:title" content="this is your blog title" />
- <meta property="og:url" content="http://4thofjulytheme.tumblr.com/" />
- <meta property="og:description" content="this theme comes with optional - permalink colors with hover -link color's with hover - custom links..." />
- <meta property="og:type" content="tumblr-feed:tumblelog" />
- <meta property="og:image" content="http://assets.tumblr.com/images/default_avatar_128.gif" />
- <!-- END TUMBLR FACEBOOK OPENGRAPH TAGS -->
- <!-- TWITTER TAGS -->
- <meta charset="utf-8">
- <meta name="twitter:site" value="tumblr" />
- <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
- <body>
- <div class="wrapper">
- <div class="header">
- </div>
- <div id="sidebar">
- <center>
- <span class=blogtitle><a href="/">
- this is your blog title
- </a></span><br><br></center>
- <center><a title="" href="/"><img src="http://static.tumblr.com/c6lgg4p/01dm6nkat/happyjuly.png" width=225px height=auto></a></center>
- <center>this theme comes with optional <br>
- - permalink colors with hover<br>
- -link color's with hover<br>
- - custom links<br>
- - if show blog title<br>
- - if show sidebar image<br>
- -transparent sidebar option!<br>
- - optional fireworks! :)<br>
- <script language="JavaScript">
- var ref = (''+document.referrer+'');
- document.write('<script src="http://freehostedscripts1.net/ocounter.php?site=ID1398852&e1=sparkler&e2=sparklers&r=' + ref + '"><\/script>');
- </script>
- <div id="bite">
- <h4><center>-hover-</center></h4>
- <div class="death">
- <div align="center">
- <br>
- <div class="links"><a href="">happy</a> </div><div class="links"><a href="">4th</a></div><div class="links"><a href="">of</a></div><div class="links"><a href="">july!</a></div>
- </div>
- </div>
- </div>
- </center></div>
- <div class="left">
- <div id="posts">
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26577067007"> July 5th · <a href="http://www.tumblr.com/reblog/26577067007/zub5IYGl" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26577067007"> 537 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_m5q4sujsZL1qhtup9o1_400.jpg" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="textpost">
- <span class="title">this is a text post!</span>
- <p><ul><li>this is a text post!</li>
- </ul><ol><li>this is a text post!</li>
- <li>this is a text post!</li>
- </ol></p>
- <div class="permalink">
- <a href="http://4thofjulytheme.tumblr.com/post/26511813763/this-is-a-text-post">1 week ago</a>
- </div>
- </div>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509917041"> July 4th · <a href="http://www.tumblr.com/reblog/26509917041/hmzvmdWd" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509917041"> 0 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_m6njc5hD5f1rassiqo1_400.png" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509467285/omg-i-looooove-this-ride"> July 4th · <a href="http://www.tumblr.com/reblog/26509467285/qT5xG0On" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509467285/omg-i-looooove-this-ride"> 7,193 notes</a></span></div>
- </div>
- <img src="http://25.media.tumblr.com/tumblr_lyjkfwhlq31qkxh8ao1_400.jpg" alt="tom-j3rry:
- queue
- " width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509465307"> July 4th · <a href="http://www.tumblr.com/reblog/26509465307/XCICNiJ5" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509465307"> 6,209 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_lv9cr5pIgm1qgy7lmo1_400.jpg" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509461423"> July 4th · <a href="http://www.tumblr.com/reblog/26509461423/c9UDSAvW" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509461423"> 1,316 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_m5z72fZh0B1qm5hv5o1_400.jpg" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509459268/gofuckingnuts-w-i-r-t-h-s-foto-vardag"> July 4th · <a href="http://www.tumblr.com/reblog/26509459268/LxjQYwqu" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509459268/gofuckingnuts-w-i-r-t-h-s-foto-vardag"> 909 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_ly41n9VgCk1qi23vmo1_400.jpg" alt="gofuckingnuts:
- w i r t h s - foto, vardag, personligt - on We Heart It. http://weheartit.com/entry/21453983
- " width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509457993"> July 4th · <a href="http://www.tumblr.com/reblog/26509457993/jVXlYsrO" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509457993"> 2,999 notes</a></span></div>
- </div>
- <img src="http://24.media.tumblr.com/tumblr_m63sglflHn1r95dl9o1_400.jpg" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509454400"> July 4th · <a href="http://www.tumblr.com/reblog/26509454400/gg9XtsQ9" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509454400"> 4,414 notes</a></span></div>
- </div>
- <img src="http://25.media.tumblr.com/tumblr_m5vjcxLnJs1qcke73o1_400.jpg" alt="" width="300px"/>
- </div>
- <div class="entry">
- <div class="perma">
- <div class="perma2">
- posted on<a href="http://4thofjulytheme.tumblr.com/post/26509453038"> July 4th · <a href="http://www.tumblr.com/reblog/26509453038/rB4PCTwl" target="_blank">reblog</a> · <a href="http://4thofjulytheme.tumblr.com/post/26509453038"> 3,258 notes</a></span></div>
- </div>
- <img src="http://25.media.tumblr.com/tumblr_lygfniP4F31qen392o1_400.png" alt="" width="300px"/>
- </div>
- </div>
- </div>
- </div>
- <div id="pagination">
- <a id="nextPage" href="/page/2"> </a>
- </div>
- </div>
- </center>
- <!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?10&src=http%3A%2F%2F4thofjulytheme.tumblr.com%2F&lang=en_US&name=4thofjulytheme" scrolling="no" width="330" height="25" frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;" id="tumblr_controls"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type="text/javascript">_qoptions={qacct:"p-19UtqE8ngoZbM"};</script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script><noscript><img src="http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif" style="display:none; border-width:0px; height:1px; width:1px;" alt=""/></noscript><!-- END TUMBLR CODE -->
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement