Advertisement
luhans

unf / almost fy dj

Dec 20th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.37 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <!--
  5. THANK YOU TO:
  6. http://codepen.io/ngot3382/pen/lizso
  7.  
  8. -->
  9. <head> <!-- DEFAULT VARIABLES -->
  10. <title>{Title}</title>
  11. <meta name="color:background" content="#fafafa" />
  12. <meta name="color:text" content="#443b3b" />
  13. <meta name="color:link" content="#555252" />
  14. <meta name="color:desc" content="#ffffff" />
  15. <meta name="color:Top Links" content="#fafafa" />
  16. <meta name="color:top background" content="#1f1f1f" />
  17. <meta name="color:entry hover" content="#1f1f1f" />
  18. <meta name="color:entries" content="#FFFFFC"/>
  19. <meta name="color:sidebar" content="#FFFFFC" />
  20. <meta name="color:ask" content="#FFFFFC" />
  21. <meta name="color:title" content="#FFFFFC" />
  22. <meta name="image:sidebar" content="http://static.tumblr.com/643ba232dd5080730980c5568182976b/rzl30kg/Jojn3l5ms/tumblr_static_ih.gif"/>
  23. <meta name="text:Title Text" content="YOU ARE MY WONDERLAND.">
  24. <meta name="text:link one url" content="http://">
  25. <meta name="text:link one name" content="link one">
  26. <meta name="text:link two url" content="http://">
  27. <meta name="text:link two name" content="link two">
  28. <meta name="text:link three url" content="http://">
  29. <meta name="text:link three name" content="link three">
  30. <meta name="text:link four url" content="http://">
  31. <meta name="text:link four name" content="link four">
  32. <meta name="if:About Title" content="1"/>
  33. <meta name="if:Extra Title" content="1"/>
  34. <meta name="if:Links Title" content="1"/>
  35. <meta name="if:Extra Table" content="1"/>
  36. <meta name="text:Extra Table Title" content="Extra">
  37. <meta name="text:Extra Table Content" content="Optional">
  38.  
  39. <link rel="shortcut icon" href="{Favicon}">
  40. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  41. <link rel="shortcut icon" href="{Favicon}">
  42. <title>{Title}</title>
  43. <link rel="shortcut icon" href="{Favicon}">
  44. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  45.  
  46. {block:Description}
  47. <meta name="description" content="{MetaDescription}" />
  48. {/block:Description}
  49. <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  50. <link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Open+Sans|Anonymous+Pro:400,700' rel='stylesheet' type='text/css'>
  52.  
  53. <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  56.  
  57. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
  58.  
  59.  
  60. <script>
  61. // Built upon http://codepen.io/uniZero/details/fvkjJ
  62.  
  63. // Controls fade for nav menu
  64. var lastScrollTop = 0;
  65. $(window).scroll(function(event){
  66. var st = $(this).scrollTop();
  67. if (st > lastScrollTop && st > 50){
  68. $('header').addClass('hidden');
  69. } else {
  70. $('header').removeClass('hidden');
  71. }
  72. lastScrollTop = st;
  73. });
  74.  
  75.  
  76.  
  77.  
  78.  
  79. </script>
  80.  
  81.  
  82.  
  83. <style type="text/css">
  84.  
  85. body{
  86. background:{color:Background};
  87. background: #eee url("http://cfile29.uf.tistory.com/original/221D43345465C2100AA70A") no-repeat fixed center center / cover;
  88. height: 50%;
  89. -webkit-animation: move 21s ease-in-out;
  90. -moz-animation: move 21s ease-in-out;
  91. animation: move 21s ease-in-out;
  92. font-family: arial, sans-serif;
  93. font-size: 11px;
  94. letter-spacing: px;
  95. color:{color:text};
  96. height: 100%;
  97.  
  98. }
  99. span {
  100. line-height:110%;
  101. }
  102.  
  103. a:link, a:visited, a:active{
  104. color:{color:link};
  105. outline: none;
  106. -moz-outline-style: none;
  107. text-decoration:none;
  108. }
  109.  
  110. a img{
  111. border:none;
  112. }
  113.  
  114. blockquote{
  115. padding:0px;
  116. padding-left:5px;
  117. margin:5px;
  118. border-left:1px dotted #288992;
  119. }
  120.  
  121. blockquote img{
  122. display:block;
  123. }
  124.  
  125. blockquote p{
  126. padding:0px;
  127. margin:0px;
  128. }
  129.  
  130. blockquote blockquote{
  131. position:relative;
  132. left:-5px;
  133. margin-top:0px;
  134. margin-right:0px;
  135. padding-right:0px;
  136. }
  137.  
  138. ul.chat, .chat ol, .chat li {
  139. list-style:none;
  140. margin:0px;
  141. padding:0px;
  142. }
  143.  
  144.  
  145. #center{
  146. max-width:1200px;
  147. margin:auto!important;
  148. background-color:#ffffff;
  149. border-left:1px solid #000000;
  150. border-right:1px solid #000000;
  151. }
  152.  
  153. #container{
  154. margin-left:50px;
  155. height:100%;
  156. font-size:8px;
  157. font-family:roboto;
  158. letter-spacing:1px;
  159. width: 300px;
  160. margin-top:80px;
  161. position:absolute;
  162. background:transparent;
  163. padding:10px;
  164. }
  165.  
  166.  
  167. #entry {
  168. width:500px;
  169. padding: 10px;
  170. margin-bottom:5px;
  171. display: block;
  172. background:{color:desc};;
  173.  
  174. }
  175. #entry:hover {
  176. background:{color:entry hover};;
  177.  
  178. }
  179.  
  180. #post{
  181. width:450px;
  182. background-color:#;
  183. }
  184.  
  185. #top{
  186. background-color:#fafafa;
  187. height:300px;
  188. }
  189.  
  190. #desc {
  191. width:280px;
  192. text-align:justify;
  193. font-family: arial, sans-serif;
  194. font-size: 11px;
  195. letter-spacing: 0px;
  196. padding:20px;
  197. background-color:{color:desc};
  198. line-height:20px;}
  199.  
  200.  
  201. b {font-weight: bold;color : {color:text}; }
  202. i, em {font-weight:italic;color: {color:text};}
  203. u {font-weight:none; color: {color:underline};}
  204.  
  205.  
  206.  
  207. .asker {
  208. width: 490px;
  209. background-color: {color:ask};
  210. padding: 35px;
  211. margin-left:-30px;
  212. margin-top:-30px;
  213. font-size: 11px;
  214. font-weight: bold;
  215. text-transform: uppercase;
  216. line-height: 11px; }
  217.  
  218. .asker img{
  219. float: left;
  220. padding: 0px 5px 0px 0px;}
  221.  
  222. .asker a{
  223. font-size: 11px;
  224. font-weight: bold;
  225. color:{color:link};
  226. line-height: 11px;
  227. padding: 0;
  228. margin: 0;}
  229.  
  230. .question {
  231. font-size: 10px;
  232. font-weight: normal;
  233. color:{color:text};
  234. padding:20px
  235. overflow:hidden;
  236. text-transform: none;}
  237.  
  238. .answer {
  239. font-size:11px!important;
  240. padding-left: 4px;
  241. padding-right: 4px;
  242. padding-top: 4px;}
  243.  
  244. .answer img {
  245. max-width: 370px;}
  246.  
  247. #acont{
  248. z-index:2;
  249. display:block;
  250. width: 100px;
  251. height:100px;
  252. background-color:#ffffff;
  253. opacity:0.7;
  254. position:absolute;
  255. }
  256.  
  257. #acont:hover{
  258. -webkit-transition: all 0.2s ease-in-out;
  259. -moz-transition: all 0.2s ease-in-out;
  260. -o-transition: all 0.2s ease-in-out;
  261. transition: all 0.2s ease-in-out;
  262. opacity:0.6;}
  263.  
  264. #audioplayer{
  265. width:20px;
  266. height:20px;
  267. overflow:hidden;
  268. margin: 38px 0px 0px 35px;
  269. background-color:transparent;}
  270.  
  271. .atext {
  272. font-family:;
  273. font-size: 8px;
  274. line-height: 7px;
  275. letter-spacing: 2px;
  276. color: {color:text}!important;
  277. margin-top:-5px;
  278. margin-left: 101px;
  279. text-transform:;
  280. height:18px;
  281. text-decoration: none;
  282. display: block;
  283. padding: 25px 5px 41px 6px;
  284. width:280px;
  285. text-align:center;}
  286.  
  287. .atext:hover {
  288. color:{color:links};
  289. background-color:{color:entries};
  290. -webkit-transition: opacity 0.7s linear;
  291. opacity: 0.9s;
  292. -webkit-transition: all 0.6s ease-out;
  293. -moz-transition: all 0.6s ease-out;
  294. transition: all 0.6s ease-out;
  295. }
  296.  
  297. .audio{
  298. position:absolute;
  299. width:40px;
  300. height:40px;}
  301.  
  302. .aimg{
  303. width:100px;
  304. height:100px;
  305. position:absolute;}
  306.  
  307. .aimg img{
  308. float:left;
  309. opacity:0.6;
  310. width:100px;
  311. }
  312.  
  313. #pagina {
  314. position:fixed;
  315. width:100%;
  316. bottom:0;
  317. font-family:'montserrat';
  318. font-weight:bold;
  319. padding:10px;
  320. border-top:1px solid #000000;
  321. background-color:rgba(255,255,255,0.8);
  322. }
  323. #pagina a:link{
  324. background-color: {color:desc};
  325. padding:5px;}
  326.  
  327. #pagina a:visited {
  328. padding:5px;}
  329.  
  330. #pagina a:active {
  331. color: #fff;}
  332.  
  333. #pagina:hover{
  334. background:;}
  335.  
  336. #header{
  337. margin-left:-8px;
  338. background: {color:top background};
  339. color: white;
  340. margin-top:-10px;
  341. position: fixed;
  342. font-family: Droid Sans;
  343. font-size: 18px;
  344. z-index:9999;
  345. padding: 10px;
  346. height:50px;
  347. width:100%;
  348. }
  349.  
  350. .table{
  351. width:605px;
  352. margin-left:250px;
  353. margin-top:-40px;}
  354.  
  355. .bmenu{
  356. padding: 0px;
  357. margin: 0 0 0px 0;
  358. position: absolute;
  359. }
  360. .bmenu li{
  361. font-size: 10px;
  362. width:100px;
  363. margin-left:2px;
  364. display: inline-block;
  365. }
  366. .bmenu li a{
  367. font-size:10px;
  368. text-transform: uppercase;
  369. color:{color:Top Links};
  370. padding: 8px 10px 8px 10px;
  371. letter-spacing:0px;
  372. font-family: roboto;
  373. background:{color:top background};
  374. -webkit-transition: all 0.2s linear;
  375. -moz-transition: all 0.2s linear;
  376. -o-transition: all 0.2s linear;
  377. -ms-transition: all 0.2s linear;
  378. transition: all 0.2s linear;
  379. }
  380. .bmenu li a:hover{
  381. color:{color:Text};
  382. background:{color:background};
  383. -webkit-transition: all 0.2s linear;
  384. -moz-transition: all 0.2s linear;
  385. -o-transition: all 0.2s linear;
  386. -ms-transition: all 0.2s linear;
  387. transition: all 0.2s linear;
  388. }
  389. }
  390. #topbar{
  391. width:752px;
  392. margin-left:450px;
  393. padding: 10px 25px 15px 25px;
  394. background-color:#000000;
  395. }
  396.  
  397. #titletop{
  398. width:500px;
  399. margin:auto;
  400. }
  401.  
  402. .lable{
  403. width:230px;
  404. Position:fixed;
  405. margin-left:450px;
  406. margin-top:150px;
  407. }
  408.  
  409.  
  410. #infobox {
  411. text-align:right;
  412. letter-spacing:px;
  413. margin-left:px;
  414. overflow:hidden;
  415. padding:5px;
  416. margin-top:-5px;
  417. width:455px;
  418. background-color: ;
  419. }
  420.  
  421. .tags a{
  422. text-align:center;
  423. text-transform:uppercase;
  424. letter-spacing:px;
  425. font-size:8px;
  426. padding: 5px;
  427. font-weight:bold;
  428. letter-spacing:px;
  429. font-family:arial;
  430. display:;
  431. margin-left:2px;
  432. margin-top:7px;
  433. background-color:{color:taglinks};}
  434.  
  435. .tags a:hover{
  436. text-decoration:underline;}
  437.  
  438. .tags img{
  439. margin-top:20px;
  440. float:left;
  441. margin-left: 5px;}
  442. .tagsymbol{
  443. font-family:'WebSymbolsRegular';
  444. color:{color:font};
  445. line-height:8px;
  446. font-size:9px;}
  447. .quotesymbol{
  448. font-family: arial bold;
  449. margin-top:18px;
  450. font-size:60px;
  451. opacity:.3;
  452. color: {color:link};
  453. position: absolute;
  454. }
  455.  
  456.  
  457. *, *:after, *:before {
  458. -webkit-box-sizing: border-box;
  459. -moz-box-sizing: border-box;
  460. box-sizing: border-box;
  461. }
  462.  
  463. @keyframes move {
  464. 0% {-webkit-background-size: 150%;
  465. -moz-background-size: 150%;
  466. background-size: 150%;
  467. background-position: center;}
  468. 100% {-webkit-background-size: 100%;
  469. -moz-background-size: 100%;
  470. background-size: 100%;
  471. background-position: center;}}
  472.  
  473. html, body {
  474. margin: 0;
  475. padding: 0;
  476. height: 100%;
  477. }
  478.  
  479. section {
  480. height: 500px; }
  481.  
  482. nav {
  483. display: inline-block;
  484. }
  485.  
  486. header {
  487. z-index: 1;
  488. position: fixed;
  489. width: 100%;
  490. background: rgba(255, 255, 255, 0.975);
  491.  
  492. -webkit-transition: top .5s ease;
  493. -moz-transition: top .5s ease;
  494. transition: top .5s ease;
  495. width: 100%;
  496. border-bottom: 2px solid #000000;
  497. top: 0;
  498. }
  499. /*
  500. header ul{
  501. display: inline-block;
  502. }*/
  503.  
  504. header ul li{
  505. display: inline-block;
  506. padding: 0 32px 0 0;
  507. }
  508.  
  509. header ul li a{
  510. font-size: 1em;
  511. text-transform: uppercase;
  512. color: #bbb;
  513. font-family: 'Anonymous Pro';
  514. font-size:20px;
  515. font-weight:700;
  516. text-decoration: none;
  517. letter-spacing: .4px;
  518. }
  519.  
  520. header ul li a:hover{
  521. color: #8c8;
  522. }
  523.  
  524. header .logo {
  525. color: #fff;
  526. background: #000000;
  527. display: inline-block;
  528. height: 60px;
  529. line-height: 60px;
  530. text-align: center;
  531. text-decoration: none;
  532. text-transform: uppercase;
  533. letter-spacing: 2px;
  534. font-weight: 700; }
  535.  
  536. .hidden{
  537. top:-6em;
  538. }
  539.  
  540. .hero .inner {
  541. background: rgba(0, 0, 0, 0.035) url("http://tenthtin.com/host-img/random/effect_2.png");
  542. }
  543.  
  544. #hero1 {
  545.  
  546. }
  547.  
  548. #hero2 {
  549. background: #eee url("#") fixed center center / cover;
  550. }
  551. /*
  552. .hero, .content {
  553. text-align: center;
  554. position: relative;
  555. width: 100%; }
  556. */
  557. .inner {
  558. height: 100%;
  559. text-align: center; }
  560. .inner:before {
  561. content: '';
  562. display: inline-block;
  563. height: 100%;
  564. vertical-align: middle;
  565. margin-right: -0.25em;
  566. /* Adjusts for spacing */ }
  567.  
  568. .copy {
  569. display: inline-block;
  570. vertical-align: middle;}
  571.  
  572. .text{
  573. padding: 5px;
  574. vertical-align: bottom;
  575. }
  576.  
  577. .hero h1, .hero p {
  578. color: #fff; }
  579.  
  580. .content h1, .content p {
  581. color: #333; }
  582.  
  583. h1 {
  584. margin: 0px;
  585. font-weight: 400;
  586. font-size: 32px; }
  587.  
  588.  
  589.  
  590. @media (max-width: 730px) {
  591. header a {width: 100%; }
  592. header ul {margin: 8px auto;}
  593. header .logo {height: 46px; line-height: 46px;}
  594. }
  595.  
  596. @media (min-width: 730px) {
  597. header a {width: 25%; } }
  598.  
  599. @media (max-width: 480px) {
  600. #head { margin-top: 20px; }
  601.  
  602. header {border-bottom: none;}
  603. header a {width: 86%; }
  604.  
  605. #menu .box {
  606. position: fixed;
  607. text-align: center;
  608. overflow: hidden;
  609. z-index: -1;
  610. opacity: 0;
  611. font-size:40px;
  612. width: 100%;
  613. height: 100%;
  614. left: 0px;
  615. top: 0px;
  616. background: rgba(0,0,0,0.8);
  617. -webkit-transition: all 0.3s ease-in-out;
  618. -moz-transition: all 0.3s ease-in-out;
  619. transition: all 0.3s ease-in-out;
  620. }
  621.  
  622. #menu ul {
  623. position: relative;
  624. top: 20%;
  625.  
  626. -webkit-transform: scale(2);
  627. -moz-transform: scale(2);
  628. -ms-transform: scale(2);
  629. transform: scale(2);
  630. -webkit-transition: all 0.3s ease-in-out;
  631. -moz-transition: all 0.3s ease-in-out;
  632. transition: all 0.3s ease-in-out;
  633. }
  634.  
  635. #menu li {
  636. display: inline-block;
  637. margin: 20px;
  638. }
  639.  
  640. #menu li a {
  641. border-radius: 3px;
  642. padding: 15px;
  643. border: 1px solid transparent;
  644. text-decoration: none;
  645. font-size: 18px;
  646.  
  647. color: #fff;
  648. -webkit-transition: all 0.2s ease-in-out;
  649. -moz-transition: all 0.2s ease-in-out;
  650. transition: all 0.2s ease-in-out;
  651. }
  652.  
  653. #menu li a:hover { border-color: #fff; }
  654.  
  655. #menu li a i {
  656. margin-right: 5px;
  657. font-size: 24px;
  658. }
  659.  
  660. #toggle-nav-label {
  661. color: #3d3d3d;
  662. text-align: center;
  663. line-height: 30px;
  664. font-size: 22px;
  665. display: block;
  666. cursor: pointer;
  667. position: relative;
  668. z-index: 500;
  669. width: 30px;
  670. height: 30px;
  671. border-radius: 5px;
  672. }
  673.  
  674. #toggle-nav { display: none; }
  675.  
  676. #toggle-nav:checked ~ .box {
  677. opacity: 1;
  678. z-index: 400;
  679. }
  680.  
  681. #toggle-nav:checked ~ .box ul {
  682. -webkit-transform: scale(1);
  683. -moz-transform: scale(1);
  684. transform: scale(1);
  685. }
  686.  
  687. #toggle-nav:checked ~ #toggle-nav-label {color: #fff;}}
  688.  
  689. @media (min-width: 481px) {
  690. #menu #toggle-nav, #menu #toggle-nav-label {
  691. display: none;
  692. }
  693. }
  694.  
  695. .spantitle {
  696. border:3px solid #000000;
  697. padding:15px;
  698. font-family: 'Montserrat', sans-serif;
  699. font-weight:700;
  700. text-transform:uppercase;
  701. font-size:40px;
  702. }
  703. .one {
  704. background-color:#000000;
  705. color:#ffffff;
  706. }
  707.  
  708. .two {
  709. color:#000000;
  710. }
  711.  
  712. hr {
  713. border: 0;
  714. height: 0;
  715. border-top: 1px solid rgba(0, 0, 0, 0.9);
  716. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  717. }
  718.  
  719. .sidetitle {
  720. text-transform:uppercase;
  721. letter-spacing: 2px;
  722. font-weight: 700;
  723. font-family: 'Montserrat', sans-serif;
  724. color:#000000;
  725. font-family: ;
  726. font-size:10px;
  727. padding:8px;
  728. margin-top:-10px;
  729. text-align:center;
  730. width:100px;
  731.  
  732. }
  733.  
  734. .datetitle {
  735. text-transform:uppercase;
  736. letter-spacing: 2px;
  737. font-weight: 700;
  738. font-family: 'Montserrat', sans-serif;
  739. color:#000000;
  740. background:#ffffff;
  741. font-family: ;
  742. font-size:10px;
  743. padding:8px;
  744. margin-top:20px;
  745. text-align:center;
  746. border:1px solid #000000;
  747.  
  748. }
  749.  
  750. .info{
  751. letter-spacing:1px;
  752. padding-bottom:10px;
  753. font-size:11px;
  754. padding-top:5px;
  755. height:30px;
  756. font-weight:bold;
  757. background-color:transparent;
  758. text-transform:uppercase;
  759. font-family:'montserrat';
  760. {block:PermalinkPage}
  761. width:500px;
  762. {/block:PermalinkPage}
  763.  
  764. {block:IndexPage}width:100%;
  765. {/block:IndexPage}
  766. display:block;
  767. }
  768.  
  769. .info a:hover{
  770. background-color:white;
  771. font-style:italic;
  772. }
  773. </style>
  774. </head>
  775. <body>
  776.  
  777. <header>
  778. <a href="/" class="logo">FY ! DUJUN</a>
  779.  
  780. <nav id="menu">
  781. <input type="checkbox" id="toggle-nav"/>
  782. <label id="toggle-nav-label" for="toggle-nav"><i class="fa fa-bars"></i></label>
  783.  
  784. <div class="box">
  785. <ul>
  786. <li><a href="#">INDEX</a></li>
  787. <li><a href="#">MESSAGE</a></li>
  788. <li><a href="#">PROFILE</a></li>
  789. <li><a href="#">MORE</a></li>
  790. </ul>
  791. </div>
  792. </nav>
  793. </header>
  794.  
  795. <section id="hero1" class="hero">
  796. <div class="inner">
  797. <div class="copy">
  798. <br>
  799.  
  800. <span class="spantitle one">Fy</span><span class="spantitle two">Dujun</span>
  801.  
  802. </div>
  803. </div>
  804. </section>
  805.  
  806. <div id="center">
  807.  
  808.  
  809.  
  810.  
  811.  
  812. <div id="post">
  813. {block:Posts}
  814.  
  815. <div id="entries">
  816.  
  817.  
  818.  
  819. <!-- Text -->
  820. {block:Text}
  821. <br><center>
  822. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  823. {block:Date}<a href="{Permalink}">(<i class="fa fa-pencil"></i>) text</a><br>{/block:Date}</b></font>
  824. </center>
  825. <div id="entry">
  826. {block:Title}<font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:links}; font:bold 25px 'Roboto', serif; text-transform:uppercase; letter-spacing:5px;">ϟ {Title}</font>{/block:Title}
  827. <br>
  828. {Body}
  829. </div>
  830. {/block:Text}
  831.  
  832. <!-- Photo -->
  833. {block:Photo}
  834. <br><center>
  835. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  836. {block:Date}<a href="{Permalink}">(<i class="fa fa-picture-o"></i>) PHOTO</a><br>{/block:Date}</b></font>
  837. </center>
  838. <div id="entry">
  839. {LinkOpenTag}
  840. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width="410px">
  841. {LinkCloseTag}
  842. {block:Caption}<p>{Caption}</p>{/block:Caption}
  843. </div>
  844. {/block:Photo}
  845.  
  846. <!-- Photoset -->
  847. {block:Photoset}
  848. <br><center>
  849. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  850. {block:Date}<a href="{Permalink}">(<i class="fa fa-picture-o"></i>) PHOTOSET</a><br>{/block:Date}</b></font>
  851. </center>
  852. <div id="entry">
  853. {Photoset-400}
  854. {block:Caption}<p>{Caption}</p>{/block:Caption}
  855. </div>
  856. {/block:Photoset}
  857.  
  858.  
  859. <!-- Quote -->
  860. {block:Quote}
  861. <div id="entry">
  862. <center>
  863. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  864. {block:Date}<a href="{Permalink}">(<i class="fa fa-quote-left"></i>) QUOTE</a><br>{/block:Date}</b></font>
  865. </center>
  866. <div class="quotesymbol">“</div>
  867. <div style="border-left:1px solid #F1F1F1; margin-left:37px; padding:9px;"><span class="quote"><font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:links}; font:normal 15px 'Roboto', serif; text-transform:uppercase; letter-spacing:5px;">{quote}</font><br>
  868. {block:Source}— <FONT style="FONT-WEIGHT: normal; FONT-SIZE: 5pt; TEXT-TRANSFORM: uppercase; COLOR: {color:link}; font-style:; LINE-HEIGHT: 8pt; LETTER-SPACING: 3pt; text-transform:;">{Source}</font>{/block:Source}
  869. </div>
  870. </div>
  871. {/block:Quote}
  872.  
  873. <!-- Link -->
  874. {block:Link}
  875. <br><center>
  876. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  877. {block:Date}<a href="{Permalink}">(<i class="fa fa-link"></i>) LINK</a><br>{/block:Date}</b></font>
  878. </center>
  879. <div id="entry">
  880. <a href="{URL}" target="_blank"><font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:links}; font:bold 25px 'Roboto', serif; text-transform:uppercase; letter-spacing:5px;">{Name}</font></a>
  881. {block:Description}<p>{Description}</p>{/block:Description}
  882. </div>
  883. {/block:Link}
  884.  
  885. <!-- Chat -->
  886. {block:Chat}
  887. <br><center>
  888. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  889. {block:Date}<a href="{Permalink}">(<i class="fa fa-weixin"></i>) chat</a><br>{/block:Date}</b></font>
  890. </center>
  891. <div id="entry">
  892. {block:Title}<font style="text-align:justify; FONT-WEIGHT: normal; COLOR: {color:links}; font:normal 15px 'Roboto', serif; text-transform:uppercase; letter-spacing:5px;">{title}</font>{/block:Title}
  893. {block:Lines}
  894. {block:Label}{Label}{/block:Label} {Line}</br>
  895. {/block:Lines}
  896. </div>
  897. {/block:Chat}
  898.  
  899. {block:Audio}
  900. <br><center>
  901. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  902. {block:Date}<a href="{Permalink}">(<i class="fa fa-music"></i>) AUDIO</a><br>{/block:Date}</b></font>
  903. </center>
  904. <div id="entry">
  905. <div class="audio"><div id="acont"><div id="audioplayer">{AudioPlayerWhite}</div></div>
  906. <div class="aimg"><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg"></div>{block:AlbumArt}<div class="aimg"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}</div>
  907. <div class="atext"><font style="FONT-WEIGHT: normal; margin-top:-50px; COLOR: {color:text}; font:bold 20px 'monsterrat';font-style:; letter-spacing:-1px; padding:10px;">{block:TrackName}{TrackName}{/block:TrackName}</font><br>
  908. <FONT style="FONT-WEIGHT: normal; FONT-SIZE: 5pt; TEXT-TRANSFORM: uppercase; COLOR: {color:link}; font-style:; LINE-HEIGHT: 8pt; LETTER-SPACING: 1pt; text-transform:;">{block:Artist}{Artist}{/block:Artist} ♫ {block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</font></div>
  909. {block:Caption}<br><br><br><br>{Caption}{/block:Caption}
  910. </div>
  911. {/block:Audio}
  912.  
  913.  
  914. <!-- Video -->
  915. {block:Video}
  916. <br><center>
  917. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  918. {block:Date}<a href="{Permalink}">(<i class="fa fa-play"></i>) video</a><br>{/block:Date}</b></font>
  919. </center>
  920. <div id="entry">
  921. {Video-400}
  922. {block:Caption}{Caption}{/block:Caption}
  923. </div>
  924. {/block:Video}
  925.  
  926. <!-- Message -->
  927. {block:Answer}
  928. <br><center>
  929. <font style="text-align:right; FONT-WEIGHT: normal; COLOR: {color:title}; font:normal 15px 'montserrat', serif; text-transform:uppercase; letter-spacing:5px;">
  930. {block:Date}<a href="{Permalink}">(<i class="fa fa-envelope"></i>) ASK</a><br>{/block:Date}</b></font>
  931. </center>
  932. <div id="entry">
  933. <div class="asker"><img src="{AskerPortraitURL-24}">{Asker} asked:
  934. <div class="question">{Question}</div></div>
  935. <div class="answer">{Answer}</div>
  936. </div>
  937. {/block:Answer}
  938.  
  939.  
  940. <span class="info">
  941. <div style="float:right; height:20px"><a href="{ReblogURL}"><font style="font-size:15px;"><i class="fa fa-refresh"></i></font></a> {LikeButton color="grey" size="13"}</div>
  942. <i class="fa fa-plus"></i>
  943. {block:Date}
  944. POSTED ON <a href="{Permalink}">{ShortMonth} {DayOfMonthWithZero}, {Year} </a>
  945. {/block:Date}
  946.  
  947. {block:NoteCount}
  948. <br><i class="fa fa-heart-o"></i> with {NoteCountWithLabel}
  949. {/block:NoteCount}
  950.  
  951. {block:ContentSource}
  952. <i class="fa fa-home"></i> <a href="{SourceURL}">{SourceTitle}</a>
  953. {/block:ContentSource} {block:RebloggedFrom}(<i class="fa fa-refresh"></i> <a href="{ReblogParentURL}">{ReblogParentName}</a>){/block:RebloggedFrom}
  954. <hr>
  955. </span>
  956.  
  957. {block:HasTags}<br><i class="fa fa-tag"></i> {block:Tags}<span class="tags"><a href="{TagURL}" title="{Tag}">{Tag}</a> </span></a>{/block:Tags}{/block:HasTags}
  958. <br><br><br><br>
  959. <!-- Permalink page -->
  960. {block:PermalinkPage}
  961.  
  962. {block:PostNotes}
  963. {PostNotes}
  964. {/block:PostNotes}
  965.  
  966. {/block:PermalinkPage}
  967.  
  968. <!-- Other -->
  969. {block:ContentSource}
  970. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  971. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  972. {/block:SourceLogo}
  973. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  974. {/block:ContentSource}
  975.  
  976. </div>
  977.  
  978. {/block:Posts}
  979. </div>
  980. <!-- END POSTS --></div>
  981.  
  982. <div id="pagina"><center>
  983. {block:Pagination}
  984. {block:PreviousPage}
  985. <a href="{PreviousPage}">←</a>
  986. {/block:PreviousPage}
  987.  
  988. {block:JumpPagination length="5"}
  989. {block:CurrentPage}
  990. <span class="current_page">{PageNumber}</span>
  991. {/block:CurrentPage}
  992.  
  993. {block:JumpPage}
  994. <a class="jump_page" href="{URL}">{PageNumber}</a>
  995. {/block:JumpPage}
  996. {/block:JumpPagination}
  997.  
  998. {block:NextPage}
  999. <a href="{NextPage}">→</a>
  1000. {/block:NextPage}
  1001. {block:Pagination}<br> </center>
  1002. </div>
  1003. </body>
  1004. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement