Advertisement
Guest User

Theme copy?

a guest
Jun 30th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>
  6. {block:DayPage}
  7. {lang:Viewing everything posted on Month DayOfMonth Year} -
  8. {/block:DayPage}
  9. {block:TagPage}
  10. {lang:Showing TagResultCount posts tagged Tag} -
  11. {/block:TagPage}
  12. {block:SearchPage}
  13. {lang:Found SearchResultCount results for SearchQuery}
  14. {lang:Sorry no results for SearchQuery} -
  15. {/block:SearchPage}
  16. {block:PostSummary}
  17. {PostSummary} -
  18. {/block:PostSummary}
  19. {Title}
  20. </title>
  21. {block:Description}
  22. <meta name="description" content="{MetaDescription}">
  23. {/block:Description}
  24. <link rel="shortcut icon" href="{Favicon}">
  25. <link rel="apple-touch-icon" href="{PortraitURL-128}">
  26. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  27.  
  28. <!-- theme options -->
  29. <meta name="color:Background Color" content="#ffffff">
  30. <meta name="image:Background Image" content="">
  31. <meta name="if:Tiled Background Image" content="0">
  32.  
  33. <meta name="color:Blog Title Color" content="#000000">
  34. <meta name="color:Text Color" content="#000000">
  35. <meta name="color:Link Color" content="#000000">
  36. <meta name="color:Meta Text Color" content="#808080">
  37.  
  38. <meta name="color:Search Bar And Horizontal Line Between Posts Color" content="#dddddd">
  39.  
  40. <meta name="color:Blockquote Border Color" content="#dddddd">
  41. <meta name="color:Blockquote Inside Blockquote Border Color" content="#bbbbbb">
  42. <meta name="color:Blockquote Level 3 Border Color" content="#888888">
  43. <meta name="color:Blockquote Level 4 Border Color" content="#444444">
  44. <meta name="color:Blockquote Level 5 Border Color" content="#000000">
  45.  
  46. <meta name="color:Odd Chat Lines Color" content="#e8e8e8">
  47. <meta name="color:Even Chat Lines Color" content="#f8f8f8">
  48.  
  49. <meta name="if:Fixed Sidebar" content="1">
  50. <meta name="if:Infinite Scrolling" content="1">
  51. <meta name="if:Wide Content Column" content="1">
  52. <meta name="if:Small Avatar" content="1">
  53.  
  54. <meta name="if:Show Avatar" content="1">
  55. <meta name="if:Show Search Bar" content="1">
  56. <meta name="if:Show Random Link" content="1">
  57. <meta name="if:Show Archive Link" content="1">
  58. <meta name="if:Show Likes Link" content="0">
  59. <meta name="if:Show Group Members" content="0">
  60. <meta name="if:Show Blogs You Follow" content="0">
  61.  
  62. <meta name="if:Show Tags On Index Pages" content="0">
  63. <meta name="if:Show Like And Reblog Buttons On Index Pages" content="0">
  64. <meta name="if:Show Author On Permalink Pages" content="0">
  65. <meta name="if:Show Notes" content="1">
  66.  
  67. <meta name="text:Disqus Shortname" content="">
  68. <meta name="text:Google Analytics ID" content="">
  69.  
  70. <meta name="if:Show Theme Credit In Sidebar" content="0">
  71.  
  72. {block:IfInfiniteScrolling}
  73. <script src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  74. {/block:IfInfiniteScrolling}
  75. <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600,300">
  76. <style>
  77. /*
  78.  
  79. Minimax Tumblr Theme by Noah Doersing
  80. https://www.tumblr.com/themes/by/noahdoersing
  81. https://github.com/doersino/Tumblr-Themes
  82. You may use, modify and/or share this theme only in accordance with the
  83. following license (TL;DR: don't remove this notice and don't sue me):
  84.  
  85. The MIT License (MIT)
  86.  
  87. Copyright (c) 2014 Noah Doersing
  88.  
  89. Permission is hereby granted, free of charge, to any person obtaining a copy
  90. of this software and associated documentation files (the "Software"), to deal
  91. in the Software without restriction, including without limitation the rights
  92. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  93. copies of the Software, and to permit persons to whom the Software is
  94. furnished to do so, subject to the following conditions:
  95.  
  96. The above copyright notice and this permission notice shall be included in
  97. all copies or substantial portions of the Software.
  98.  
  99. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  100. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  101. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  102. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  103. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  104. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  105. THE SOFTWARE.
  106.  
  107. */
  108.  
  109. /* GENERAL */
  110. * {
  111. margin: 0;
  112. padding: 0;
  113. list-style-type: none;
  114. -webkit-box-sizing: border-box;
  115. -moz-box-sizing: border-box;
  116. box-sizing: border-box;
  117. }
  118. html {
  119. font-size: 14px;
  120. }
  121. body {
  122. font-family: consolas;
  123. font-style: none;
  124. {block:IfTiledBackgroundImage}
  125. background-color: {color:Background Color};
  126. background-image: url("{image:Background Image}");
  127. {/block:IfTiledBackgroundImage}
  128. {block:IfNotTiledBackgroundImage}
  129. background: {color:Background Color} url("{image:Background Image}") no-repeat center center fixed;
  130. background-size: cover;
  131. {/block:IfNotTiledBackgroundImage}
  132. color: {color:Text Color};
  133. }
  134. a img {
  135. border: 0;
  136. }
  137.  
  138. /* SIDEBAR */
  139. aside {
  140. top: 0;
  141. left: 4rem;
  142. padding: 3.9rem 0 1.9rem;
  143. width: 14rem;
  144. {block:IfFixedSidebar}
  145. position: fixed;
  146. height: 100%;
  147. overflow-y: scroll;
  148. -ms-overflow-style: none;
  149. {/block:IfFixedSidebar}
  150. {block:IfNotFixedSidebar}
  151. position: absolute;
  152. {/block:IfNotFixedSidebar}
  153. }
  154. {block:IfFixedSidebar}
  155. aside::-webkit-scrollbar {
  156. display: none;
  157. }
  158. {/block:IfFixedSidebar}
  159. aside > * {
  160. margin-bottom: 2rem;
  161. }
  162. aside h1 {
  163. font-weight: 350;
  164. font-size: 2rem;
  165. }
  166. aside h1 a {
  167. color: {color:Blog Title Color} !important;
  168. }
  169. aside h1 img.small {
  170. height: 1.2rem;
  171. padding-right: .4rem;
  172. }
  173. aside h1 img.large {
  174. width: 100%;
  175. margin-bottom: 1.33rem;
  176. }
  177. aside p {
  178. font-weight: 300;
  179. color: {color:Meta Text Color};
  180. margin-top: 1rem;
  181. }
  182. aside a {
  183. color: {color:Link Color};
  184. text-decoration: none;
  185. }
  186. aside a:hover {
  187. text-decoration: underline;
  188. }
  189. aside input {
  190. background-color: transparent;
  191. border: 1px solid {color:Search Bar And Horizontal Line Between Posts Color};
  192. padding: .25rem;
  193. width: 100%;
  194. font-family: inherit;
  195. color: {color:Meta Text Color};
  196. font-size: 1rem;
  197. }
  198. aside input[type="submit"] {
  199. display: none;
  200. }
  201. aside h2 {
  202. font-weight: 600;
  203. font-size: 1rem;
  204. margin-bottom: .5rem;
  205. }
  206. aside ul.groupmembers li img {
  207. height: .66rem;
  208. }
  209. aside ul.following li img {
  210. height: 1.15rem;
  211. }
  212. aside ul.following li,
  213. aside nav.pagination ol li {
  214. display: inline;
  215. }
  216. aside nav.permalink-pagination ol li::after,
  217. aside nav.day-pagination ol li::after {
  218. content: " \b7 ";
  219. }
  220. aside nav.permalink-pagination ol li:last-child::after,
  221. aside nav.day-pagination ol li:last-child::after {
  222. content: "";
  223. }
  224.  
  225. /* ARTICLES */
  226. main {
  227. display: block;
  228. margin: 1rem 4rem 0 22rem;
  229. {block:IfWideContentColumn}
  230. max-width: 700px;
  231. {/block:IfWideContentColumn}
  232. {block:IfNotWideContentColumn}
  233. max-width: 500px;
  234. {/block:IfNotWideContentColumn}
  235.  
  236. }
  237. {block:IfWideContentColumn}
  238. @media (min-width: 1316px) { /* calc(700px + (2 * 22rem)) with 1rem = 14px */
  239. main {
  240. margin-right: auto;
  241. margin-left: auto;
  242. }
  243. }
  244. {/block:IfWideContentColumn}
  245. {block:IfNotWideContentColumn}
  246. @media (min-width: 1116px) { /* calc(500px + (2 * 22rem)) with 1rem = 14px */
  247. main {
  248. margin-right: auto;
  249. margin-left: auto;
  250. }
  251. }
  252. {/block:IfNotWideContentColumn}
  253. main > header {
  254. padding: 3rem 0;
  255. border-bottom: 1px solid {color:Search Bar And Horizontal Line Between Posts Color};
  256. }
  257. main > header h2 {
  258. font-weight: 300;
  259. font-size: 1.5rem;
  260. line-height: 1.333em;
  261. }
  262. main > header h2 span.tag::before,
  263. main > header h2 span.tag::after,
  264. main > header h2 span.search_query::before,
  265. main > header h2 span.search_query::after {
  266. content: "\"";
  267. }
  268. article {
  269. padding: 3rem 0;
  270. border-bottom: 1px solid {color:Search Bar And Horizontal Line Between Posts Color};
  271. line-height: 1.5rem;
  272. word-wrap: break-word;
  273. }
  274. article:last-child {
  275. border: 0;
  276. }
  277. article p,
  278. article h2,
  279. article h3,
  280. article h4,
  281. article ul,
  282. article ol,
  283. article > img,
  284. article > a img,
  285. article > div.html_photoset,
  286. article > iframe,
  287. article blockquote,
  288. article pre,
  289. article section.disqus {
  290. margin-bottom: 1rem;
  291. }
  292. article > img.wide,
  293. article > iframe[class*="_audio_player"],
  294. article > iframe[src*="youtube.com/embed"],
  295. article > iframe[src*="player.vimeo.com"] {
  296. display: block;
  297. max-width: 100%;
  298. }
  299. {block:IfWideContentColumn}
  300. article > iframe[class*="_audio_player"] {
  301. width: 700px;
  302. }
  303. {/block:IfWideContentColumn}
  304. article img {
  305. max-width: 100%;
  306. }
  307. article img.wide {
  308. width: 100%;
  309. }
  310. article h2,
  311. article header blockquote {
  312. font-weight: 300;
  313. font-size: 1.5rem;
  314. line-height: 1.333em;
  315. }
  316. article h3 {
  317. font-weight: 600;
  318. font-size: 1rem;
  319. }
  320. article h4 {
  321. font-weight: 400;
  322. font-style: italic;
  323. }
  324. article a {
  325. color: {color:Link Color};
  326. text-decoration: underline;
  327. }
  328. article a:hover {
  329. text-decoration: none;
  330. }
  331. article blockquote {
  332. margin-left: 1rem;
  333. padding-left: 1rem;
  334. border-left: 1px solid {color:Blockquote Border Color};
  335. }
  336. article blockquote blockquote {
  337. border-left: 1px solid {color:Blockquote Inside Blockquote Border Color};
  338. }
  339. article blockquote blockquote blockquote {
  340. border-left: 1px solid {color:Blockquote Level 3 Border Color};
  341. }
  342. article blockquote blockquote blockquote blockquote {
  343. border-left: 1px solid {color:Blockquote Level 4 Border Color};
  344. }
  345. article blockquote blockquote blockquote blockquote blockquote {
  346. border-left: 1px solid {color:Blockquote Level 5 Border Color};
  347. }
  348. article ul li {
  349. margin-left: 2rem;
  350. list-style-type: square;
  351. }
  352. article ol li {
  353. margin-left: 2rem;
  354. list-style-type: decimal;
  355. }
  356. article.link h2 {
  357. font-size: 1.25rem;
  358. }
  359. article.link h2 span {
  360. letter-spacing: -.15rem;
  361. }
  362. article ol.chat li {
  363. margin-left: 0;
  364. list-style-type: none;
  365. padding: .25rem .5rem;
  366. }
  367. article ol.chat li.odd {
  368. background-color: {color:Odd Chat Lines Color};
  369. }
  370. article ol.chat li.even {
  371. background-color: {color:Even Chat Lines Color};
  372. }
  373. article code {
  374. font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  375. padding: .3rem .3rem .1rem;
  376. background-color: {color:Search Bar And Horizontal Line Between Posts Color};
  377. line-height: 1rem;
  378. }
  379. article pre {
  380. background-color: {color:Text Color};
  381. color: {color:Background Color};
  382. padding: 1.5rem 2rem;
  383. overflow: scroll;
  384. }
  385. article .gist pre {
  386. color: black;
  387. overflow: initial;
  388. }
  389. article pre code {
  390. padding: 0;
  391. background-color: transparent;
  392. }
  393.  
  394. /* METADATA */
  395. footer {
  396. color: {color:Meta Text Color};
  397. font-size: .75rem;
  398. letter-spacing: .5px;
  399. }
  400. footer a {
  401. text-decoration: none;
  402. }
  403. footer a:hover {
  404. text-decoration: underline;
  405. }
  406. footer.permalink {
  407. margin-top: 1rem;
  408. }
  409. article > img.wide + footer.permalink,
  410. article > iframe[class*="_audio_player"] + footer.permalink,
  411. article > iframe[src*="youtube.com/embed"] + footer.permalink,
  412. article > iframe[src*="player.vimeo.com"] + footer.permalink {
  413. margin-top: 1.5rem;
  414. }
  415. article > a.click-through + footer.permalink {
  416. margin-top: .125rem;
  417. }
  418. footer.permalink a {
  419. color: inherit;
  420. }
  421. footer.permalink .buttons {
  422. display: inline-block;
  423. margin-left: .3rem;
  424. letter-spacing: .3rem;
  425. }
  426. footer.permalink .buttons .like_button,
  427. footer.permalink .buttons .reblog_button {
  428. display: inline-block !important;
  429. }
  430. footer.permalink ul.tags li,
  431. footer.metadata ul.tags li {
  432. list-style: none;
  433. display: inline;
  434. margin: 0;
  435. margin-right: .5rem;
  436. }
  437. footer.permalink ul.tags a::before,
  438. footer.metadata ul.tags a::before {
  439. content: "#";
  440. }
  441. footer.metadata {
  442. margin-top: 3rem;
  443. padding-top: 3rem;
  444. border-top: 1px solid {color:Search Bar And Horizontal Line Between Posts Color};
  445. }
  446. article > img.wide + footer.metadata,
  447. article > iframe[class*="_audio_player"] + footer.metadata,
  448. article > iframe[src*="youtube.com/embed"] + footer.metadata,
  449. article > iframe[src*="player.vimeo.com"] + footer.metadata {
  450. margin-top: 3.67rem;
  451. }
  452. article > a.click-through + footer.metadata {
  453. margin-top: 2.25rem;
  454. }
  455. footer.metadata ul.exif li,
  456. footer.metadata ul.sources li {
  457. list-style: none;
  458. margin: 0;
  459. }
  460. footer.metadata ul.sources {
  461. margin-bottom: 0;
  462. }
  463. footer.metadata ul.sources li:last-child {
  464. margin-bottom: 1rem;
  465. }
  466. footer.metadata abbr {
  467. border-bottom: 1px dotted {color:Meta Text Color};
  468. }
  469. footer.metadata ol.notes li {
  470. list-style: none;
  471. margin: 0;
  472. }
  473. footer.metadata ol.notes img.avatar {
  474. height: 8px;
  475. }
  476. footer.metadata ol.notes span.action {
  477. margin-left: .5rem;
  478. }
  479. footer.metadata ol.notes blockquote {
  480. margin-left: calc(8px + .6rem);
  481. margin-bottom: 0;
  482. padding: 0;
  483. border: 0;
  484. }
  485. footer.metadata ol.notes li.more_notes_link_container {
  486. text-align: left !important;
  487. margin-top: 1rem;
  488. }
  489.  
  490. {CustomCSS}
  491. </style>
  492. </head>
  493. <body>
  494. <aside>
  495. <!-- title and description -->
  496. <header>
  497. <h1>
  498. {block:IfShowAvatar}
  499. {block:IfSmallAvatar}
  500. <a href="{BlogURL}"><img src="{PortraitURL-40}" alt="Avatar" class="small"></a>
  501. {/block:IfSmallAvatar}
  502. {block:IfNotSmallAvatar}
  503. <a href="{BlogURL}"><img src="{PortraitURL-128}" alt="Avatar" id="avatar" class="large"></a>
  504. <script>
  505. // try replacing 128px avatar with larger 512px
  506. // version not embeddable with template tags
  507. var avatarUrl128 = document.getElementById("avatar").src;
  508. var avatarUrl512 = avatarUrl128.replace("_128.", "_512.");
  509. var avatarImage512 = new Image();
  510. avatarImage512.src = avatarUrl512;
  511. avatarImage512.onload = function() {
  512. document.getElementById("avatar").src = avatarUrl512;
  513. }
  514. </script>
  515. {/block:IfNotSmallAvatar}
  516. {/block:IfShowAvatar}
  517. <a href="{BlogURL}">{Title}</a>
  518. </h1>
  519. {block:Description}
  520. <p>{Description}</p>
  521. {/block:Description}
  522. </header>
  523.  
  524. <!-- search bar -->
  525. {block:IfShowSearchBar}
  526. <form action="/search" method="get">
  527. <input type="text" name="q" value="{SearchQuery}" placeholder="{lang:Search}...">
  528. <input type="submit" value="Search">
  529. </form>
  530. {/block:IfShowSearchBar}
  531.  
  532. <!-- pages -->
  533. <nav>
  534. <ul>
  535. <br/>
  536. {block:HasPages}
  537. {block:Pages}
  538. <li><a href="{URL}">{Label}</a></li>
  539. {/block:Pages}
  540. {/block:HasPages}
  541. {block:IfShowRandomLink}
  542. <li><a href="/random" title="{lang:Random post}">{lang:Random}</a></li>
  543. {/block:IfShowRandomLink}
  544. {block:IfShowArchiveLink}
  545. <li><a href="/archive">Archive.</a></li>
  546. {/block:IfShowArchiveLink}
  547. {block:IfShowLikesLink}
  548. <li><a href="/likes" title="{lang:Liked posts}">{lang:Liked}</a></li>
  549. {/block:IfShowLikesLink}
  550. {block:AskEnabled}
  551. <li><a href="/ask">{AskLabel}</a></li>
  552. {/block:AskEnabled}
  553. {block:SubmissionsEnabled}
  554. <li><a href="/submit">{SubmitLabel}</a></li>
  555. {/block:SubmissionsEnabled}
  556. {block:IfShowThemeCreditInSidebar}
  557. <li><a href="https://www.tumblr.com/themes/by/noahdoersing">Theme</a></li>
  558. {/block:IfShowThemeCreditInSidebar}
  559. </ul>
  560. </nav>
  561.  
  562. <!-- group members (only available on secondary blogs) -->
  563. {block:IfShowGroupMembers}
  564. <h2>{lang:Group members}:</h2>
  565. {block:GroupMembers}
  566. <ul class="groupmembers">
  567. {block:GroupMember}
  568. <li>
  569. <img src="{GroupMemberPortraitURL-24}" alt=""> <a href="{GroupMemberURL}" title="{GroupMemberName}">{GroupMemberName}</a>
  570. </li>
  571. {/block:GroupMember}
  572. </ul>
  573. {/block:GroupMembers}
  574. {/block:IfShowGroupMembers}
  575.  
  576. <!-- blogs you follow (only available on primary blogs) -->
  577. {block:IfShowBlogsYouFollow}
  578. {block:Following}
  579. <ul class="following">
  580. {block:Followed}
  581. <li>
  582. <a href="{FollowedURL}" title="{FollowedName}"><img src="{FollowedPortraitURL-24}" alt="{FollowedName}"></a>
  583. </li>
  584. {/block:Followed}
  585. </ul>
  586. {/block:Following}
  587. {block:IfShowBlogsYouFollow}
  588.  
  589. <!-- pagination -->
  590. <br/>
  591. {block:Pagination}
  592. <nav id="pagination" class="pagination">
  593. <ol>
  594. {block:PreviousPage}
  595. <li><a href="{PreviousPage}"><font size="5" color="#949494">back!<br/></font></a></li>
  596. {/block:PreviousPage}
  597. {block:NextPage}
  598. <li><a href="{NextPage}"><font size="5" color="#949494">next!</font></a></li>
  599. {/block:NextPage}
  600. </ol>
  601. </nav>
  602. {block:IfInfiniteScrolling}
  603. <script>
  604. document.getElementById("pagination").style.display = "none";
  605. </script>
  606. {/block:IfInfiniteScrolling}
  607. {/block:Pagination}
  608.  
  609. <!-- permalink pagination -->
  610. {block:PermalinkPagination}
  611. <nav class="pagination permalink-pagination">
  612. <ol>
  613. {block:NextPost}
  614. <li><a href="{NextPost}">&lsaquo; {lang:Newer}</a></li>
  615. {/block:NextPost}
  616. {block:PreviousPost}
  617. <li><a href="{PreviousPost}">{lang:Older} &rsaquo;</a></li>
  618. {/block:PreviousPost}
  619. </ol>
  620. </nav>
  621. {/block:PermalinkPagination}
  622.  
  623. <!-- day pagination -->
  624. {block:DayPagination}
  625. <nav class="pagination day-pagination">
  626. <ol>
  627. {block:NextDayPage}
  628. <li><a href="{NextDayPage}">&lsaquo; {lang:Newer}</a></li>
  629. {/block:NextDayPage}
  630. {block:PreviousDayPage}
  631. <li><a href="{PreviousDayPage}">{lang:Older} &rsaquo;</a></li>
  632. {/block:PreviousDayPage}
  633. </ol>
  634. </nav>
  635. {/block:DayPagination}
  636. </aside>
  637. <main>
  638. {block:DayPage}
  639. <header>
  640. <h2>{lang:Viewing everything posted on Month DayOfMonth Year}.</h2>
  641. </header>
  642. {/block:DayPage}
  643. {block:TagPage}
  644. <header>
  645. <h2>{lang:Showing TagResultCount posts tagged Tag 2}.</h2>
  646. </header>
  647. {/block:TagPage}
  648. {block:SearchPage}
  649. <header>
  650. <h2>{lang:Found SearchResultCount results for SearchQuery 2}{lang:Sorry no results for SearchQuery 2}.</h2>
  651. </header>
  652. {/block:SearchPage}
  653. {block:IfInfiniteScrolling}<div class="autopagerize_page_element">{/block:IfInfiniteScrolling}
  654. {block:Posts}
  655. <article id="post-{PostID}" class="{PostType}{block:HasTags}{block:Tags} tag-{URLSafeTag}{/block:Tags}{/block:HasTags}">
  656. {block:Text}
  657. {block:Title}
  658. <header>
  659. <h2>
  660. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  661. {Title}
  662. {block:IndexPage}</a>{/block:IndexPage}
  663. </h2>
  664. </header>
  665. {/block:Title}
  666. {Body}
  667. {/block:Text}
  668.  
  669. {block:Photo}
  670. {block:LinkURL}<a href="{LinkURL}" class="click-through">{/block:LinkURL}
  671. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" class="wide">
  672.  
  673. {block:LinkURL}</a>{/block:LinkURL}
  674. {block:Caption}
  675. {Caption}
  676. {/block:Caption}
  677. {/block:Photo}
  678.  
  679. {block:Photoset}
  680. {Photoset}
  681. {block:Caption}
  682. {Caption}
  683. {/block:Caption}
  684. {/block:Photoset}
  685.  
  686. {block:Quote}
  687. <header>
  688. <blockquote>
  689. {Quote}
  690. </blockquote>
  691. </header>
  692. {block:Source}
  693. {Source}
  694. {/block:Source}
  695. {/block:Quote}
  696.  
  697. {block:Link}
  698. <header>
  699. <h2><span>&raquo;&rarr;&nbsp;</span> <a href="{URL}" {Target}>{Name}</a></h2>
  700. </header>
  701. {block:Description}
  702. {Description}
  703. {/block:Description}
  704. {/block:Link}
  705.  
  706. {block:Chat}
  707. {block:Title}
  708. <header>
  709. <h2>
  710. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  711. {Title}
  712. {block:IndexPage}</a>{/block:IndexPage}
  713. </h2>
  714. </header>
  715. {/block:Title}
  716. <ol class="chat">
  717. {block:Lines}
  718. <li class="{Alt}">
  719. {block:Label}
  720. <strong>{Label}</strong>
  721. {/block:Label}
  722. {Line}
  723. </li>
  724. {/block:Lines}
  725. </ol>
  726. {/block:Chat}
  727.  
  728. {block:Audio}
  729. {block:AudioEmbed}
  730. {block:IfWideContentColumn}
  731. {AudioEmbed-640}
  732. {/block:IfWideContentColumn}
  733. {block:IfNotWideContentColumn}
  734. {AudioEmbed-500}
  735. {/block:IfNotWideContentColumn}
  736. {/block:AudioEmbed}
  737. {block:Caption}
  738. {Caption}
  739. {/block:Caption}
  740. {/block:Audio}
  741.  
  742. {block:Video}
  743. {block:IfWideContentColumn}
  744. {VideoEmbed-700}
  745. {/block:IfWideContentColumn}
  746. {block:IfNotWideContentColumn}
  747. {VideoEmbed-500}
  748. {/block:IfNotWideContentColumn}
  749. {block:Caption}
  750. {Caption}
  751. {/block:Caption}
  752. {/block:Video}
  753.  
  754. {block:Answer}
  755. <header>
  756. <h2><strong>{lang:Asker asked 2}:</strong> {Question}</h2>
  757. </header>
  758. {block:Answerer}
  759. <p>{Answerer}
  760. <!-- there's no translation available for this
  761. (as well as some stuff further down the page),
  762. and I only know German and English -->
  763. {block:German}antwortete:{/block:German}
  764. {block:NotGerman}answered:{/block:NotGerman}
  765. </p>
  766. <blockquote>
  767. {Answer}
  768. </blockquote>
  769. {/block:Answerer}
  770. {Replies}
  771. {/block:Answer}
  772.  
  773. {block:Date}
  774. {block:IndexPage}
  775. <footer class="permalink">
  776. <!-- more -->
  777. {block:More}
  778. <p><a href="{Permalink}">{lang:Read more}...</a></p>
  779. {/block:More}
  780.  
  781. <!-- tags -->
  782. {block:IfShowTagsOnIndexPages}
  783. {block:HasTags}
  784. <ul class="tags">
  785. {block:Tags}
  786. <li><a href="{TagURL}">{Tag}</a></li>
  787. {/block:Tags}
  788. </ul>
  789. {/block:HasTags}
  790. {/block:IfShowTagsOnIndexPages}
  791.  
  792. <!-- permalink, time and note count-->
  793. <a href="{Permalink}" title="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero} {24HourWithZero}:{Minutes}:{Seconds}">{lang:TimeAgo with NoteCount notes}</a>
  794.  
  795. <!-- like and reblog buttons -->
  796. {block:IfShowLikeAndReblogButtonsOnIndexPages}
  797. <div class="buttons">
  798. {LikeButton size="11" color="grey"}
  799. {ReblogButton size="11" color="grey"}
  800. </div>
  801. {/block:IfShowLikeAndReblogButtonsOnIndexPages}
  802. </footer>
  803. {/block:IndexPage}
  804. {block:PermalinkPage}
  805. <footer class="metadata">
  806. <!-- tags -->
  807. {block:HasTags}
  808. <ul class="tags">
  809. {block:Tags}
  810. <li><a href="{TagURL}">{Tag}</a></li>
  811. {/block:Tags}
  812. </ul>
  813. {/block:HasTags}
  814.  
  815. <!-- post-type dependent metadata -->
  816. {block:Photo}
  817. {block:Exif}
  818. <ul class="exif">
  819. {block:Camera}
  820. <li>
  821. {block:German}Kamera:{/block:German}
  822. {block:NotGerman}Camera:{/block:NotGerman}
  823. {Camera}
  824. </li>
  825. {/block:Camera}
  826. {block:ISO}
  827. <li>ISO: {ISO}</li>
  828. {/block:ISO}
  829. {block:Aperture}
  830. <li>
  831. {block:German}Blende:{/block:German}
  832. {block:NotGerman}Aperture:{/block:NotGerman}
  833. {Aperture}
  834. </li>
  835. {/block:Aperture}
  836. {block:Exposure}
  837. <li>
  838. {block:German}Belichtung:{/block:German}
  839. {block:NotGerman}Exposure:{/block:NotGerman}
  840. {Exposure}
  841. </li>
  842. {/block:Exposure}
  843. {block:FocalLength}
  844. <li>
  845. {block:German}Brennweite:{/block:German}
  846. {block:NotGerman}Focal length:{/block:NotGerman}
  847. {FocalLength}
  848. </li>
  849. {/block:FocalLength}
  850. </ul>
  851. {/block:Exif}
  852. {/block:Photo}
  853. {block:Audio}
  854. <p>{PlayCountWithLabel}</p>
  855. {/block:Audio}
  856.  
  857. <!-- author, reblog source, content source -->
  858. <ul class="sources">
  859. {block:IfShowAuthorOnPermalinkPages}
  860. <li>{lang:Posted by PostAuthorName 2}</li>
  861. {/block:IfShowAuthorOnPermalinkPages}
  862. {block:RebloggedFrom}
  863. <li>{lang:Reblogged from ReblogParentName 2}</li>
  864. {/block:RebloggedFrom}
  865. {block:Submission}
  866. <li>
  867. {block:German}Eingereicht von{/block:German}
  868. {block:NotGerman}Submitted by{/block:NotGerman}
  869. <a href="{SubmitterURL}">{Submitter}</a>
  870. </li>
  871. {/block:Submission}
  872. {block:ContentSource}
  873. <li>{lang:Source}: <a href="{SourceURL}">{SourceTitle}</a></li>
  874. {/block:ContentSource}
  875. </ul>
  876.  
  877. <!-- time, note count, comments and notes -->
  878. <p><abbr title="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero} {24HourWithZero}:{Minutes}:{Seconds}">{lang:TimeAgo with NoteCount notes}</abbr><br>
  879. <a href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonthWithZero}/">{lang:Show all posts made on this day}</a></p>
  880. {block:IfDisqusShortname}
  881. <section class="disqus">
  882. <div id="disqus_thread"></div>
  883. <script type="text/javascript">
  884. (function() {
  885. var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
  886. dsq.src = 'http://{text:Disqus Shortname}.disqus.com/embed.js';
  887. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
  888. })();
  889. </script>
  890. <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript={text:Disqus Shortname}">comments powered by Disqus.</a></noscript>
  891. <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
  892. </section>
  893. {/block:IfDisqusShortname}
  894. {block:IfShowNotes}
  895. {block:PostNotes}
  896. {PostNotes}
  897. {/block:PostNotes}
  898. {/block:IfShowNotes}
  899. </footer>
  900. {/block:PermalinkPage}
  901. {/block:Date}
  902. </article>
  903. {/block:Posts}
  904. {block:IfInfiniteScrolling}</div>{/block:IfInfiniteScrolling}
  905. </main>
  906. {block:IfGoogleAnalyticsID}
  907. <script>
  908. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  909. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  910. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  911. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  912. ga('create', '{text:Google Analytics ID}', 'tumblr.com');
  913. ga('send', 'pageview');
  914. </script>
  915. {/block:IfGoogleAnalyticsID}
  916. </body>
  917. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement