Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <!-- Essential is our bare bones boilerplate for Tumblr theme development. From http://buildthemes.tumblr.com/
- With modifications -->
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0, width=device-width" />
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link href="http://static.tumblr.com/wgijwsy/k1Hm9ei8b/normalize.css" rel="stylesheet" type="text/css" />
- <style>
- body {
- background: #ddd;
- }
- .entry {
- background: #fff;
- padding: 20px;
- margin: 20px;
- width: 500px;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <!--Masthead-->
- <header id="masthead">
- <!--Details: portrait, title and description-->
- <div id="site_name">
- <img src="{PortraitURL-128}"/>
- <h1><a href="/" title="{lang:Home}">{Title}</a></h1>
- {block:Description}
- <p>{Description}</p>
- {block:Description}
- </div>
- <!--Navigation-->
- <nav>
- <ul>
- {block:HasPages}
- {block:Pages}
- <li> <a href="{URL}">{Label}</a></li>
- {/block:Pages}
- {/block:HasPages}
- {block:SubmissionsEnabled}
- <li> <a href="/submit">{SubmitLabel}</a></li>
- {/block:SubmissionsEnabled}
- {block:AskEnabled}
- <li> <a href="/ask">{AskLabel}</a></li>
- {/block:AskEnabled}
- </ul>
- </nav>
- </header>
- <!--Content holder-->
- <div id="content">
- {block:Posts}
- <article class="entry">
- <!--Unique code for each post type-->
- {block:Text}
- <div class="text">
- {block:Title}<h1 class="title"><a href="{Permalink}">{Title}</a></h1>{/block:Title}
- {Body}
- </div>
- {/block:Text}
- {block:Photo}
- <div class="photo">
- {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- </div>
- {/block:Photo}
- {block:Photoset}
- <div class="photoset">
- {Photoset-500}
- {block:Caption}{Caption}{/block:Caption}
- </div>
- {/block:Photoset}
- {block:Panorama}
- <div class="panorama">
- {LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}" />{LinkCloseTag}
- {block:Caption}{Caption}{/block:Caption}
- </div>
- {/block:Panorama}
- {block:Quote}
- <div class="quote">
- <blockquote>{Quote}</blockquote>
- {block:Source}<cite> {Source} </cite>{/block:Source}
- </div>
- {/block:Quote}
- {block:Link}
- <div class="link">
- <h1 class="title"><a href="{URL}">{Name}</a></h1>
- {block:Description}{Description}{/block:Description}
- </div>
- {/block:Link}
- {block:Chat}
- <div class="chat">
- <ul>
- {block:Lines}<li class="{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}<p> {Line} </p></li>{/block:Lines}
- </ul>
- </div>
- {/block:Chat}
- {block:Audio}
- <div class="audio">
- {block:TrackName}<h1 class="title"><a href="{Permalink}">{TrackName}</a></h1>{/block:TrackName}
- {block:AlbumArt}<img src="{AlbumArtURL}" width="500" height="500"/>{/block:AlbumArt}
- <div class="player">{AudioPlayerBlack}</div>
- {block:Caption}{Caption}{/block:Caption}
- </div>
- {/block:Audio}
- {block:Video}
- <div class="video">
- <div class="video-player">{Video-500}</div>
- {block:Caption}{Caption}{/block:Caption}
- </div>
- {/block:Video}
- {block:Answer}
- <div class="answer">
- <h1 class="title">{Question}</h1>
- <div class="user">
- <img src="{AskerPortraitURL-96}"/>
- <p>{Asker}</p>
- </div>
- {Answer}
- </div>
- {/block:Answer}
- {block:Date}
- <footer class="metadata">
- <!--Permalink, note count and content source renders on homepage + permalink pages-->
- <ul class="index">
- <li><a href="{Permalink}"> <time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}">{DayOfMonth} {Month} {Year}</time> </a></li>
- {block:NoteCount}<li><a class="notecount" href="{Permalink}#notes">{NoteCountWithLabel}</a></li>{/block:NoteCount}
- {block:ContentSource}
- <li><a href="{SourceURL}">{lang:Source}:{block:NoSourceLogo}{SourceTitle}{/block:NoSourceLogo}
- {block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}"height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}</a></li>
- {/block:ContentSource}
- </ul>
- <!--Tags and post notes only shown on permalink-->
- {block:PermalinkPage}
- {block:HasTags}
- <ul class="tags">
- {block:Tags}<li><a href="{TagURL}">{Tag}</a> </li>{/block:Tags}
- </ul>
- {/block:HasTags}
- {block:PostNotes}
- <div id="notes">
- {PostNotes}
- </div>
- {/block:PostNotes}
- {/block:PermalinkPage}
- </footer>
- {/block:Date}
- </article>
- {/block:Posts}
- <!--Close of article-->
- </div>
- <!--Pagination: previous/next page links-->
- {block:Pagination}
- <nav id="pagination">
- <ul>
- {block:PreviousPage}<li><a href="{PreviousPage}">Previous page</a></li>{/block:PreviousPage}
- {block:NextPage}<li><a id="next" href="{NextPage}">Next page</a></li>{/block:NextPage}
- </ul>
- </nav>
- {/block:Pagination}
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment