Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--
- Field-Object Theme
- by Sean Bryen
- http://github.com/field-object/field-object
- Released under the MIT license
- http://opensource.org/licenses/MIT
- share
- -->
- <html class="no-js" lang="{block:English}en{/block:English}{block:French}fr{/block:French}{block:German}de{/block:German}{block:Italian}it{/block:Italian}{block:Japanese}ja{/block:Japanese}{block:Turkish}tr{/block:Turkish}{block:Spanish}es{/block:Spanish}{block:Russian}ru{/block:Russian}{block:Polish}pl{/block:Polish}{block:PortuguesePT}pt{/block:PortuguesePT}{block:PortugueseBR}pt-BR{/block:PortugueseBR}{block:Dutch}nl{/block:Dutch}">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width">
- <title>{Title}{block:PostSummary}: {PostSummary}{/block:PostSummary}</title>
- {block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
- <link rel="apple-touch-icon" href="{PortraitURL-128}">
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
- <script type="text/javascript" src="http://static.tumblr.com/vmi5hwb/Wgnn0ykdk/jquery.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/vmi5hwb/2YVn0ykem/jquery-ui.min.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/vmi5hwb/JKzmw5bg3/masonry.pkgd.min.js"></script>
- <!-- jknav with edits/hacks specific to this theme -->
- <script type="text/javascript" src="http://static.tumblr.com/vmi5hwb/692n0ylfl/jquery.jknav.field-object.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/vmi5hwb/r83mw2v6q/jquery.hotkeys.js"></script>
- <!-- Theme-specific js -->
- <script>
- // Pre-load image button background pngs
- function preloadImages(array) {
- if (!preloadImages.list) {
- preloadImages.list = [];
- }
- for (var i = 0; i < array.length; i++) {
- var img = new Image();
- img.src = array[i];
- preloadImages.list.push(img);
- }
- }
- function fixVimeo() {
- /*
- Better Vimeo Embeds 2.1 by Matthew Buchanan
- Modelled on the Vimeo Embedinator Script
- http://mattbu.ch/tumblr/vimeo-embeds/
- Released under a Creative Commons attribution license:
- http://creativecommons.org/licenses/by/3.0/nz/
- */
- var color = "ffffff";
- var opts = "title=0&byline=0&portrait=0";
- $("iframe[src^='http://player.vimeo.com']").each(function() {
- var src = $(this).attr("src");
- var w = $(this).attr("width");
- var h = $(this).attr("height");
- if (src.indexOf("?") == -1) {
- $(this).replaceWith(
- "<iframe src='"+src+"?"+opts+"&color="+
- color+"' width='"+w+"' height='"+h+
- "' frameborder='0'></iframe>"
- );
- }
- });
- $("object[data^='http://vimeo.com']").each(function() {
- var $obj = $(this);
- var data = $obj.attr("data");
- var temp = data.split("clip_id=")[1];
- var id = temp.split("&")[0];
- var server = temp.split("&")[1];
- var w = $obj.attr("width");
- var h = $obj.attr("height");
- $obj.replaceWith(
- "<iframe src='http://player.vimeo.com/video/"
- +id+"?"+server+"&"+opts+"&color="+color+
- "' width='"+w+"' height='"+h+
- "' frameborder='0'></iframe>"
- );
- });
- }
- $(document).ready(function() {
- // Place target anchor for jknav when navigating to the previous page, then navigate to it
- $('article.post:last').before('<a class="jknav-back-target default" name="jknav-back-target"></a>');
- $('#body.masonry-page .jknav-back-target.default').remove();
- $('#body.permalink-page .jknav-back-target.default').remove();
- if(window.location.href.indexOf('#jknav-back-target') > -1) {
- window.location = window.location;
- }
- // Remove image captions and metadata from masonry pages
- // Inelegant to put it kindly, but necessitated by lack of {!block} or if-else selectors to exclude non-masonry pages
- $('#body.masonry-page .large-video').remove();
- $('#body.masonry-page section.caption').remove();
- $('#body.masonry-page .post.photo .post-meta').remove();
- $('#body.masonry-page .post.photoset .post-meta').remove();
- $('#body.masonry-page .post.panorama .post-meta').remove();
- // j/k navigation (next/previous post)
- $('article.post').jknav();
- $.jknav.init({
- speed: 0,
- circular: false,
- reevaluate: true
- });
- // Pre-load image button background pngs
- var pngs = [
- 'http://static.tumblr.com/vmi5hwb/4Bsn0x39b/grey70a.png',
- 'http://static.tumblr.com/vmi5hwb/9OOn0x3bz/grey50a.png'
- ];
- preloadImages(pngs);
- // Masonry
- $container = $('#masonry-container');
- $(window).load(function() {
- $container.masonry({
- itemSelector: 'article.post',
- columnWidth: 400,
- gutter: 35
- });
- $('#load-gif').remove();
- $container.toggleClass('loaded');
- });
- // Custom keybinds
- document.onkeydown = function(e) {
- e = e || window.event;
- switch(e.which || e.keyCode) {
- case 78: // n
- if ($('input:focus, textarea:focus').length===0) {
- var next = $('a#next').attr('href');
- if (next) {
- window.location = next;
- }
- }
- return;
- break;
- case 77: // m
- if ($('input:focus, textarea:focus').length===0) {
- var prev = $('a#prev').attr('href');
- if (prev) {
- window.location = prev;
- }
- }
- return;
- break;
- case 83: // s (Note: char code for s is not consistent across modern browsers. This works for Chrome.)
- if ($('input:focus, textarea:focus').length===0) {
- event.preventDefault();
- $('#search-query').focus();
- }
- default: return;
- }
- event.preventDefault();
- }
- // Custom tag menus
- $('.custom-tags').each(function() {
- var $customTags = $(this);
- var $tagList = $(this).children('.custom-tags-string');
- tags = $tagList.text().split(/,\s*/);
- $tagList.replaceWith($('<ul class="menu custom-tag-list"/>'));
- tags.forEach(function(tag) {
- $customTags.children('ul').append('<li><a href="/tagged/' + tag + '">' + tag + '</a></li>');
- });
- });
- $('.custom-tags').fadeIn(200);
- $('#link-list').fadeIn(200);
- $('.custom-tags-heading').click(function() {
- $(this).siblings('ul').slideToggle(100);
- $(this).parent().toggleClass('open');
- });
- fixVimeo();
- // Fixes for iOS: blur form when user taps outside it
- $('html.touch').click(function() {
- document.activeElement.blur();
- });
- $('html.touch form').click(function() {
- event.stopPropagation();
- });
- });
- </script>
- <meta name="if:Use Masonry on tag pages" content="1">
- <meta name="if:Use Masonry on search pages" content="1">
- <meta name="if:Fade in post metadata" content="1">
- <meta name="if:Show theme link" content="1">
- <meta name="if:Show keybind legend" content="1">
- <meta name="image:Logo" content=""/>
- <meta name="select:Menu position" content="fixed-menu" title="Fixed"/>
- <meta name="select:Menu position" content="absolute-menu" title="Scroll with page"/>
- <meta name="if:Show Date" content="1">
- <!-- INFINITE SCROLL -->
- <meta name="if:InfiniteScroll" content="0">
- <meta name="text:Max post width" content=""/>
- <meta name="text:Tag List 1 heading" content=""/>
- <meta name="text:Tag List 1 comma sep" content=""/>
- <meta name="text:Tag List 2 heading" content=""/>
- <meta name="text:Tag List 2 comma sep" content=""/>
- <meta name="text:Tag List 3 heading" content=""/>
- <meta name="text:Tag List 3 comma sep" content=""/>
- <meta name="text:Tag List 4 heading" content=""/>
- <meta name="text:Tag List 4 comma sep" content=""/>
- <meta name="text:Tag List 5 heading" content=""/>
- <meta name="text:Tag List 5 comma sep" content=""/>
- <meta name="text:Link 1 name" content=""/>
- <meta name="text:Link 1 URL" content=""/>
- <meta name="text:Link 2 name" content=""/>
- <meta name="text:Link 2 URL" content=""/>
- <meta name="text:Link 3 name" content=""/>
- <meta name="text:Link 3 URL" content=""/>
- <meta name="text:Link 4 name" content=""/>
- <meta name="text:Link 4 URL" content=""/>
- <meta name="text:Link 5 name" content=""/>
- <meta name="text:Link 5 URL" content=""/>
- <meta name="text:Photoset Spacing" content="0">
- <meta name="text:Google Analytics Code" content="">
- <meta name="text:Disqus Shortname" content="">
- <meta name="text:Footer Text" content="Footer Text">
- <meta name="text:Load More Posts" content="Load More Posts">
- <meta name="text:Instagram Token" content="">
- <meta name="text:Facebook URL" content="">
- <meta name="text:Twitter URL" content="">
- <meta name="text:Google Plus URL" content="">
- <meta name="text:YouTube URL" content="">
- <meta name="text:Soundcloud URL" content="">
- <meta name="text:Github URL" content="">
- <meta name="text:Dribbble URL" content="">
- <meta name="text:Behance URL" content="">
- <meta name="text:Vimeo URL" content="">
- <meta name="text:Pinterest URL" content="">
- <meta name="text:Instagram URL" content="">
- <meta name="text:Flickr URL" content="">
- <meta name="text:Linkedin URL" content="">
- <meta name="text:Foursquare URL" content="">
- <meta name="text:My Website URL" content="">
- <meta name="if:Share Post Links" content="1">
- <meta name="if:Share Post On Twitter" content="1">
- <meta name="if:Show Post Author" content="0">
- <meta name="if:Share Post On Facebook" content="1">
- <meta name="if:Share Post On Google" content="1">
- <meta name="if:Share Post On Pinterest" content="1">
- <meta name="if:White Post Links" content="0">
- <meta name="text:Google Analytics ID" content=""/>
- {block:IfInfiniteScroll}
- <script type="text/javascript" src="http://static.tumblr.com/okik5op/i7Dn9keqq/infinitescrolling.js"></script>
- {/block:IfInfiniteScroll}
- <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'><link href="style.css" rel="stylesheet" type="text/css"/>
- <style type="text/css">
- /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
- /**
- * 1. Set default font family to sans-serif.
- * 2. Prevent iOS text size adjust after orientation change, without disabling
- * user zoom.
- */
- html {
- font-family: sans-serif; /* 1 */
- -ms-text-size-adjust: 100%; /* 2 */
- -webkit-text-size-adjust: 100%; /* 2 */
- }
- /**
- * Remove default margin.
- */
- body {
- margin: 0;
- }
- /* HTML5 display definitions
- ========================================================================== */
- /**
- * Correct `block` display not defined in IE 8/9.
- */
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- main,
- nav,
- section,
- summary {
- display: block;
- }
- /**
- * 1. Correct `inline-block` display not defined in IE 8/9.
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
- */
- audio,
- canvas,
- progress,
- video {
- display: inline-block; /* 1 */
- vertical-align: baseline; /* 2 */
- }
- /**
- * Prevent modern browsers from displaying `audio` without controls.
- * Remove excess height in iOS 5 devices.
- */
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- /**
- * Address `[hidden]` styling not present in IE 8/9.
- * Hide the `template` element in IE, Safari, and Firefox < 22.
- */
- [hidden],
- template {
- display: none;
- }
- /* Links
- ========================================================================== */
- /**
- * Remove the gray background color from active links in IE 10.
- */
- a {
- background: transparent;
- }
- /**
- * Improve readability when focused and also mouse hovered in all browsers.
- */
- a:active,
- a:hover {
- outline: 0;
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * Address styling not present in IE 8/9, Safari 5, and Chrome.
- */
- abbr[title] {
- border-bottom: 1px dotted;
- }
- /**
- * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
- */
- b,
- strong {
- font-weight: bold;
- }
- /**
- * Address styling not present in Safari 5 and Chrome.
- */
- dfn {
- font-style: italic;
- }
- /**
- * Address variable `h1` font-size and margin within `section` and `article`
- * contexts in Firefox 4+, Safari 5, and Chrome.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /**
- * Address styling not present in IE 8/9.
- */
- mark {
- background: #ff0;
- color: #000;
- }
- /**
- * Address inconsistent and variable font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` affecting `line-height` in all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sup {
- top: -0.5em;
- }
- sub {
- bottom: -0.25em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Remove border when inside `a` element in IE 8/9.
- */
- img {
- border: 0;
- }
- /**
- * Correct overflow displayed oddly in IE 9.
- */
- svg:not(:root) {
- overflow: hidden;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * Address margin not present in IE 8/9 and Safari 5.
- */
- figure {
- margin: 1em 40px;
- }
- /**
- * Address differences between Firefox and other browsers.
- */
- hr {
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- height: 0;
- }
- /**
- * Contain overflow in all browsers.
- */
- pre {
- overflow: auto;
- }
- /**
- * Address odd `em`-unit font size rendering in all browsers.
- */
- code,
- kbd,
- pre,
- samp {
- font-family: monospace, monospace;
- font-size: 1em;
- }
- /* Forms
- ========================================================================== */
- /**
- * Known limitation: by default, Chrome and Safari on OS X allow very limited
- * styling of `select`, unless a `border` property is set.
- */
- /**
- * 1. Correct color not being inherited.
- * Known issue: affects color of disabled elements.
- * 2. Correct font properties not being inherited.
- * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- color: inherit; /* 1 */
- font: inherit; /* 2 */
- margin: 0; /* 3 */
- }
- /**
- * Address `overflow` set to `hidden` in IE 8/9/10.
- */
- button {
- overflow: visible;
- }
- /**
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
- * All other form control elements do not inherit `text-transform` values.
- * Correct `button` style inheritance in Firefox, IE 8+, and Opera
- * Correct `select` style inheritance in Firefox.
- */
- button,
- select {
- text-transform: none;
- }
- /**
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
- * and `video` controls.
- * 2. Correct inability to style clickable `input` types in iOS.
- * 3. Improve usability and consistency of cursor style between image-type
- * `input` and others.
- */
- button,
- html input[type="button"], /* 1 */
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: button; /* 2 */
- cursor: pointer; /* 3 */
- }
- /**
- * Re-set default cursor for disabled elements.
- */
- button[disabled],
- html input[disabled] {
- cursor: default;
- }
- /**
- * Remove inner padding and border in Firefox 4+.
- */
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
- /**
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in
- * the UA stylesheet.
- */
- input {
- line-height: normal;
- }
- /**
- * It's recommended that you don't attempt to style these elements.
- * Firefox's implementation doesn't respect box-sizing, padding, or width.
- *
- * 1. Address box sizing set to `content-box` in IE 8/9/10.
- * 2. Remove excess padding in IE 8/9/10.
- */
- input[type="checkbox"],
- input[type="radio"] {
- box-sizing: border-box; /* 1 */
- padding: 0; /* 2 */
- }
- /**
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
- * `font-size` values of the `input`, it causes the cursor style of the
- * decrement button to change from `default` to `text`.
- */
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
- * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
- * (include `-moz` to future-proof).
- */
- input[type="search"] {
- -webkit-appearance: textfield; /* 1 */
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box; /* 2 */
- box-sizing: content-box;
- }
- /**
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
- * Safari (but not Chrome) clips the cancel button when the search input has
- * padding (and `textfield` appearance).
- */
- input[type="search"]::-webkit-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * Define consistent border, margin, and padding.
- */
- fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- /**
- * 1. Correct `color` not being inherited in IE 8/9.
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
- */
- legend {
- border: 0; /* 1 */
- padding: 0; /* 2 */
- }
- /**
- * Remove default vertical scrollbar in IE 8/9.
- */
- textarea {
- overflow: auto;
- }
- /**
- * Don't inherit the `font-weight` (applied by a rule above).
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
- */
- optgroup {
- font-weight: bold;
- }
- /* Tables
- ========================================================================== */
- /**
- * Remove most spacing between table cells.
- */
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- .clearfix {
- zoom:1;
- }
- .clearfix:before,
- .clearfix:after {
- content: "\0020";
- display: block;
- height: 0;
- overflow: hidden;
- }
- .clearfix:after {
- clear: both;
- }
- body {
- font-size:0.85em;
- font-family:Inconsolata;
- font-weight:400;
- line-height:1.4em;
- color: black;
- }
- img, video, object, embed {
- max-width: 100%;
- height: auto !important;
- }
- h1, h2, h3, h4, h5, h6 {
- font-size: 1em;
- font-family:Inconsolata;
- font-weight:400;
- }
- a, a:visited {
- text-decoration: none;
- color: inherit;
- }
- html a:hover {
- color:#63F;
- }
- header {
- position: absolute;
- top: 0;
- left: 0;
- width: 140px;
- min-height: 100vh;
- padding: 0 35px;
- z-index: 2;
- overflow: visible;
- }
- .title{
- font-size: 1.4em;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-weight:bold;
- }
- .fixed-menu header {
- position: fixed;
- height: 100vh;
- overflow-x: hidden;
- overflow-y: auto;
- }
- #logo {
- font-size: inherit;
- margin: 35px 0 0 0;
- line-height: 1;
- }
- #description {
- font-size:0.85em;
- font-family:Inconsolata;
- font-weight:400;
- line-height:1.2em;
- color: black;
- margin: 1rem 0 40px 0;
- }
- #description a,
- #description a:visited {
- color: black;
- }
- .menu {
- list-style-type: none;
- padding-left: 0;
- margin: 1.25rem 0;
- }
- #search {}
- #search-query {
- font-size: inherit;
- border: none;
- padding: 10px;
- margin: -10px;
- width: 100%;
- background: none;
- box-shadow: none;
- border-radius: 0;
- -webkit-appearance: none;
- transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, box-shadow 50ms ease;
- -webkit-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease;
- -moz-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, -moz-box-shadow 50ms ease;
- -o-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, -o-box-shadow 50ms ease;
- }
- @-moz-document url-prefix() {
- #search-query {
- padding: 10px 10px 10px 9px;
- }
- }
- html.no-touch #search-query:hover {
- cursor: pointer;
- }
- #search-query:focus {
- font-size: 1rem;
- width: 100%;
- margin-bottom: 1.25rem;
- background-color: white;
- cursor: auto;
- outline: none;
- transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, box-shadow 50ms ease;
- -webkit-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease;
- -moz-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, -moz-box-shadow 50ms ease;
- -o-transition: font-size 50ms ease, width 50ms ease, margin-bottom 50ms ease, background-color 50ms ease, -o-box-shadow 50ms ease;
- }
- #logo+.menu #search-query:focus {
- margin-top: 4px;
- transition: margin-top 50ms ease;
- -webkit-transition: margin-top 50ms ease;
- -moz-transition: margin-top 50ms ease;
- -o-transition: margin-top 50ms ease;
- }
- #search-query::-webkit-input-placeholder {
- color: black;
- }
- #search-query:focus::-webkit-input-placeholder {
- color: #c0c0c0;
- }
- #search-query:-moz-placeholder {
- color: black;
- }
- #search-query:focus:-moz-placeholder {
- color: #c0c0c0;
- }
- #search-query::-moz-placeholder {
- color: black;
- opacity: 1 !important;
- }
- #search-query:focus::-moz-placeholder {
- color: #c0c0c0;
- }
- #search-query:-ms-input-placeholder {
- color: black;
- }
- #search-query:focus:-ms-input-placeholder {
- color: #c0c0c0;
- }
- .custom-tags {
- display: none;
- transition: margin-top 200ms ease;
- -webkit-transition: margin-top 200ms ease;
- -moz-transition: margin-top 200ms ease;
- -o-transition: margin-top 200ms ease;
- }
- .custom-tags.open {
- margin-top: 1.25rem;
- transition: margin-top 200ms ease;
- -webkit-transition: margin-top 200ms ease;
- -moz-transition: margin-top 200ms ease;
- -o-transition: margin-top 200ms ease;
- }
- .custom-tags-heading {
- display: inline;
- font-size: inherit;
- font-weight: normal;
- }
- html.no-touch .custom-tags-heading:hover {
- cursor: pointer;
- }
- .custom-tags-heading:hover:after {
- content: " +";
- }
- .custom-tags.open .custom-tags-heading:hover:after {
- content: " -";
- }
- .custom-tag-list.menu {
- margin-top: 1.25rem 0;
- color: #939393;
- }
- .custom-tags-heading+.custom-tag-list.menu {
- display: none;
- margin-top: 0;
- }
- #link-list {
- display: none;
- }
- footer {
- line-height: 1rem;
- margin: 20px -35px 0 -35px;
- padding: 20px 35px 35px 35px;
- color: #dfdfdf;
- transition: color 400ms ease;
- -webkit-transition: color 400ms ease;
- -moz-transition: color 400ms ease;
- -o-transition: color 400ms ease;
- }
- footer:hover {
- color: black;
- transition: color 200ms ease;
- -webkit-transition: color 200ms ease;
- -moz-transition: color 200ms ease;
- -o-transition: color 200ms ease;
- }
- html.touch footer {
- display: none;
- }
- section#body {
- position: absolute;
- top: 0;
- left: 265px;
- padding: 0 35px 75vh 0; /* The excessive bottom padding is a workaround to ensure jknav will always evaluate focus on the last post correctly, and turn to the next page when j is pressed */
- width: calc(100% - 300px); /* Prefer % to vw. Bug in Chrome as of February 2014: vw and vh do not work inside calc(); */
- z-index: 1;
- }
- a.jknav-back-target {
- margin: 0 !important;
- padding: 0 !important;
- background: none !important;
- position: absolute !important;
- }
- section#body.masonry-page,
- section#body.permalink-page {
- padding-bottom: 140px;
- }
- html.touch {
- width: 1000px;
- }
- html.touch section#body {
- width: 735px;
- }
- #masonry-container {
- width: 100%;
- }
- #masonry-container article {
- opacity: 0;
- }
- #masonry-container.loaded article {
- opacity: 1;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- .no-results #load-gif {
- display: none;
- }
- .result {
- margin: 0;
- padding: 35px 0;
- color: #939393;
- width: 500px;
- line-height: 1;
- }
- /* Tumblr inherited */
- .result .search_query,
- .result a,
- .result a:visited {
- color:black;
- text-decoration:none;
- }
- .tag-page .result a:before {
- color:black;
- text-decoration:none;
- content: "";
- }
- article.post {
- margin: 35px 0 0 0;
- min-width: 500px;
- }
- article.post a.next {
- display: none;
- }
- article.post #pagination.permalinks a.next {
- display: inline;
- }
- .permalink-page article.post {
- margin-bottom: 0px;
- }
- section.content {
- font-family:Inconsolata;
- }
- section.content p {
- margin: 1.625rem 0;
- }
- section.content p:first-child {
- margin: 0 0 1.625rem 0;
- }
- section.content blockquote {
- margin: 1.625rem;
- }
- section.content section.caption {
- font-size: 0.65rem;
- letter-spacing:normal;
- font-family:Inconsolata;
- color:#000;
- line-height: 1.3rem;
- }
- section.content section.caption p {
- margin: 0.8125rem 0;
- }
- section.content section.caption p:first-child {
- margin: 0 0 0.8125rem 0;
- }
- section.content section.caption blockquote {
- margin: 0.8125rem;
- }
- section.image-buttons a{
- color:#999;
- text-decoration:none;
- }
- section.image-buttons a:visited {
- color:#999;
- text-decoration:none;
- }
- section.image-buttons a:hover{
- color:#63F;;
- text-decoration:none;}
- section.caption a:hover{
- color:#63F;;
- text-decoration:none;
- font-size: 0.75rem;
- letter-spacing:normal;
- font-family:Georgia, "Times New Roman", Times, serif;
- line-height: 1.3rem;
- }
- section.caption a{
- color:#000;
- text-decoration:none;
- font-size: 0.75rem;
- letter-spacing:normal;
- font-family:Georgia, "Times New Roman", Times, serif;
- line-height: 1.3rem;
- }
- section.caption a:link img{
- border:none;
- text-decoration:none;
- }
- li{
- list-style:none;
- }
- /* BEGIN Text-based post styles */
- article.post.text,
- article.post.quote,
- article.post.chat,
- article.post.answer,
- article.post.link {
- width: 500px;
- padding-left: 35px;
- }
- article.post.text,
- article.post.quote,
- article.post.chat,
- article.post.link {
- padding-top: calc(35px - 0.438em);
- }
- .post.text section.content,
- .post.quote section.content,
- .post.chat section.content,
- .post.answer section.content,
- .post.link section.content {
- font-size: 1rem;
- text-decoration:none;
- line-height: 1.625rem;
- }
- h3.post-title {
- margin-top: 0;
- -webkit-margin-before: 0;
- margin-bottom: 1.625rem;
- }
- .post.text {}
- .post.text ul,
- .post.text ol {
- padding-left: 0;
- }
- .post.text p+ul,
- .post.text p+ol {
- margin-top: -0.8125rem;
- }
- .post.text blockquote {
- font-family:Inconsolata;
- }
- .post.quote {}
- .post.quote blockquote {
- margin: 0;
- }
- .post.quote p:first-child {
- margin-top: 0;
- }
- .post.quote blockquote.short:before,
- .post.quote blockquote p:first-child::before {
- content: "\201C";
- position: absolute;
- left: 28px;
- }
- .post.quote blockquote.short:after,
- .post.quote blockquote p:last-child::after {
- content: "\201D";
- display: inline;
- }
- .post.chat {}
- .post.chat td {
- vertical-align: top;
- padding-bottom:0.9375rem;
- }
- .post.chat tr:last-child td {
- padding-bottom: 0;
- }
- .post.chat td.person {
- text-transform: uppercase;
- font-size: 0.9375em;
- text-align: right;
- padding-right: 0.625rem;
- }
- .post.answer {}
- .asker-portrait {
- float: left;
- }
- .asker-portrait img {
- border-radius: 20px;
- }
- .question-answer {
- margin-left: 58px;
- padding-top: 5px;
- }
- a.asker {
- font-size: 0.875rem;
- }
- .question {
- margin-top: 0.438rem;
- -webkit-margin-before: 0.438rem;
- }
- .answer {
- margin: 1.625rem 0 0 1.625rem;
- }
- .post.answer .post-meta {
- margin-left: 58px;
- }
- .post.link {}
- .link-description {
- font-size: 0.875rem;
- line-height: 1.625rem;
- margin: 10px 0;
- }
- .link-description p {
- margin: 0.8125rem 0;
- }
- .link-description p:first-child {
- margin: 0 0 0.8125rem 0;
- }
- .link-description blockquote {
- margin: 0.8125rem;
- }
- /* END Text-based post styles */
- /* BEGIN Image and embedded media post styles */
- .image-wrapper {
- display: inline-block;
- position: relative;
- max-width: 100%;
- overflow: visible;
- }
- .image-wrapper img {
- display: block;
- }
- .image-link {
- padding: 0 !important;
- margin: 0 !important;
- background: none !important;
- }
- ul.image-buttons{
- position: absolute;
- bottom: 0px;
- right: 17px;
- width: 100%;
- color:#999;
- font-size:14px;
- line-height:22px;
- opacity: 0;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- html.no-touch .image-wrapper:hover ul.image-buttons {
- opacity: 1;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- /* share button */
- /* like_button and reblob_button are Tumblr's classes */
- ul.image-buttons .like_button,
- ul.image-buttons .reblog_button,
- ul.image-buttons .notes-button {
- display: block;
- float: right;
- border-radius: 3px;
- background: none;
- background-image: url('http://static.tumblr.com/vmi5hwb/4Bsn0x39b/grey70a.png');
- background-repeat: repeat;
- padding: 8px;
- margin: 0 0 0 6px;
- line-height: 0;
- opacity: 0.35;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- ul.image-buttons .notes-button {
- color: white !important;
- font: bold 12px/12px arial,serif;
- padding: 9px 8px;
- }
- ul.image-buttons .like_button:hover,
- ul.image-buttons .reblog_button:hover,
- ul.image-buttons .notes-button:hover {
- background: none;
- background-image: url('http://static.tumblr.com/vmi5hwb/9OOn0x3bz/grey50a.png');
- background-repeat: repeat;
- opacity: 1;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- .post.photoset .like_button {
- display: none;
- }
- .post.photoset section.content .image-wrapper:first-child .like_button {
- display: inline-block;
- }
- section.caption {
- max-width: 500px;
- margin: 0px 0;
- }
- html.no-touch .hide-metadata section.caption {
- opacity: 0;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- html.no-touch .hide-metadata.permalink-page section.caption {
- opacity: 1;
- }
- html.no-touch .hide-metadata article:hover section.caption {
- opacity: 1;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- .post.photoset {}
- .post.photoset .image-wrapper {
- margin-top: 12px;
- float: left;
- }
- .post.photoset .image-wrapper:first-child {
- margin-top: 0;
- }
- .post.audio {
- width: 700px;
- }
- /* END Image and embedded media post styles */
- .post-meta {
- color: #939393;
- margin-top: 1.625rem;
- }
- html.no-touch .hide-metadata .post-meta {
- opacity: 0;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- html.no-touch .hide-metadata.permalink-page .post-meta {
- opacity: 1;
- }
- html.no-touch .hide-metadata article:hover .post-meta {
- opacity: 1;
- transition: opacity 200ms ease;
- -webkit-transition: opacity 200ms ease;
- -moz-transition: opacity 200ms ease;
- -o-transition: opacity 200ms ease;
- }
- .post-meta-list,
- .post-tags-list {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .post-meta-list li,
- .post-tags-list li {
- display: inline;
- margin-right: 0.5rem;
- }
- .post-notes {}
- /* Tumblr inherited */
- .post-notes ol.notes {
- list-style-type: none;
- padding: 0;
- }
- .post-notes ol.notes li {
- margin-bottom: 6px;
- line-height: 16px;
- }
- .post-notes img.avatar {
- border-radius: 8px;
- float: left;
- margin-right: 6px;
- }
- .post-notes a,
- .post-notes a:visited {
- padding: 1px 2px;
- margin: -1px -2px;
- background-color: #f9f9f9;
- }
- .post-notes a.avatar_frame {
- padding: 0;
- margin: 0;
- background: none;
- }
- .more_notes_link_container {
- text-align: left !important;
- margin-top: 32px;
- }
- .post-notes a.more_notes_link {
- border-radius: 5px;
- padding: 3px 4px;
- margin: -3px -4px;
- }
- /* BEGIN Masonry page overrides */
- .masonry-page article.post {
- margin: 0 0 35px 0 !important;
- padding: 0 !important;
- min-width: 0px !important;
- width: 400px !important;
- }
- .masonry-page article.post.text,
- .masonry-page article.post.chat {
- width: auto !important;
- max-width: 500px !important;
- }
- .masonry-page section.content,
- .masonry-page section.caption {
- font-size: 0.875rem !important;
- line-height: 1.5rem !important;
- }
- .masonry-page h3.post-title {
- margin-bottom: 0.75rem;
- }
- .masonry-page section.content p {
- margin: 0.75rem 0;
- }
- .masonry-page section.content p:first-child {
- margin: 0 0 0.75rem 0;
- }
- .masonry-page section.content blockquote {
- margin: 0.75rem;
- }
- .masonry-page .post.quote blockquote {
- margin: 0;
- }
- .masonry-page article.post.text section.content,
- .masonry-page article.post.quote section.content,
- .masonry-page article.post.chat section.content,
- .masonry-page article.post.answer section.content,
- .masonry-page article.post.link section.content {
- margin: 0 0.75rem;
- }
- .masonry-page .post.quote blockquote.short:before,
- .masonry-page .post.quote blockquote p:first-child::before {
- left: 5px;
- }
- .masonry-page .post.answer .post-meta {
- margin-left: 12px;
- }
- .masonry-page .tumblr_audio_player {
- width: 250px;
- }
- .masonry-page .post-meta,
- html.no-touch .masonry-page.hide-metadata .post-meta {
- opacity: 1;
- margin-top: 16px;
- color: #dfdfdf;
- transition: color 200ms ease;
- -webkit-transition: color 200ms ease;
- -moz-transition: color 200ms ease;
- -o-transition: color 200ms ease;
- }
- .masonry-page article:hover .post-meta,
- html.no-touch .masonry-page.hide-metadata article:hover .post-meta {
- color: #939393;
- transition: color 200ms ease;
- -webkit-transition: color 200ms ease;
- -moz-transition: color 200ms ease;
- -o-transition: color 200ms ease;
- }
- .masonry-page .post-meta-list li,
- .masonry-page .post-tags-list li {
- margin-right: 0.25rem;
- }
- .post-tags-list li a:before {
- content: "";
- }
- /* END Masonry page overrides */
- #pagination {
- padding: 0;
- list-style-type: none;
- margin-bottom: 35px;
- }
- .masonry-page #pagination {
- margin: 35px 35px 35px 0;
- text-align: right;
- }
- #pagination.permalinks {
- margin: 35px 0;
- color: black;
- }
- #pagination li {
- display: inline-block;
- margin-right: 16px;
- }
- #pagination .current,
- #pagination .jump,
- #pagination #prev,
- #pagination #next {
- display: inline-block;
- padding: 5px 9px;
- margin: -5px -9px;
- border-radius: 4px;
- }
- #pagination .current {
- background-color: #f9f9f9;
- }
- html.no-touch #pagination .current:hover {
- cursor: default;
- }
- a#to-top,
- a#to-top:visited {
- color: #dfdfdf;
- }
- a#to-top:hover {
- color: black;
- }
- .masonry-page a#to-top {
- float: right;
- margin-right: 47px;
- }
- .keybinds {
- cursor: default;
- list-style-type: none;
- padding: 0;
- margin-bottom: 0;
- }
- .keybind {
- display: inline-block;
- width: 3em;
- }
- html a:hover,
- html.no-touch .custom-tags-heading:hover,
- section.content a:hover,
- .post-notes a:hover {
- background-color: none;
- }
- {block:IfMaxPostWidth}
- article.post {
- max-width: {text:Max post width} !important;
- }
- {/block:IfMaxPostWidth}
- {CustomCSS}
- </style>
- <!-- Custom Modernizr 2.7.1 build to detect touch events, html5shiv 3.7 -->
- <script src="http://static.tumblr.com/vmi5hwb/suBn0v9y6/modernizr.custom.52049.js"></script>
- <!-- Google Analytics -->
- <script>
- {block:IfGoogleAnalyticsId}
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
- ga('create', '{text:Google Analytics ID}', 'tumblr.com');
- ga('send', 'pageview');
- {/block:IfGoogleAnalyticsId}
- </script>
- </head>
- <body class="{select:Menu position}">
- <header>
- <h1 id="logo">
- {block:IfLogoImage}
- <a class="image-link" href="{BlogURL}"><img src="{image:Logo}" alt="{Title}" /></a>
- {/block:IfLogoImage}
- {block:IfNotLogoImage}
- <a class="title" href="{BlogURL}">{Title}</a>
- {/block:IfNotLogoImage}
- </h1>
- {block:Description}<p id="description">{Description}</p>{/block:Description}
- <ul class="menu">
- <li>
- <form id="search" action="/search" method="get">
- <input id="search-query" type="search" placeholder="{lang:Search}" name="q" value="">
- </form>
- </li>
- {block:HasPages}
- {block:Pages}<li><a href="{URL}">{Label}</a></li>{/block:Pages}
- {/block:HasPages}
- <li><a href="/archive">{lang:Archive}</a></li>
- {block:AskEnabled}<li><a href="/ask">{AskLabel}</a></li>{/block:AskEnabled}
- </ul>
- {block:IfTagList1CommaSep}
- <section class="custom-tags" id="custom-tags1">
- {block:IfTagList1heading}<h2 class="custom-tags-heading">{text:Tag List 1 heading}</h2>{/block:IfTagList1heading}
- <div class="custom-tags-string">{text:Tag List 1 comma sep}</div>
- </section>
- {/block:IfTagList1CommaSep}
- {block:IfTagList2CommaSep}
- <section class="custom-tags" id="custom-tags2">
- {block:IfTagList2heading}<h2 class="custom-tags-heading">{text:Tag List 2 heading}</h2>{/block:IfTagList2heading}
- <div class="custom-tags-string">{text:Tag List 2 comma sep}</div>
- </section>
- {/block:IfTagList2CommaSep}
- {block:IfTagList3CommaSep}
- <section class="custom-tags" id="custom-tags3">
- {block:IfTagList3heading}<h2 class="custom-tags-heading">{text:Tag List 3 heading}</h2>{/block:IfTagList3heading}
- <div class="custom-tags-string">{text:Tag List 3 comma sep}</div>
- </section>
- {/block:IfTagList3CommaSep}
- {block:IfTagList4CommaSep}
- <section class="custom-tags" id="custom-tags2">
- {block:IfTagList4heading}<h2 class="custom-tags-heading">{text:Tag List 4 heading}</h2>{/block:IfTagList4heading}
- <div class="custom-tags-string">{text:Tag List 4 comma sep}</div>
- </section>
- {/block:IfTagList4CommaSep}
- {block:IfTagList5CommaSep}
- <section class="custom-tags" id="custom-tags3">
- {block:IfTagList5heading}<h2 class="custom-tags-heading">{text:Tag List 5 heading}</h2>{/block:IfTagList5heading}
- <div class="custom-tags-string">{text:Tag List 5 comma sep}</div>
- </section>
- {/block:IfTagList5CommaSep}
- <ul class="menu" id="link-list">
- {block:IfLink1Name}
- <li><a href="{text:Link 1 URL}">{text:Link 1 name}</a></li>
- {/block:IfLink1Name}
- {block:IfLink2Name}
- <li><a href="{text:Link 2 URL}">{text:Link 2 name}</a></li>
- {/block:IfLink2Name}
- {block:IfLink3Name}
- <li><a href="{text:Link 3 URL}">{text:Link 3 name}</a></li>
- {/block:IfLink3Name}
- {block:IfLink4Name}
- <li><a href="{text:Link 4 URL}">{text:Link 4 name}</a></li>
- {/block:IfLink4Name}
- {block:IfLink5Name}
- <li><a href="{text:Link 5 URL}">{text:Link 5 name}</a></li>
- {/block:IfLink5Name}
- </ul>
- <footer>
- {block:IfShowThemeLink}<a href="http://www.tumblr.com/theme/39673">F-O Theme</a>{/block:IfShowThemeLink}
- {block:IndexPage}
- {block:IfShowKeybindLegend}
- <ul class="keybinds">
- {block:IndexPage}
- <li><span class="keybind">j / k</span> next / prev post</li>
- <li><span class="keybind">n / m</span> next / prev page</li>
- {/block:IndexPage}
- {block:PermalinkPage}
- <li><span class="keybind">n / m</span> next / prev post</li>
- {/block:PermalinkPage}
- </ul>
- {/block:IfShowKeybindLegend}
- {/block:IndexPage}
- </footer>
- </header>
- <section id="body" class="{block:IndexPage}index-page{/block:IndexPage}{block:PermalinkPage}permalink-page{/block:PermalinkPage}{block:TagPage}{block:IfUseMasonryOnTagPages} masonry-page {/block:IfUseMasonryOnTagPages} tag-page{/block:TagPage}{block:SearchPage}{block:IfUseMasonryOnSearchPages} masonry-page{/block:IfUseMasonryOnSearchPages}{block:NoSearchResults} no-results{/block:NoSearchResults} search-page{/block:searchPage}{block:DayPage} day-page{/block:DayPage}{block:IfFadeInPostMetadata} hide-metadata{/block:IfFadeInPostMetadata}">
- {block:PermalinkPage}<a class="jknav-back-target" name="jknav-back-target"></a>{/block:PermalinkPage}
- {block:SearchPage}
- {block:IfUseMasonryOnSearchPages}
- <a class="jknav-back-target" name="jknav-back-target"></a>
- {/block:IfUseMasonryOnSearchPages}
- <p class="result">
- {block:NoSearchResults}
- {lang:No results for SearchQuery 2}
- {/block:NoSearchResults}
- {lang:Found SearchResultCount results for SearchQuery 2}
- </p>
- {block:IfUseMasonryOnSearchPages}
- <div id="masonry-container">
- <img id="load-gif" src="http://static.tumblr.com/vmi5hwb/3pEn0vjrd/loading.gif" />
- {/block:IfUseMasonryOnSearchPages}
- {/block:SearchPage}
- {block:TagPage}
- {block:IfUseMasonryOnTagPages}
- <a class="jknav-back-target" name="jknav-back-target"></a>
- {/block:IfUseMasonryOnTagPages}
- <p class="result">{lang:TagResultCount posts tagged Tag 3}</p>
- {block:IfUseMasonryOnTagPages}
- <div id="masonry-container">
- <img id="load-gif" src="http://static.tumblr.com/vmi5hwb/3pEn0vjrd/loading.gif" />
- {/block:IfUseMasonryOnTagPages}
- {/block:TagPage}
- {block:IfInfiniteScroll}<div class="autopagerize_page_element">{/block:IfInfiniteScroll}
- {block:Posts}
- <article class="post {block:Text}text{/block:Text}{block:Quote}quote{/block:Quote}{block:Link}link{/block:Link}{block:Video}video{/block:Video}{block:Audio}audio{/block:Audio}{block:Photo}photo{/block:Photo}{block:Photoset}photoset{/block:Photoset}{block:Panorama}panorama{/block:Panorama}{block:Chat}chat{/block:Chat}{block:Answer}answer{/block:Answer}" {block:Date}data-post-id="post_{PostID}"{/block:Date}>
- <section class="content">
- {block:Text}
- {block:Title}<h3 class="post-title">{block:IndexPage}<a href="{Permalink}">{/block:IndexPage}{Title}{block:IndexPage}</a>{/block:IndexPage}</h3>{/block:Title}
- {Body}
- {/block:Text}
- {block:Quote}
- <blockquote class="words {Length}">{Quote}</blockquote>
- {block:Source}<p class="source">— {Source}</p>{/block:Source}
- {/block:Quote}
- {block:Link}
- <h3 class="post-title"><a href="{URL}" {Target}>{Name}</a></h3>
- {block:Description}
- <section class="link-description">{Description}</section>
- {/block:Description}
- {/block:Link}
- {block:Video}
- <div class="large-video">{Video-700}</div>
- {block:TagPage}
- {block:IfUseMasonryOnTagPages}
- {Video-250}
- {/block:IfUseMasonryOnTagPages}
- {/block:TagPage}
- {block:SearchPage}
- {block:IfUseMasonryOnSearchPages}
- {Video-250}
- {/block:IfUseMasonryOnSearchPages}
- {/block:SearchPage}
- {block:Caption}
- <section class="caption">{Caption}</section>
- {/block:Caption}
- {/block:Video}
- {block:Audio}
- {AudioPlayerWhite}
- {block:Caption}
- <section class="caption">{Caption}</section>
- {/block:Caption}
- {/block:Audio}
- {block:Photo}
- <div class="image-wrapper">
- {block:IndexPage}<a class="image-link" href="{Permalink}">{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}<a class="image-link" href="{LinkURL}">{/block:LinkURL}{/block:PermalinkPage}
- <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
- {block:IndexPage}</a>{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}</a>{/block:LinkURL}{/block:PermalinkPage}
- {block:IfSharePostLinks}
- <div class="image-buttons">
- <ul class="image-buttons">
- {block:IfSharePostOnTwitter}
- <li class="twitter" id="sharebutton">
- <a href="https://twitter.com/intent/tweet?url={ShortURL}" title="Share on Twitter" class="fa fa-twitter" target="_blank"></a>
- </li>
- {/block:IfSharePostOnTwitter}
- {block:IfSharePostOnFacebook}
- <li class="facebook" id="sharebutton">
- <a href="http://www.facebook.com/sharer.php?u={ShortURL}" title="Share on Facebook" class="fa fa-facebook" target="_blank"></a>
- </li>
- {/block:IfSharePostOnFacebook}
- {block:IfSharePostOnGoogle}
- <li class="google" id="sharebutton">
- <a href="https://plus.google.com/share?url={ShortURL}" title="Share on Google +" class="fa fa-google-plus" target="_blank"></a>
- </li>
- {/block:IfSharePostOnGoogle}
- {block:IfSharePostOnPinterest}
- <li class="pintrest" id="sharebutton">
- <a href="https://pinterest.com/pin/create/button/?url={ShortURL}{block:Text}&media={PortraitURL-128}{/block:Text}{block:Photo}&media={PhotoURL-HighRes}{/block:Photo}{block:Panorama}&media={PhotoURL-Panorama}{/block:Panorama}{block:Photoset}{block:Photos}&media={PhotoURL-500}{/block:Photos}{/block:Photoset}{block:Quote}&media={PortraitURL-128}{/block:Quote}{block:Link}&media={PortraitURL-128}{/block:Link}{block:Chat}&media={PortraitURL-128}{/block:Chat}{block:Audio}&media={PortraitURL-128}{/block:Audio}{block:Video}&media={PortraitURL-128}{block:VideoThumbnail}&media={VideoThumbnailURL}{/block:VideoThumbnail}{/block:Video}{block:Answer}&media={PortraitURL-128}{/block:Answer}{block:PostTitle}&description={PostTitle}{/block:PostTitle}" title="Share on Pinterest" class="fa fa-pinterest" target="_blank"></a>
- </li>
- {/block:IfSharePostOnPinterest}
- <li id="sharebutton">
- <a href="{ReblogURL}" title="Share on Tumblr" target="_blank" class="fa fa-tumblr"></a>
- </li>
- </ul>
- {/block:IfSharePostLinks}
- </div>
- </div>
- {block:Caption}
- <section class="caption">{Caption}</section>
- {/block:Caption}
- <div class="clearfix"></div>
- {/block:Photo}
- {block:Photoset}
- {block:Photos}
- <div class="image-wrapper">
- {block:IndexPage}<a class="image-link" href="{Permalink}">{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}<a class="image-link" href="{LinkURL}">{/block:LinkURL}{/block:PermalinkPage}
- <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
- {block:IndexPage}</a>{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}</a>{/block:LinkURL}{/block:PermalinkPage}
- </div>
- {block:Caption}
- <section class="caption inset-caption">{Caption}</section>
- {/block:Caption}
- <div class="clearfix"></div>
- {/block:Photos}
- {block:Caption}
- <section class="caption">{Caption}</section>
- {/block:Caption}
- {/block:Photoset}
- {block:Panorama}
- <div class="image-wrapper">
- {block:IndexPage}<a class="image-link" href="{Permalink}">{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}<a class="image-link" href="{LinkURL}">{/block:LinkURL}{/block:PermalinkPage}
- <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
- {block:IndexPage}</a>{/block:IndexPage}
- {block:PermalinkPage}{block:LinkURL}</a>{/block:LinkURL}{/block:PermalinkPage}
- <div class="image-buttons">
- <a class="notes-button" href="{Permalink}">{NoteCount}</a>
- {ReblogButton color="white" size="14"}
- {LikeButton color="white" size="14"}
- </div>
- </div>
- {block:Caption}
- <section class="caption">{Caption}</section>
- {/block:Caption}
- {/block:Panorama}
- {block:Chat}
- {block:Title}<h3 class="post-title">{block:IndexPage}<a href="{Permalink}">{/block:IndexPage}{Title}{block:IndexPage}</a>{/block:IndexPage}</h3>{/block:Title}
- <table>
- {block:Lines}
- <tr class="{Alt}">
- {block:Label}<td class="person">{Label}</td>{/block:Label}
- <td>{Line}</td>
- </tr>
- {/block:Lines}
- </table>
- {/block:Chat}
- {block:Answer}
- <div class="asker-portrait">
- <img src="{AskerPortraitURL-40}">
- </div>
- <div class="question-answer">
- {Asker}
- <div class="question">{Question}</div>
- <div class="answer">{Answer}</div>
- </div>
- {/block:Answer}
- </section>
- {block:IfShowDate}
- {block:Date}
- <section class="post-meta">
- <ul class="post-meta-list">
- <li>
- <a href="{Permalink}">{TimeAgo}{block:PermalinkPage} ({DayOfMonth} {Month}, {Year}){/block:PermalinkPage}</a>
- </li>
- {block:ExternalAudio}
- <li>
- <a href="{ExternalAudioURL}">Download</a>
- </li>
- {/block:ExternalAudio}
- {block:PlayCount}
- <li>
- <a href="{Permalink}">{PlayCountWithLabel}</a>
- </li>
- {/block:PlayCount}
- <li>
- <a href="{Permalink}">{NoteCountWithLabel}</a>
- </li>
- {block:ContentSource}
- <li>
- <a href="{SourceURL}" title="{SourceTitle}">Source</a>
- </li>
- {/block:ContentSource}
- <li>
- <a href="{Permalink}">Permalink</a>
- </li>
- <li>
- <a href="{ReblogURL}">Reblog</a>
- </li>
- </ul>
- {block:HasTags}
- <ul class="post-tags-list">
- {block:Tags}<li><a href="{TagURL}">{Tag}</a></li>{/block:Tags}
- </ul>
- {/block:HasTags}
- {block:PermalinkPagination}
- <ul class="permalinks" id="pagination">
- {block:PreviousPost}
- <li><a id="prev" href="{PreviousPost}">{lang:Previous post} (m)</a></li>
- {/block:PreviousPost}
- {block:NextPost}
- <li><a id="next" href="{NextPost}">{lang:Next post} (n)</a?</li>
- {/block:NextPost}
- </ul>
- {/block:PermalinkPagination}
- </section>
- {/block:Date}
- {/block:IfShowDate}
- {block:PostNotes}
- <section class="post-notes">
- {PostNotes}
- </section>
- {/block:PostNotes}
- </article>
- {/block:Posts}
- {block:IfInfiniteScroll}</div>{/block:IfInfiniteScroll}
- {block:TagPage}
- {block:IfUseMasonryOnTagPages}
- </div>
- {/block:IfUseMasonryOnTagPages}
- {/block:TagPage}
- {block:SearchPage}
- {block:IfUseMasonryOnSearchPages}
- </div>
- {/block:IfUseMasonryOnSearchPages}
- {/block:SearchPage}
- {block:IfNotInfiniteScroll}
- {block:Pagination}
- <ul id="pagination">
- {block:PreviousPage}<li><a id="prev" href="{PreviousPage}">Back (m)</a></li>{/block:PreviousPage}
- {block:JumpPagination length="10"}
- {block:CurrentPage}<li><span class="current">{PageNumber}</span></li>{/block:CurrentPage}
- {block:JumpPage}<li><a class="jump" href="{URL}">{PageNumber}</a></li>{/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}<li><a id="next" href="{NextPage}">Next (n)</a></li>{/block:NextPage}
- </ul>
- <a id="to-top" href="#top">Back to top (t)</a>
- {/block:Pagination}
- {/block:IfNotInfiniteScroll}
- </section>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment