Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!--
- THEME #02 BY MORGANE (kilmorecove@tumblr / teen-wolf@tumblr)
- Made for personal use only.
- RULES:
- - Do not remove the credits
- - Do not move the credits to a secondary page
- - Do not take snippets from this code
- - Do not redistribute and/or claim the code as your own
- You're allowed to edit the code as you want as long as you respect the rules.
- For help message me @ kilmorecove.tumblr.com
- Enjoy! :)
- -->
- <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}
- <meta name="color:ask bg" content="#f6f6f6"/>
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:borders" content="#eeeeee"/>
- <meta name="color:chat text" content="#777777"/>
- <meta name="color:chat" content="#f6f6f6"/>
- <meta name="color:description" content="#bbbbbb"/>
- <meta name="color:link hover" content="#ffc400"/>
- <meta name="color:links" content="#666"/>
- <meta name="color:nav link background hover" content="#fff"/>
- <meta name="color:nav link background" content="#f6f6f6"/>
- <meta name="color:nav link hover" content="#666"/>
- <meta name="color:nav link" content="#c4c6ca"/>
- <meta name="color:pagination" content="#ccc"/>
- <meta name="color:permalink" content="#ccc"/>
- <meta name="color:permalink bg" content="#f6f6f6"/>
- <meta name="color:post title" content="#ffc400"/>
- <meta name="color:posts" content="#fff"/>
- <meta name="color:scrollbar background" content="#ffffff"/>
- <meta name="color:scrollbar" content="#ffc400"/>
- <meta name="color:selection background" content="#fff"/>
- <meta name="color:selection text" content="#000000"/>
- <meta name="color:sidebar bg" content="#f6f6f6"/>
- <meta name="color:sidebar borders" content="#eeeeee"/>
- <meta name="color:text" content="#888"/>
- <meta name="color:title1" content="#ffc400"/>
- <meta name="color:title2" content="#888888"/>
- <meta name="image:background" content=""/>
- <meta name="image:header" content="http://static.tumblr.com/e1938ba044110ffe834baddca584feb8/rmo8by6/C3Qmr3yu0/tumblr_static_header.png"/>
- <meta name="image:sidebar" content="http://static.tumblr.com/ad0c22da7c7597dc91fefc5d65ac4d87/rmo8by6/qsxmr3ysb/tumblr_static_sbar.png"/>
- <meta name="text:link1" content="link"/>
- <meta name="text:Title2" content="title 2"/>
- <meta name="text:header text 1" content="Header title"/>
- <meta name="text:header text 2" content="header subtitle"/>
- <meta name="text:posts margin top" content="229px"/>
- <meta name="text:home link" content="un"/>
- <meta name="text:ask link" content="deux"/>
- <meta name="text:link1" content="trois"/>
- <meta name="text:link2" content="quatre"/>
- <meta name="text:link3" content="cinq"/>
- <meta name="text:link1 hover" content="link 1"/>
- <meta name="text:link2 hover" content="link 2"/>
- <meta name="text:link3 hover" content="link 3"/>
- <meta name="text:link1 url" content="http://"/>
- <meta name="text:link2 url" content="http://"/>
- <meta name="text:link3 url" content="http://"/>
- <meta name="if:Lazy Load" content="0" />
- <meta name="if:Header" content="1" />
- <meta name="if:ShowCaption" content="1" />
- <!---------------------------------------------------------------------->
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/tiu5k68/xTkm8wqw2/tumblr-title-qtip.js"></script>
- {block:ifLazyLoad}
- <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/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>
- {/block:ifLazyLoad}
- <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
- {block:IfHeader}
- <script type="text/javascript">
- $(document).ready(function(){
- var HeaderTop = $('#sticker').offset().top;
- $(window).scroll(function(){
- if( $(window).scrollTop() > HeaderTop ) {
- $('#sticker').css({position: 'fixed', top: '0px'});
- } else {
- $('#sticker').css({position: 'static'});
- }
- });
- });
- </script>
- {/block:IfHeader}
- <style>
- .my-like {
- cursor:pointer;
- display:inline-block;
- font-style:normal;
- margin-right:2px;
- }
- .my-liked, .my-like:hover {
- color: red;
- cursor:pointer;
- display:inline-block;
- }
- </style>
- <script>
- window.onload = function () {
- document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
- document.addEventListener( 'click', function ( event ) {
- var myLike = event.target;
- if( myLike.className.indexOf( 'my-like' ) > -1 ) {
- var frame = document.getElementById( 'my-like-frame' ),
- liked = ( myLike.className == 'my-liked' ),
- command = liked ? 'unlike' : 'like',
- reblog = myLike.getAttribute( 'data-reblog' ),
- id = myLike.getAttribute( 'data-id' ),
- oauth = reblog.slice( -8 );
- frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
- liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
- };
- }, false );
- };
- </script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:90,
- tip_fade_speed:600,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <style type="text/css">
- #s-m-t-tooltip { max-width:300px; padding:4px;
- margin-top:10px; margin-left:10px; background-color:#f9f9f9; /* change the background color */ font-family:'georgia'; text-transform:lowercase;
- font-size:8px; /* change the font size */ letter-spacing:1px; /* change the letter spacing */ color:#aaa; /* change the text color */ z-index:999999999999999999999999999999999999; font-style:italic; }
- ::selection {
- background:{color:selection background};
- color:{color:selection text};
- }
- ::-moz-selection {
- background:{color:selection background};
- color:{color:selection text};
- }
- ::-webkit-selection {
- background:{color:selection background};
- color:{color:selection text};
- }
- ::-webkit-scrollbar {width: 7px; height: 4px; background:{color:scrollbar background}; cursor: url(http://i.imgur.com/2qleX.jpg), auto;}
- ::-webkit-scrollbar-thumb {background-color:{color:scrollbar}; }
- @font-face {
- font-family: 'Libre Baskerville';
- font-style: normal;
- font-weight: 400;
- src: local('Libre Baskerville'), local('LibreBaskerville-Regular'), url(http://themes.googleusercontent.com/static/fonts/librebaskerville/v1/pR0sBQVcY0JZc_ciXjFsK5Rby8KfwQsaipLBqMCVNtM.woff) format('woff');
- }
- iframe#tumblr_controls_a
- {
- width:0px;
- height:0px;
- z-index: 2147483647;
- top: 0;
- right: 0;
- border: 0;
- background-color: #ffffff;
- overflow: hidden;
- display: block;
- box-shadow: 0px 2px 3px rgba(0,0,0,0);
- border-top: 0px solid #000;
- border-bottom: 0px solid #000;
- }
- iframe#tumblr_controls {
- white-space:nowrap; -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%); filter: invert(100%); opacity:.2;transition: .8s ease-in-out; -webkit-transition: .8s ease-in-out;-moz-transition: .8s ease-in-out;-o-transition: .8s ease-in-out; position:fixed;}
- iframe#tumblr_controls {
- position:fixed !important;
- right:3px !important;
- -webkit-transition:opacity 0.6s;
- opacity:0.3;
- -webkit-transition:0.6s;
- -moz-transition:0.6s;
- transition:0.6s;
- }
- iframe#tumblr_controls:hover {
- -webkit-transition:opacity 0.6s;
- opacity:1;
- -webkit-transition:all 0.6s;
- -moz-transition:all 0.6s;
- transition:all 0.6s;
- }
- body {
- color:{color:text};
- font-family: 'calibri';
- font-size: 11px;
- background-color:{color:Background};
- background:url('{image:Background}');
- background-repeat:no-repeat;
- background-attachment:fixed;
- }
- a {
- color:{color:links};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- a:hover {
- color:{color:link hover};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- #topbar {
- width:510px;
- position:absolute;
- top:0px;
- left:508px;
- z-index:10;
- -webkit-transition: all 0.6s ease-in-out;
- -moz-transition: all 0.6s ease-in-out;
- -ms-transition: all 0.6s ease-in-out;
- -o-transition: all 0.6s ease-in-out;
- transition: all 0.6s ease-in-out;
- }
- #toppic {
- position:relative;
- }
- #sticker {
- padding-top:13px;
- width:500px;
- text-align:center;
- position:absolute;
- color: {color:title1};
- font-family: 'Satisfy', cursive;
- font-size:16px;
- border-bottom: 4px double {color:sidebar borders};
- border-top: 4px double {color:sidebar borders};
- padding-bottom:10px;
- background-color: rgba(249, 249, 249, 0.8);
- overflow:hidden;
- -webkit-transition: all 0.6s ease-in-out;
- -moz-transition: all 0.6s ease-in-out;
- -ms-transition: all 0.6s ease-in-out;
- -o-transition: all 0.6s ease-in-out;
- transition: all 0.6s ease-in-out;
- }
- .toptitle2 {
- text-transform:uppercase;
- color: {color:title2};
- letter-spacing:1px;
- font-style:normal;
- font-size:8px;
- font-family:'cambria';
- margin-bottom:3px;
- margin-top:-3px;
- }
- .nasc a {color:{color:title2};}
- #sidebar {
- position:fixed;
- top:190px;
- left:220px;
- width:180px;
- height:auto;
- }
- .nav {
- margin-top:-105px;
- margin-left:150px;
- width:35px;
- height:100px;
- display:block;
- float:left;
- }
- .nav a {
- color: {color:nav link};
- background-color:{color:nav link background};
- border-bottom: 1px double {color:sidebar borders};
- text-align:center;
- width:35px;
- display: block;
- font-family: 'cambria';
- letter-spacing:1px;
- line-height:13px;
- padding-top:1px;
- text-transform:uppercase;
- font-size:8px;
- letter-spacing:1px;
- margin-left:0px;
- margin-top: 4px;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -ms-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
- text-shadow:20px 0px transparent, -20px 0px transparent;
- }
- .nav a:hover {
- color: {color:nav link hover};
- background-color:{color:nav link background hover};
- border-bottom:1px solid {color:nav link background hover};
- text-shadow:0px 0px {color:nav link hover}, -0px 0px {color:nav link hover};
- }
- .picture img {
- margin-left:-3px;
- border: 1px solid {color:sidebar borders};
- padding:4px;
- width:130px;
- background-color:{color:sidebar bg};
- }
- #bordo {width:158px;
- height:1px;
- background-color:{color:sidebar borders};
- margin-top:25px;}
- .titolo {
- color: {color:title1};
- border-left: 1px solid {color:sidebar borders};
- border-right: 1px solid {color:sidebar borders};
- font-family: 'Satisfy', cursive;
- margin-top:-13px;
- font-size:16px;
- width: 133px;
- text-align:center;
- background-color:{color:sidebar bg};
- margin-left:30px;
- width:100px;
- }
- .titolo a {color:{color:title1};text-shadow:20px 0px transparent, -20px 0px transparent;}
- .titolo a:hover {color: {color:title1};text-shadow:0px 0px {color:title1}, -0px 0px {color:title1};}
- .titolo2 {
- margin-top:-10px;
- text-transform:uppercase;
- color: {color:title2};
- letter-spacing:1px;
- font-style:normal;
- font-size:8px;
- font-family:'cambria';
- margin-bottom:3px;
- color:{color:title2};
- }
- #description {
- width: 150px;
- text-align: justify;
- font-family: 'georgia';
- font-size: 8px;;
- letter-spacing:1px;
- line-height:12px;
- padding-right:7px;
- position:relative;
- margin-top:0px;
- padding-top:10px;
- color:{color:description};
- font-style:italic;
- }
- .pagination { text-align:center;
- padding-top:5px;
- font-style:italic;
- color: {color:pagination};
- text-decoration:none;
- font-family: 'georgia';
- font-size: 8px;
- letter-spacing:1px;
- margin-top:15px;
- width:155px;
- border-top: 1px solid {color:sidebar borders};
- color: {color:pagination};
- font-weight:bold;
- }
- .pagination a {
- color: {color:pagination};
- text-decoration:none;
- font-weight:normal;
- }
- .pagination a:hover{
- color: {color:pagination};
- text-decoration:underline;
- }
- /* fine sidebar*/
- /* inizio dei post */
- #post {
- width:500px;
- text-align:justify;
- margin-bottom:60px;
- }
- #entries {
- padding-right:20px;
- margin-left:500px;
- width:500px;
- {block:IfHeader}
- margin-top:120px;{/block:IfNotHeader}
- position:absolute;
- margin-bottom: 40px;
- }
- blockquote {
- width:495px;
- margin-left:0px;
- padding-left:5px;
- border-left:1px solid {color:links};
- }
- blockquote blockquote {
- width:485px;
- padding-left:5px;
- border-left:1px solid {color:links};
- }
- .titolopost {
- color:{color:post title};
- font-family: 'Satisfy', cursive;
- text-align:center;
- font-size:15px;
- text-decoration:none;
- }
- .titolopost a {
- color:{color:post title};
- font-family: 'Satisfy', cursive;
- text-align:center;
- font-size:15px;
- text-decoration:none;}
- #virg {
- font-size:60px;
- height:20px;
- font-family:'georgia';
- color:#ddd;
- font-style:italic;
- z-index:0;
- }
- #citaz {
- width:490px;
- margin-left:15px;
- font-style:italic;
- font-family:'georgia';
- font-size:9px;
- text-align:left;
- letter-spacing:1px;
- }
- #source, #source a {
- margin-top:10px;
- text-align:center;
- text-transform:uppercase;
- font-size:8px;
- letter-spacing:1px;
- margin-right:0px;
- padding-bottom:0px;
- font-family:'calibri';
- }
- /* chat */
- .chat ul {
- list-style-type: none;
- width: 500px;
- display: block;
- margin: auto;
- padding: 0px;
- letter-spacing: 1px;
- text-transform: uppercase;
- }
- .odd {
- padding: 3px;
- background-color: {color:chat};
- font-size: 8px;
- color:{color:chat text};
- }
- .even {
- padding: 3px;
- font-size: 8px;
- }
- /* audio */
- #audio {
- width:500px;
- height:70px;
- margin-bottom:0px;
- }
- .artcover {
- width:70px;
- height:70px;
- position:absolute;
- }
- .artcover img {
- width:70px;
- height:70px;
- float:left;
- }
- .player {
- position:absolute;
- z-index:1;
- width:60px;
- height:60px;
- margin-top:5px;
- margin-left:5px;
- display:block;
- opacity:0.7;
- -webkit-transition:all 0.4s;
- -moz-transition:all 0.4s;
- -o-transition:all 0.4s;
- -ms-transition: all 0.4s;
- transition:all 0.5s;
- background:#fff;
- }
- .player:hover {
- -webkit-transition:all 0.4s;
- -moz-transition:all 0.4s;
- -o-transition:all 0.4s;
- -ms-transition: all 0.4s;
- transition:all 0.4s;
- opacity:0.5;
- }
- .audioplayer {
- width:24px;
- height:24px;
- margin-top:14px;
- margin-left:13px;
- overflow:hidden;
- padding:3px;
- }
- .audioinfo {
- color:{color:post title};
- width:422px;
- height:52px;
- margin-left:78px;
- display:block;
- padding-top:18px;
- font-size:11px;
- letter-spacing:1px;
- text-transform:uppercase;
- text-align:left;
- }
- .audioinfo b {
- font-weight:normal;
- color:{color:text};
- text-transform:none;
- font-family:'satisfy';
- font-size:12px;
- letter-spacing:1px;
- }
- /* messaggio */
- #domanda {
- text-align:justify;
- text-transform:uppercase;
- letter-spacing:1px;
- font-size:8px;
- font-family:'calibri';
- width:500px;
- display:block;
- float:center;
- }
- #chied {width:500px;}
- .asker {
- width:450px;
- margin-top:20px;
- font-family:'georgia';
- text-align:right;
- text-transform:lowercase;
- color: {color:text};
- font-size:13px;
- font-style:italic;
- font-weight:normal;
- border-bottom: 3px double {color:borders};
- margin-bottom:22px;
- padding-right:6px;
- background-color: {color:ask bg};
- }
- .askerimg img {
- border:2px solid {color:borders};
- width:40px;
- height:40px;
- float:right;
- margin-top:-52px;
- }
- .askerimg {margin-bottom:10px;}
- .risp {
- text-transform:uppercase;
- letter-spacing:1px;
- font-size:8px;
- font-family:'calibri';
- }
- ol {
- margin-top:30px;
- list-style-type: none;
- font-size:8px;
- text-transform: uppercase;
- width:500px;}
- ol.notes li {
- width:500px;
- padding: 2px;
- padding-bottom:5px;
- margin: 0 0 0px -35px;}
- ol.notes li:hover {
- }
- ol.notes li img {
- width:15px;
- padding-right: 10px;
- margin-bottom: 0px;
- opacity: 0.85;
- filter:alpha(opacity=85); }
- ol.notes li img:hover {
- opacity: 1;
- filter:alpha(opacity=100); }
- /**Post Info, Notes**/
- #postinfo {
- margin-top:20px;
- width:500px;
- font-size:8px;
- font-style:normal;
- text-transform:uppercase;
- letter-spacing:1px;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- font-style:italic;
- color:{color:permalink};
- border-top:1px solid {color:borders};
- }
- #postinfo a {
- color:{color:permalink};
- }
- .date {
- background-color:{color:permalink bg};
- color:{color:permalink};
- height:0px;
- border-top:3px double {color:borders};
- border-bottom:3px double {color:borders};
- text-align:center;
- overflow:hidden;
- opacity:0;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- #post:hover .date {
- height:12px;
- opacity:1;
- margin-bottom:5px;
- }
- #post:hover #postinfo {
- border-top:1px solid transparent;
- }
- .tags {
- width:500px;
- font-size:8px;
- font-style:normal;
- text-transform:uppercase;
- letter-spacing:1px;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- font-style:italic;
- color:{color:permalink};
- text-align:justify;
- }
- .tags a {
- color:{color:permalink};
- }
- #crd {position: fixed; right:10px; bottom:10px; text-transform:uppercase;font-weight:bold; font-style:normal; font-family:'calibri'; letter-spacing:3px; font-size:9px; background-color:#777; width:18px; height:18px; line-height:18px; -webkit-border-radius: 4px; border-radius: 4px;}
- #crd a {color:#fff; padding:2px;}
- {CustomCSS}
- </style>
- </head>
- <body>
- {block:IfHeader}
- <div id="topbar">
- <div id="toppic"><img src="{image:header}"></div>
- <div id="sticker">{text:header text 1}
- <div class="toptitle2">{text:header text 2}</div>
- </div>
- </div>
- {/block:IfHeader}
- <div id="sidebar">
- <div class="picture"><img src="{image:Sidebar}" /></div>
- <div class="nav">
- <a href="/" title="home">{text:home link}</a>
- <a href="/ask" title="message">{text:ask link}</a>
- <a href="{text:link1 url}" title="{text:link1 hover}">{text:link1}</a>
- <a href="{text:link2 url}" title="{text:link2 hover}">{text:link2}</a>
- <a href="{text:link3 url}" title="{text:link3 hover}">{text:link3}</a>
- </div>
- <div id="bordo"></div>
- <div class="titolo"><a href="/">{Title}</a><div class="titolo2">{text:Title2}</div></div>
- <div id="description"><div class="des">{Description}</div></div>
- <div class="pagination">
- {block:Pagination}
- {block:JumpPagination length="5"}
- {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 href="{NextPage}">→</a>
- {/block:NextPage}
- {/block:Pagination}
- {/block:Pagination}
- </div>
- </div>
- <div id="entries">
- {block:Posts}
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->
- {block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- <div id="post">
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-500}" />{LinkCloseTag}
- {block:IfShowCaption}<div class="cap">
- {block:Caption}{Caption}{/block:Caption}
- </div>{/block:IfShowCaption}
- {/block:Photo}
- {block:Photoset}
- {Photoset-500}
- {block:IfShowCaption}<div class="cap">
- {block:Caption}{Caption}{/block:Caption}
- </div>{/block:IfShowCaption}
- {/block:Photoset}
- {block:Video}
- {Video-500}
- {block:IfShowCaption}<div class="cap">
- {block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
- </div>
- {/block:Video}
- {block:Audio}
- <div id="audio">
- <div class="artcover"><img src="http://static.tumblr.com/liul60i/IcMmdl9id/nmusic2.png"></div>{block:AlbumArt}<div class="artcover"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
- <div class="player">
- <div class="audioplayer">{AudioPlayerWhite}</div></div>
- <div class="audioinfo">
- {block:TrackName}<b>{TrackName}</b>{/block:TrackName}
- <div style="font-size:8px; margin-top:5px;">
- {block:Artist}{Artist}{/block:Artist}{block:Album} - {Album}{/block:Album} ({FormattedPlayCount})
- </div></div></div>
- {block:IfShowCaption}<div class="cap">
- {block:Caption}{Caption}{/block:Caption}
- </div>{/block:IfShowCaption}
- {/block:Audio}
- {block:Quote}<div id="virg">“</div><div id="citaz">{Quote}</div>{block:Source}<div id="source">{Source}</div>{/block:Source}{/block:Quote}
- {block:Text}
- {block:Title}<div class="titolopost">{Title}</div>{/block:Title}
- {Body}
- {/block:Text}
- {block:Answer}<div id="domanda">{Question}</div><div id="chied"><div class="asker">{Asker}</div><div class="askerimg"><img src="{AskerPortraitURL-40}" /></div></div>
- <div class="risp">
- {Answer}</div>
- {/block:Answer}
- {block:Chat}
- <div class="post chat">
- <div style="margin-bottom: 5px;">
- {block:Title}
- <h2>{Title}</h2>
- {/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="{Alt} user_{UserNumber}">
- {block:Label}
- <span class="label"><b><i>{Label}</i></b></span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- </div>
- </div>
- {/block:Chat}
- {block:Link}<div class="titolopost">
- <a href="{URL}" >{Name} →</a></div>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- <div id="postinfo">
- <div class="date">{block:Date}<a href="{Permalink}">posted {TimeAgo}</a>{/block:Date}
- {block:NoteCount}<a href="{Permalink}">with {NoteCountWithLabel} </a>{/block:NoteCount}
- {block:RebloggedFrom}
- <a href="{ReblogParentURL}">(via {ReblogParentName})</a>
- {/block:RebloggedFrom} + <a href="{ReblogURL}" title="reblog this post">reblog</a> <div class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" >♡</div></div>
- {block:HasTags}
- <div class="tags">{block:Tags}<a href="{TagURL}">#{Tag} </a> {/block:Tags}</div> {/block:HasTags}
- </div>
- </div><!--- end of post --->
- {/block:Posts}
- <div id="not">{block:PostNotes}{PostNotes}</div>{/block:PostNotes}</div>
- </div>
- <div id="crd"><a href="http://teen-wolf.tumblr.com">th</a></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment