Advertisement
khalisar

crushing words

Jul 17th, 2014
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.30 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3.  
  4. <!--theme by magneito
  5. base code by farahmir-->
  6.  
  7. <head>
  8.  
  9. <title>{Title}</title>
  10.  
  11. <link rel="shortcut icon" href="{Favicon}">
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  14.  
  15. <!--Default Variables-->
  16. <meta name="image:background" content="https://31.media.tumblr.com/39881f59463b0ac25c5ec8241be96cb9/tumblr_inline_n8ubbnKTca1rpltef.png"/>
  17. <meta name="color:Background" content="#ffffff"/>
  18. <meta name="color:Text" content="#000000"/>
  19. <meta name="color:link" content="#000000"/>
  20. <meta name="color:link hover" content="#FFF661"/>
  21. <meta name="color:title"content="#000000"/>
  22. <meta name="color:blog title"content="#000000"/>
  23. <meta name="color:scrollbar" content="#d5d5d5" />
  24. <meta name="color:border" content="#ffb7e0"/>
  25. <meta name="color:pagination background" content="#f0e4ea"/>
  26. <meta name="color:scrollbar background" content="#ead9d9" />
  27. <meta name="color:link background" content="#f4f4f4" />
  28. <meta name="color:more background" content="#000" />
  29. <meta name="color:box" content="#96ecff" />
  30. <meta name="color:posts" content="#fff" />
  31.  
  32.  
  33. <meta name="image:Sidebar image" content=""/>
  34. <meta name="image:box" content=""/>
  35.  
  36. <meta name="if:Stretch Background" content="0"/>
  37. <meta name="if:Stretch Box Background" content="1"/>
  38. <meta name="if:Show Sidebar Image" content="0"/>
  39. <meta name="if:Uncontained Posts" content="0"/>
  40. <meta name="if:Show Captions" content="1"/>
  41. <meta name="text:Link 1 URL" content="" />
  42. <meta name="text:Link 1" content="" />
  43. <meta name="text:Link 2 URL" content="" />
  44. <meta name="text:Link 2" content="" />
  45. <meta name="text:Link 3 URL" content="" />
  46. <meta name="text:Link 3" content="" />
  47. <meta name="text:Link 4 URL" content="" />
  48. <meta name="text:Link 4" content="" />
  49.  
  50.  
  51. <!-- jquery -->
  52.  
  53.  
  54. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  55.  
  56. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  57.  
  58. <script>
  59.  
  60. (function($){
  61.  
  62. $(document).ready(function(){
  63.  
  64. $("a[title]").style_my_tooltips({
  65.  
  66. tip_follows_cursor:true,
  67.  
  68. tip_delay_time:30,
  69.  
  70. tip_fade_speed:300,
  71.  
  72. attribute:"title"
  73.  
  74. });
  75.  
  76. });
  77.  
  78. })(jQuery);
  79.  
  80. </script>
  81.  
  82. <script>
  83. $(document).ready(function(){
  84. $(".uk").click(function(){
  85. $("#updates").fadeToggle(600);
  86. });
  87. });
  88.  
  89. </script>
  90.  
  91.  
  92. <!--CSS customization here. -->
  93.  
  94. <style type="text/css">
  95.  
  96.  
  97. #s-m-t-tooltip{
  98. font-size:9px;
  99. position:absolute;
  100. margin:25px 15px;
  101. z-index:9999;
  102. background:{color:background};
  103. border:1px solid {color:accents};
  104. box-shadow:2px 2px 2px #ccc;
  105. color:{color:text};
  106. padding:3px 5px;
  107.  
  108. }
  109.  
  110.  
  111.  
  112.  
  113. /*scrollbar*/
  114. ::-webkit-scrollbar{height: 5px;
  115. width: 4px;
  116. -webkit-border-radius: 0px;
  117. background-color:{color:scrollbar background}}
  118. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  119. ::-webkit-scrollbar-track{background-color:{color:scrollbar background};}
  120.  
  121.  
  122. /*main structure*/
  123. blockquote {padding:5px 0 5px 15px;
  124. border-left:1px solid {color:border};
  125. margin:10px 0px 10px 15px;
  126. }
  127.  
  128. .caption blockquote {padding:0 0 0 15px;
  129. margin:10px 0;
  130. }
  131.  
  132. body {
  133. background:{color:background};
  134. color:{color:text};
  135. font-family:arial;
  136. font-size:11px;
  137. text-align:justify;
  138. margin:0;
  139. line-height:15px;
  140. background:{color:background} url('{image:background}') center center fixed repeat;
  141. {block:ifstretchbackground}
  142. -webkit-background-size: cover;
  143. -moz-background-size: cover;
  144. -o-background-size: cover;
  145. background-size: cover;
  146. {/block:ifstretchbackground}
  147. }
  148.  
  149. a {color:{color:link};
  150. text-decoration:none;
  151. font-weight:bold;
  152. -webkit-transition:all 0.3s;
  153. -moz-transition:all 0.3s;
  154. -ms-transition:all 0.3s;
  155. -o-transition:all 0.3s;
  156. transition:all 0.3s;
  157. }
  158.  
  159. a:hover {
  160. color:{color:link hover};
  161. -webkit-transition:all 0.3s;
  162. -moz-transition:all 0.3s;
  163. -ms-transition:all 0.3s;
  164. -o-transition:all 0.3s;
  165. transition:all 0.3s;
  166. }
  167.  
  168. img{
  169. border:none;
  170. text-decoration:none}
  171.  
  172. b, strong {
  173. color:{color:title}}
  174. i, em {
  175. color:{color:text}}
  176. p {
  177. margin-top:5px;
  178. margin-bottom:5px}
  179. ol {
  180. list-style:normal;}
  181. ul {
  182. list-style:square;}
  183.  
  184. small {
  185. font-size:10px;}
  186.  
  187. big {
  188. font-size:14px;}
  189.  
  190.  
  191.  
  192.  
  193. #title {font-size:14px;
  194. line-height:18px;
  195. margin-bottom:10px;
  196. color:{color:title};}
  197. #title a {color:{color:title};}
  198.  
  199.  
  200.  
  201.  
  202. /*header*/
  203. #sidebar {
  204. top:98px;
  205. width:200px;
  206. text-align:left;
  207. position:fixed;
  208. margin-left:-220px;
  209. {block:ifnotshowsidebarimage}
  210. margin-top:110px;
  211. {/block:ifnotshowsidebarimage}
  212. }
  213.  
  214. #side img {
  215. height:60px;
  216. width:60px;
  217. margin-top:110px;
  218. margin-left:100px;
  219. {block:ifboxshadow}
  220. -webkit-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  221. -moz-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  222. box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  223. {/block:ifboxshadow}
  224. -webkit-transition:all 0.3s;
  225. -moz-transition:all 0.3s;
  226. -ms-transition:all 0.3s;
  227. -o-transition:all 0.3s;
  228. transition:all 0.3s;
  229. }
  230.  
  231. #side img:hover {
  232. -webkit-filter: blur(1px); -moz-filter: blur(1px); -o-filter: blur(1px); -ms-filter: blur(1px); filter: blur(1px);
  233. -webkit-transition:all 0.5s;
  234. -moz-transition:all 0.5s;
  235. -ms-transition:all 0.5s;
  236. -o-transition:all 0.5s;
  237. transition:all 0.5s;
  238. }
  239.  
  240. #blogtitle{
  241. width:470px;
  242. padding-top:10px;
  243. padding-bottom:10px;
  244. {block:ifnotUncontainedPosts}
  245. position:fixed;
  246. margin-top:120px;
  247. {/block:ifnotUncontainedPosts}
  248. background-color:{color:pagination background};
  249. text-align:center;
  250. border:solid 1px {color:border};
  251. {block:ifUncontainedPosts}
  252. margin-top:0px;
  253. {/block:ifnotUncontainedPosts}
  254. margin-left:0px;
  255. font-size:14px;
  256. word-spacing:3px;
  257. text-transform:uppercase;
  258. font-weight:bold;
  259. word-spacing:3px;
  260. letter-spacing:2px;
  261. {block:ifUncontainedPosts}
  262. position:relative;
  263. {/block:ifUncontainedPosts}
  264.  
  265.  
  266. }
  267.  
  268. #blogtitle a{
  269. font-size:14px;
  270. word-spacing:3px;
  271. text-transform:uppercase;
  272. font-weight:bold;
  273. word-spacing:3px;
  274. letter-spacing:2px;
  275. }
  276.  
  277. #blogtitle:hover a{
  278. color:{color:text};
  279. color: transparent;
  280. text-shadow: 0 0 3px rgba(0,0,0,0.3);
  281.  
  282. }
  283.  
  284. #bloglinks {
  285. font-size:9px;
  286. width:187px;
  287. letter-spacing:1px;
  288. margin-left:0px;
  289. text-transform:none;
  290.  
  291. }
  292. #bloglinks a {padding:4px 10px;
  293. background:{color:link background};
  294. font-weight:normal;
  295. width:52px;
  296. float:left;
  297. margin:5px;
  298. border:solid 1px {color:border};
  299. border-radius:1px;
  300. {block:ifboxshadow}
  301. -webkit-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  302. -moz-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  303. box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  304. {/block:ifboxshadow}
  305. }
  306.  
  307. #description {
  308. margin:15px 0;
  309. max-width:150px;
  310. padding:10px;
  311. border-radius:3px;
  312. background-color:{color:link background};
  313. border:solid 1px {color:border};
  314. }
  315. #updates {display:none;}
  316. .uk {cursor:pointer;
  317. }
  318.  
  319.  
  320. select {border:none;
  321. text-transform:capitalize;
  322. -webkit-appearance: none;cursor:pointer;
  323. }
  324.  
  325. #link {
  326. display:inline-block;
  327. cursor:pointer;
  328. }
  329. select:hover {background:{color:link background}color:{color:link};
  330. }
  331. /*pagination*/
  332. #pagination {
  333. width:470px;
  334. padding-top:10px;
  335. padding-bottom:10px;
  336. position:fixed;
  337. background-color:{color:pagination background};
  338. text-align:center;
  339. border:solid 1px {color:border};
  340. margin-top:450px;
  341. margin-left:-1px;
  342. font-size:11px;
  343. word-spacing:1px;
  344. text-transform:lowercase;
  345. font-weight:thin;
  346. {block:ifboxshadow}
  347. -webkit-box-shadow: 10px 10px 2px rgba(0,0,0,.2);
  348. -moz-box-shadow: 10px 10px 2px rgba(0,0,0,.2);
  349. box-shadow: 10px 10px 2px rgba(0,0,0,.2);
  350. {/block:ifboxshadow}
  351. {block:ifUncontainedPosts}
  352. position:relative;
  353. margin-top:30px;
  354. {/block:ifUncontainedPosts}
  355.  
  356. }
  357. #pagination a {
  358. margin:0 35px;
  359.  
  360. text-decoration:none;
  361. }
  362. #pagination a:hover {color:transparent;text-shadow: 0 0 3px rgba(0,0,0,0.4);}
  363.  
  364. #con {left:50%;
  365. position:absolute;
  366. {block:if500pxposts}
  367. margin-left:-250px;
  368. {/block:if500pxposts}
  369. {block:ifnot500pxposts}
  370. margin-left:-200px;
  371. {/block:ifnot500pxposts}}
  372.  
  373.  
  374.  
  375. /*posts*/
  376.  
  377. #entries {
  378. {block:ifnotUncontainedPosts}
  379. margin-top:30px;
  380. {/block:ifnotUncontainedPosts}
  381. {block:ifUncontainedPosts}
  382. margin-top:50px;
  383. {/block:ifUncontainedPosts}
  384. margin-left:24px;
  385. {block:if500pxposts}
  386. width:500px;
  387. {/block:if500pxposts}
  388. {block:ifnot500pxposts}
  389. width:400px;
  390. {/block:ifnot500pxposts}
  391. }
  392.  
  393.  
  394.  
  395. .posts {display:block;
  396. width:400px;
  397. position:relative;
  398. background:{color:posts};
  399. padding:9px;
  400. padding-bottom:0px;
  401. border:1px solid {color:border};
  402. margin-bottom:50px;
  403. }
  404. .posts img, iframe {
  405. max-width:400px;
  406. display:block;
  407. }
  408.  
  409. #textpost {
  410. max-width:90%;
  411. margin-left:8px;
  412. }
  413. /*images*/
  414. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  415. .caption img{max-width:350px;}
  416. .caption {width:95%;
  417. margin-top:15px;
  418. text-transform:none;
  419. {block:ifhidecaptions}
  420. {block:indexpage}
  421. display:none;
  422. {/block:indexpage}
  423. {/block:ifhidecaptions}
  424. }
  425.  
  426. .container { {block:ifnotUncontainedPosts}max-height: 450px; height:450px;{/block:ifnotUncontainedPosts}{block:ifUncontainedPosts}margin-top:-2px;{/block:ifUncontainedPosts} width:470px; overflow: auto;padding-top:0px; {block:ifnotUncontainedPosts}margin-top:-2px;{/block:ifnotUncontainedPosts} background:white; border:1px solid {color:border}; overflow-x:hidden;margin-left:0px;background-image: url("{image:box}");{block:ifstretchboxbackground}
  427. -webkit-background-size: cover;
  428. -moz-background-size: cover;
  429. -o-background-size: cover;
  430. background-size: cover;
  431. {/block:ifstretchboxbackground}
  432. background-color:{color:box};
  433. {block:ifboxshadow}
  434. -webkit-box-shadow: 10px 10px 2px rgba(0,0,0,.2);
  435. -moz-box-shadow: 10px 10px 2px rgba(0,0,0,.2);
  436. box-shadow: 10px 10px 2px rgba(0,0,0,.2);}
  437. {/block:ifboxshadow}
  438.  
  439. .photoset {
  440. display:block;
  441.  
  442. }
  443.  
  444.  
  445. /*quote*/
  446. #titlequote{
  447. font-size:14px;
  448. font-style:italic;
  449. line-height:22px;
  450. text-align:left;
  451. color:{color:title};
  452. margin:0 25px;}
  453.  
  454. #source {
  455. text-align:right;
  456. padding-top:10px;}
  457.  
  458. .posts li, .posts blockquote {max-width: 100%;}
  459. .caption img{max-width:300px;}
  460. .caption {
  461. {block:ifNotShowCaptions}
  462. {block:IndexPage}
  463. display:none;
  464. {/block:IndexPage}
  465. {/block:ifNotShowCaptions}
  466.  
  467. margin:15px 0;
  468. margin-left:15px;
  469. text-transform:none;
  470. }
  471.  
  472.  
  473.  
  474.  
  475. /*audio*/
  476. .music {min-height:100px;}
  477. #art {
  478. float:left;
  479. position:relative;
  480. }
  481. #art img {height:100px;
  482. width:100px;}
  483. .tumblr_audio_player {
  484. border: none;
  485. padding: 0px;
  486. margin: 0px;
  487. height:40px;
  488. width:315px;
  489. }
  490. .playerback {
  491. opacity:.2;
  492. position:absolute;
  493. top:0;
  494. right:0;
  495. height:100px;
  496. width:100px;
  497. background:white;
  498. -webkit-transition:all 0.8s;
  499. -moz-transition:all 0.8s;
  500. -ms-transition:all 0.8s;
  501. -o-transition:all 0.8s;
  502. transition:all 0.8s;}
  503. .player {
  504. overflow:hidden;
  505. height:50px;
  506. width:30px;
  507. margin-left:22px;
  508. margin-top:27px;
  509. border-top:5px solid white;
  510. border-left:13px solid white;
  511. border-right:7px solid white;
  512. border-bottom:5px solid white;
  513. }
  514.  
  515. #art:hover .playerback {opacity:.8;
  516. -webkit-transition:all 0.8s;
  517. -moz-transition:all 0.8s;
  518. -ms-transition:all 0.8s;
  519. -o-transition:all 0.8s;
  520. transition:all 0.8s;}
  521.  
  522. .audio_info {
  523. margin-left:110px;
  524. padding:15px;
  525. border:1px solid {color:accents};
  526. font-style:italic;
  527. height:70px;
  528. overflow-y:auto;
  529. }
  530. .audio_info b{font-size:12px;
  531. }
  532.  
  533.  
  534. /*asks*/
  535.  
  536. .q {
  537. padding-bottom:15px;
  538. border-bottom:1px solid {color:accents};
  539. margin-bottom:15px;
  540.  
  541. }
  542. .as {
  543. text-transform:uppercase;
  544. color:{color:title};
  545. font-weight:bold;}
  546. .ast{
  547. text-transform:uppercase;
  548. color:{color:title};
  549. float:left;
  550. padding-right:5px;
  551. font-weight:bold;}
  552. .a {
  553. padding-bottom:1px;}
  554.  
  555.  
  556.  
  557. /*chat*/
  558.  
  559. .chat ol {
  560. padding:0;
  561. line-height:180%;
  562. list-style:none;
  563. }
  564.  
  565. .line.odd {padding:10px;
  566. background:{color:accents};
  567. }
  568. .line.even {
  569. padding:10px;
  570. }
  571. .line:last-of-type {border:none;
  572. padding-bottom:0;}
  573.  
  574. .label {font-weight:bold;
  575. padding-right:1px;
  576. letter-spacing:1px;
  577. text-transform:uppercase;
  578. color:{color:title};
  579. }
  580.  
  581. /*text*/
  582. .texta {margin:0}
  583.  
  584.  
  585.  
  586. /*permalink and notes*/
  587.  
  588.  
  589. #permalink {
  590. padding:10px;
  591. padding-bottom:10px;
  592. width:398px;
  593. margin-top:20px;
  594. margin-left:-9px;
  595. font-size:10px;
  596. text-align:left;
  597. border-top:1px solid {color:border};
  598. background-color:{color:pagination background};
  599. }
  600. #permalink a {
  601. background-color:{color:pagination background};
  602. font-weight:normal;
  603. margin:0 2px;
  604. text-decoration:none;
  605. }
  606. .c {
  607. padding:2px 4px;
  608. }
  609.  
  610. .tags {
  611. {block:IndexPage}
  612. opacity:0;
  613. {/block:IndexPage}
  614. word-break:break-all;
  615. -webkit-transition:all 0.8s;
  616. -moz-transition:all 0.8s;
  617. -ms-transition:all 0.8s;
  618. -o-transition:all 0.8s;
  619. transition:all 0.8s;
  620. }
  621. .tags a {background:{color:background};font-weight:bold;}
  622. .posts:hover .tags {opacity:1;
  623. -webkit-transition:all 0.8s;
  624. -moz-transition:all 0.8s;
  625. -ms-transition:all 0.8s;
  626. -o-transition:all 0.8s;
  627. transition:all 0.8s;
  628. }
  629.  
  630. .pagenotes {
  631. {block:IndexPage}
  632. display: none!important;
  633. {/block:IndexPage}
  634. {block:if500pxposts}
  635. width:500px;
  636. {/block:if500pxposts}
  637. {block:ifnot500pxposts}
  638. width:400px;
  639. {/block:ifnot500pxposts}
  640. text-align:left;
  641. height:400px;
  642. border-bottom:1px solid {color:accents};
  643. border-top:1px solid {color:Accents};
  644. padding:15px 0;
  645. overflow-y:auto;
  646. margin-bottom:100px;
  647.  
  648. }
  649. .pagenotes ol {list-style-type:none;
  650. text-align:left;
  651. padding:0!Important;
  652. margin:0!important;}
  653. .pagenotes img {
  654. display:none!important;}
  655. .pagenotes li {
  656. line-height:20px;
  657. }
  658.  
  659.  
  660. {CustomCSS}
  661.  
  662.  
  663. </style>
  664.  
  665.  
  666.  
  667.  
  668. </head>
  669.  
  670. <body>
  671.  
  672.  
  673. <div id="con">
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680. <div id="sidebar">
  681.  
  682. {block:IfShowSidebarImage}
  683. <div id="side"><a href="/"><img src="{image:Sidebar image}"></a></div>
  684. {/block:IfShowSidebarImage}
  685.  
  686. <div id="description">{Description}</div>
  687. <div id="bloglinks">
  688. <a href="/">Home</a>
  689. <a href="/ask">Message</a>
  690. <a href="/archive">Archive</a>
  691. <div id="link">
  692. <select onChange="location.href=this.options[this.selectedIndex].value;" style="padding:6px 10px;
  693. padding-bottom:7px;
  694. background:{color:more background};
  695. font-weight:normal;
  696. color:{color:link background};
  697. width:74px;
  698. float:left;
  699. margin:5px;
  700. border:solid 1px {color:border};
  701. border-radius:1px;
  702. font-size:9px;
  703. letter-spacing:1px;
  704. text-transform:none;
  705. {block:ifboxshadow}
  706. -webkit-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  707. -moz-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  708. box-shadow: 5px 5px 2px rgba(0,0,0,.2);"
  709. {/block:ifboxshadow}>
  710. <option value="/">more</option>
  711. {block:ifLink1}<option value="{text:Link 1 URL}">{text:Link 1}</a></option>{/block:ifLink1}
  712. {block:ifLink2}<option value="{text:Link 2 URL}">{text:Link 2}</a></option>{/block:ifLink2}{block:ifLink3}<option value="{text:Link 3 URL}">{text:Link 3}</a></option>{/block:ifLink3}
  713. {block:ifLink4}<option value="{text:Link 4 URL}">{text:Link 4}</a></option>{/block:ifLink4}
  714. <option value="http://magneito.tumblr.com">theme</a></option>
  715. </select>
  716. </div>
  717. </div>
  718. </div>
  719.  
  720.  
  721. <div id="blogtitle"><a href="/">{Title}</a></div>
  722. <div class="container">
  723. {block:ifnotUncontainedPosts}
  724. {block:Pagination}
  725. <div id="pagination">
  726. {block:PreviousPage}
  727. <a href="{PreviousPage}">previous page </a>
  728. {/block:PreviousPage}
  729. {block:NextPage}
  730. <a href="{NextPage}">next page</a>
  731. {/block:NextPage}
  732. </div>
  733. {/block:Pagination}
  734. {/block:ifnotUncontainedPosts}
  735.  
  736. <div id="entries">
  737.  
  738. {block:Posts}
  739. <div class="posts">
  740.  
  741.  
  742. {block:Quote}
  743. <div id="titlequote">{Quote}</div>
  744. {block:Source}<div id="source">&mdash;&nbsp;{Source}</div>{/block:Source}
  745. {/block:Quote}
  746.  
  747.  
  748.  
  749. {block:Text}
  750. {block:Title}<div id="title">{Title}</div>{/block:Title}
  751. <div id="textpost">{Body}</div>
  752. {/block:Text}
  753.  
  754. {block:Link}
  755. <div id="title"><a href="{URL}">{Name}</a></div>
  756. {block:Description}{Description}{/block:Description}
  757. {/block:Link}
  758.  
  759. {block:Chat}
  760. {block:Title}<div id="title">{Title}</div>{/block:Title}
  761. <div class="chat">
  762. <ol>{block:Lines}
  763. <li class="line {Alt}">
  764. {block:Label}
  765. <span class="label">
  766. {Label}</span>
  767. {/block:Label}{Line}</li>
  768. {/block:Lines}
  769. </ol></div>
  770. {/block:Chat}
  771.  
  772. {block:Photo}
  773. <div class="photo"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></div>
  774. {/block:Photo}
  775.  
  776. {block:Photoset}
  777. <div class="photoset">
  778. {block:if500pxposts}
  779. {Photoset-500}
  780. {/block:if500pxposts}
  781. {block:ifnot500pxposts}
  782. {Photoset-400}
  783. {/block:ifnot500pxposts}
  784. </div>
  785. {/block:Photoset}
  786.  
  787. {block:Video}
  788. {block:if500pxposts}
  789. {Video-500}
  790. {/block:if500pxposts}
  791. {block:ifnot500pxposts}
  792. {Video-400}
  793. {/block:ifnot500pxposts}
  794. {/block:Video}
  795.  
  796.  
  797.  
  798. {block:Audio}
  799. <div class="music">
  800. <div id="art">
  801. {block:AlbumArt}
  802. <img src="{AlbumArtURL}">
  803. {/block:AlbumArt}
  804. {block:AudioPlayer}
  805. <div class="playerback"><div class="player">{AudioPlayerwhite}</div></div>
  806. {/block:AudioPlayer}
  807. </div>
  808. <div class="audio_info">{block:TrackName}<b>{TrackName}</b>{/block:TrackName}<div style="margin-top:8px;font-style:normal">{block:Artist}{Artist}{/block:Artist}<br>{block:album}{album}{/block:album}<br>{playcountwithlabel}</div></div></div>
  809. {/block:Audio}
  810.  
  811.  
  812.  
  813. {block:Answer}
  814. <div class="q"><span class="as">Q: </span>{Question} ({asker})</div>
  815. <div class="a"><span class="ast">A: </span>{Answer}</div>
  816. {/block:Answer}
  817.  
  818. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  819.  
  820. {block:Date}
  821.  
  822. <div id="permalink">
  823. <a href="{Permalink}" title="{12Hour}:{Minutes} {AmPm}" class="c">{timeago}</a>{block:RebloggedFrom}<a href="{ReblogParentURL}" title="reblogged from {ReblogParentName}" class="c">via</a>{block:ContentSource}{block:permalinkpage}<a href="{ReblogRootURL}" title="{ReblogRootName}" class="c">source</a>{/block:permalinkpage}{/block:ContentSource}{/block:RebloggedFrom}{block:NoteCount}<a href="{Permalink}" class="c">{NoteCountWithLabel}</a>{/block:NoteCount}
  824. {block:HasTags}<span class="tags">{block:Tags}<a href="{TagUrl}"># {Tag}</a>{/block:Tags}</span>{/block:HasTags}</div>
  825. {/block:Date}
  826.  
  827.  
  828.  
  829. </div>
  830.  
  831.  
  832. {block:PostNotes}
  833. <div class="pagenotes">
  834. {PostNotes}
  835. </div>
  836. {/block:PostNotes}
  837.  
  838.  
  839. {/block:Posts}
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847. </div>
  848.  
  849. {block:ifUncontainedPosts}
  850. {block:Pagination}
  851. <div id="pagination">
  852. {block:PreviousPage}
  853. <a href="{PreviousPage}">previous page </a>
  854. {/block:PreviousPage}
  855. {block:NextPage}
  856. <a href="{NextPage}">next page</a>
  857. {/block:NextPage}
  858. </div>
  859. {/block:Pagination}
  860. {block:ifUncontainedPosts}
  861.  
  862. {block:ContentSource}
  863. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  864. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  865. {/block:SourceLogo}
  866. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  867. {/block:ContentSource}
  868.  
  869. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement