dansmilth

Fansite #9

Apr 2nd, 2016
4,827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!----------- FANSITE THEME #9 by mattdraddario :> ------------>
  5.  
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <!--------DEFAULT VARIABLES-------->
  13.  
  14. <meta name="color:background" content="#ffffff"/>
  15. <meta name="color:text" content="#000000"/>
  16. <meta name="color:links" content="#626262"/>
  17. <meta name="color:link hover" content="#905976"/>
  18. <meta name="color:navigation" content="#000000"/>
  19. <meta name="color:nav links" content="#ffffff"/>
  20. <meta name="color:nav links hover" content="#d31e1e"/>
  21. <meta name="color:borders" content="#eeeeee"/>
  22. <meta name="color:sidebar" content="#ffffff"/>
  23. <meta name="color:titles" content="#000000"/>
  24. <meta name="color:titles bg" content="#ffffff"/>
  25. <meta name="color:title icons background" content="#84dde7"/>
  26. <meta name="color:title icons" content="#ffffff"/>
  27. <meta name="color:title icons border" content="#73d1dc"/>
  28. <meta name="color:official links" content="#000000"/>
  29. <meta name="color:date info bg" content="#f8f8f8"/>
  30. <meta name="color:content background" content="#f8f8f8"/>
  31. <meta name="color:posts background" content="#ffffff"/>
  32. <meta name="color:question" content="#f8f8f8"/>
  33. <meta name="color:scrollbar" content="#000000"/>
  34. <meta name="color:scrollbar background" content="#ffffff"/>
  35.  
  36.  
  37.  
  38. <meta name="image:header" content=""/>
  39.  
  40. <meta name="text:link 1 title" content="link"/>
  41. <meta name="text:link 1 url" content=""/>
  42. <meta name="text:link 2 title" content="link"/>
  43. <meta name="text:link 2 url" content=""/>
  44. <meta name="text:link 3 title" content="link"/>
  45. <meta name="text:link 3 url" content=""/>
  46. <meta name="text:link 4 title" content="link"/>
  47. <meta name="text:link 4 url" content=""/>
  48. <meta name="text:link 5 title" content="link"/>
  49. <meta name="text:link 5 url" content=""/>
  50. <meta name="text:link 6 title" content="link"/>
  51. <meta name="text:link 6 url" content=""/>
  52.  
  53.  
  54. <meta name="text:official link 1 title" content="link"/>
  55. <meta name="text:official link 1 url" content=""/>
  56. <meta name="text:official link 2 title" content="link"/>
  57. <meta name="text:official link 2 url" content=""/>
  58. <meta name="text:official link 3 title" content="link"/>
  59. <meta name="text:official link 3 url" content=""/>
  60. <meta name="text:official link 4 title" content="link"/>
  61. <meta name="text:official link 4 url" content=""/>
  62.  
  63. <!----------------SCRIPTS---------------->
  64.  
  65. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  66. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  67. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  68. <script>
  69. (function($){
  70. $(document).ready(function(){
  71. $("[title]").style_my_tooltips({
  72. tip_follows_cursor:true,
  73. tip_delay_time:200,
  74. tip_fade_speed:300
  75. });
  76. });
  77. })(jQuery);
  78. </script>
  79.  
  80.  
  81. <link href='https://fonts.googleapis.com/css?family=Quicksand:400,700,300' rel='stylesheet' type='text/css'>
  82.  
  83. <script type="text/javascript">
  84. WebFontConfig = {
  85. google: { families: [ 'Quicksand:400,700,300:latin' ] }
  86. };
  87. (function() {
  88. var wf = document.createElement('script');
  89. wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  90. wf.type = 'text/javascript';
  91. wf.async = 'true';
  92. var s = document.getElementsByTagName('script')[0];
  93. s.parentNode.insertBefore(wf, s);
  94. })(); </script>
  95.  
  96. <link href='https://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
  97.  
  98. <script type="text/javascript">
  99. WebFontConfig = {
  100. google: { families: [ 'Lato:400,400italic,700,700italic,900,900italic:latin' ] }
  101. };
  102. (function() {
  103. var wf = document.createElement('script');
  104. wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  105. wf.type = 'text/javascript';
  106. wf.async = 'true';
  107. var s = document.getElementsByTagName('script')[0];
  108. s.parentNode.insertBefore(wf, s);
  109. })(); </script>
  110.  
  111. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  112.  
  113. <style type="text/css">
  114.  
  115. /*----------SCROLLBAR---------*/
  116.  
  117. ::-webkit-scrollbar {
  118. background-color: {color:scrollbar bg};
  119. height:8px;
  120. width:5px;
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:vertical {
  124. background-color:{color:scrollbar};
  125. height:50px;
  126. }
  127.  
  128. ::-webkit-scrollbar-thumb:horizontal {
  129. background-color:{color:scrollbar bg};
  130. height:8px;
  131. }
  132.  
  133. /*----------TOOLTIPS---------*/
  134.  
  135. #s-m-t-tooltip {
  136. max-width:300px;
  137. margin:15px;
  138. padding:5px;
  139. border:1px solid #eeeeee;
  140. border-radius:0px;
  141. background:#ffffff;
  142. color:{color:text};
  143. z-index:999999;
  144. font-size:7px;
  145. font-style:none;
  146. letter-spacing:2px;
  147. font-family:arial;
  148. text-transform:uppercase;
  149. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  150. }
  151.  
  152. /*----------BASICS---------*/
  153.  
  154. body {
  155. background:{color:background};
  156. color:{color:text};
  157. font-family:arial;
  158. font-size:11px;
  159. line-height:150%;
  160. margin:0;
  161. text-align:left;
  162. }
  163.  
  164. small {
  165. font-size:11px;
  166. }
  167.  
  168. a {
  169. color:{color:links};
  170. text-decoration:none;
  171. }
  172.  
  173. a:hover {
  174. color:{color:link hover};
  175. transition:1s;
  176. -webkit-transition:1s;
  177. -moz-transition:1s;
  178. -o-transition:1s;
  179. }
  180.  
  181. img {
  182. opacity:1;
  183. text-decoration:none;
  184. }
  185.  
  186. h1 {
  187. font-size:14px;
  188. font-weight:bold;
  189. font-family:'quicksand', sans-serif;
  190. line-height:150%;
  191. text-transform:uppercase;
  192. }
  193.  
  194. blockquote {
  195. padding-left:10px;
  196. margin:10px;
  197. border-left:1px solid #eee;
  198. }
  199.  
  200. /*----------HEADER---------*/
  201.  
  202. .header img {
  203. margin-bottom:0px;
  204. }
  205.  
  206. .navigation {
  207. width:1100px;
  208. background:{color:navigation};
  209. margin-top:-5px;
  210. margin-left:calc(50% - 550px);
  211. border-right:1px solid {color:borders};
  212. border-left:1px solid {color:borders};
  213. }
  214.  
  215.  
  216.  
  217. .links {
  218. text-align:center;
  219. padding:30px;
  220. text-transform:uppercase;
  221. font-size:12px;
  222. font-weight:bold;
  223. font-family:'quicksand', sans-serif;
  224. }
  225.  
  226. .links a {
  227. color:{color:nav links};
  228. margin-right:40px;
  229. }
  230.  
  231. .links a:hover {
  232. color:{color:link hover};
  233. }
  234.  
  235. /*----------SIDEBAR---------*/
  236.  
  237. .sidebar {
  238. position:absolute;
  239. width:350px;
  240. margin-top:50px;
  241. margin-left:20px;
  242.  
  243. }
  244.  
  245.  
  246.  
  247. .cat {
  248. border:1px solid {color:borders};
  249. margin-bottom:50px;
  250. background:white;
  251. border-top:none;
  252. }
  253.  
  254. .icon i {
  255. background:{color:title icons background};
  256. padding:23px;
  257. margin-top:-15px;
  258. margin-right:-15px;
  259. color:{color:title icons};
  260. border-left:1px solid {color:title icons border};
  261.  
  262.  
  263. }
  264.  
  265. .cti {
  266. text-transform:uppercase;
  267. font-size:15px;
  268. font-weight:900;
  269. padding:15px;
  270. color:{color:titles};
  271. text-align:left;
  272. letter-spacing:1px;
  273. background:white;
  274. border-bottom:1px solid {color:borders};
  275. background:{color:titles background};
  276. border:1px solid {color:borders};
  277. font-family:'Quicksand', sans-serif;
  278. }
  279.  
  280. .cti2 {
  281. font-size:8px;
  282. color:{color:titles};
  283. }
  284.  
  285.  
  286.  
  287. .welcome {
  288. text-align:justify;
  289. padding:20px;
  290. font-size:12px;
  291. margin-bottom:50px;
  292. background:white;
  293. border:1px solid {color:borders};
  294. border-top:none;
  295. font-family:'quicksand', sans-serif;
  296. font-weight:bold;
  297. }
  298.  
  299.  
  300. .offcat {
  301. border:1px solid {color:borders};
  302. margin-bottom:50px;
  303. background:white;
  304. border-top:none;
  305. border-bottom:none;
  306. }
  307.  
  308. .off a {
  309. display:block;
  310. padding:10px;
  311. border-bottom:1px solid {color:borders};
  312. text-transform:uppercase;
  313. font-size:10px;
  314. font-family:'quicksand', sans-serif;
  315. font-weight:bold;
  316. color:{color:official links};
  317. }
  318.  
  319. .off a:hover {
  320. margin-left:5px;
  321. }
  322.  
  323.  
  324.  
  325. .upcat {
  326. border:1px solid {color:borders};
  327. margin-bottom:50px;
  328. background:white;
  329. border-top:none;
  330. border-bottom:none;
  331. }
  332.  
  333.  
  334. .date {
  335. float:left;
  336. padding:10px;
  337. margin-right:10px;
  338. text-transform:uppercase;
  339. font-weight:bold;
  340. background:#f8f8f8;
  341. border-bottom:1px solid {color:borders};
  342. font-family:'quicksand', sans-serif;
  343. }
  344.  
  345. .e {
  346. padding:10px;
  347. border-bottom:1px solid {color:borders};
  348. font-family:'quicksand', sans-serif;
  349. font-weight:bold;
  350. }
  351.  
  352.  
  353. .spotlight img {
  354. margin-bottom:50px;
  355.  
  356. }
  357.  
  358.  
  359. .projects {
  360. padding:5px;
  361. text-align:left;
  362. margin-top:0px;
  363.  
  364. }
  365.  
  366.  
  367. .projects img {
  368. padding:5px;
  369. width:100px;
  370. float:left;
  371. margin-right:10px;
  372. border:1px solid #eee;
  373.  
  374. }
  375.  
  376.  
  377. .pinfo {
  378. height:100px;
  379. margin-top:25px;
  380. font-family:'quicksand', sans-serif;
  381. }
  382.  
  383.  
  384. .affcat {
  385. border:1px solid {color:borders};
  386. margin-bottom:50px;
  387. background:white;
  388. border-top:none;
  389. max-height:200px;
  390. overflow:scroll;
  391. height:200px;
  392. }
  393.  
  394. .affiliates {
  395. width:300px;
  396. padding:5px;
  397. text-align:left;
  398. text-transform:uppercase;
  399. font-size:9px;
  400. letter-spacing:1px;
  401.  
  402. }
  403.  
  404. .affiliates img {
  405. padding:5px;
  406. width:50px;
  407.  
  408.  
  409. }
  410.  
  411. .affiliates img:hover {
  412. -webkit-filter: grayscale(100%);
  413. z-index: -9999999999999999999999999px;
  414. -webkit-transition: all 0.9s ease-in-out;
  415. -moz-transition: all 0.9s ease-in-out;
  416. -o-transition: all 0.9s ease-in-out;
  417. -ms-transition: all 0.9s ease-in-out;
  418. transition: all 0.9s ease-in-out;
  419. }
  420.  
  421.  
  422. .sinfo {
  423. padding:10px;
  424. font-family:'quicksand', sans-serif;
  425. font-weight:bold;
  426. }
  427.  
  428.  
  429. /*----------PAGINATION---------*/
  430.  
  431. #pagi {
  432. margin-top:40px;
  433. margin-left:750px;
  434. font-family:'quicksand', sans-serif;
  435. text-transform:uppercase;
  436. font-size:15px;
  437. font-weight:bold;
  438. padding:20px;
  439. }
  440.  
  441. /*----------POSTS---------*/
  442.  
  443. .container {
  444. width:1060px;
  445. margin-left:calc(50% - 550px);
  446. background:{color:content background};
  447. padding:20px;
  448. margin-top:-5px;
  449.  
  450. }
  451.  
  452.  
  453. .entries {
  454. margin-top:50px;
  455. width:500px;
  456. margin-left:500px;
  457. background:{color:content background};
  458.  
  459. }
  460.  
  461. .posts {
  462. width:500px;
  463. margin-bottom:70px;
  464. background:{color:posts background};
  465. padding:20px;
  466. border:1px solid {color:borders};
  467. }
  468.  
  469.  
  470. /*----------QUOTE---------*/
  471.  
  472. .quote {
  473. padding:10px;
  474. font-size:15px;
  475. font-family:'quicksand', sans-serif;
  476. font-weight:bold;
  477. text-align:center;
  478. }
  479.  
  480. .quotesource {
  481. padding:10px;
  482. text-align:right;
  483. font-family:'quicksand', sans-serif;
  484. font-weight:bold;
  485. }
  486.  
  487. /*----------CHAT---------*/
  488.  
  489. .chat {
  490. line-height:150%;
  491. list-style:none;
  492.  
  493. }
  494.  
  495. .line.odd {
  496. padding:10px;
  497. background:#f8f8f8;
  498. }
  499.  
  500. .line.even {
  501. padding:10px;
  502. }
  503.  
  504. .label {
  505. text-transform:uppercase;
  506. font-size:10px;
  507. font-weight:bold;
  508. font-family:'quicksand', sans-serif;
  509.  
  510. }
  511.  
  512. /*----------AUDIO---------*/
  513.  
  514. .cover {
  515. position:relative;
  516. z-index:1;
  517. max-width:100px;
  518. padding:10px;
  519. float:left;
  520. }
  521.  
  522. .playbutton {
  523. width:20px;
  524. height:30px;
  525. overflow:hidden;
  526. position:relative;
  527. z-index:2;
  528.  
  529. }
  530.  
  531.  
  532. .playbox {
  533. background-color:#000;
  534. position:absolute;
  535. z-index:2;
  536. padding:15px 24px 13px 16px;
  537. margin-top:30px;
  538. margin-left:30px;
  539. opacity:0.5;
  540. }
  541.  
  542. .trackdetails {
  543. padding:10px;
  544. width:auto;
  545. height:100px;
  546. margin-top:10px;
  547. margin-left:100px;
  548. }
  549.  
  550. /*----------ASK---------*/
  551.  
  552. .question {
  553. padding:10px;
  554. background:{color:question};
  555. }
  556.  
  557.  
  558. .asker {
  559. text-transform:uppercase;
  560. }
  561.  
  562. .answer {
  563. margin:10px;
  564. }
  565.  
  566. /*----------INFO---------*/
  567.  
  568. .d {
  569. padding:10px;
  570. border:1px solid {color:borders};
  571. background:{color:date info bg};
  572. font-family:'quicksand', sans-serif;
  573. font-weight:bold;
  574. text-transform:uppercase;
  575. font-size:10px;
  576. margin-top:25px;
  577. }
  578.  
  579.  
  580.  
  581.  
  582. .tags {
  583. padding:10px;
  584. border:1px solid {color:borders};
  585. border-top:none;
  586. font-family:'lato', sans-serif;
  587. text-transform:uppercase;
  588. font-size:8px;
  589. }
  590.  
  591. .tags a {
  592. margin-right:10px;
  593. letter-spacing:1px;
  594. }
  595.  
  596.  
  597. /*----------POST NOTES---------*/
  598.  
  599. ol.notes {
  600. padding:0px;
  601. margin:25px 0px 0px -10px;
  602. list-style-type:none;
  603. }
  604.  
  605. ol.notes li.note {
  606. padding:10px;
  607. }
  608.  
  609. ol.notes li.note img.avatar {
  610. vertical-align:-4px;
  611. margin-right:10px;
  612. width:16px;
  613. height:16px;
  614. }
  615.  
  616. ol.notes li.note span.action {
  617. font-weight:none;
  618. }
  619.  
  620. ol.notes li.note .answer_content {
  621. font-weight:normal;
  622. }
  623.  
  624. ol.notes li.note blockquote {
  625. padding:4px 10px;
  626. margin:10px 0px 0px 25px;
  627. }
  628.  
  629. ol.notes li.note blockquote a {
  630. text-decoration:none;
  631. }
  632.  
  633. /*----------CREDIT---------*/
  634.  
  635. .credit {
  636. font-size:10px;
  637. position:fixed;
  638. font-weight:bold;
  639. bottom:5px;
  640. right:15px;
  641. z-index:10;
  642. text-align:right;
  643. letter-spacing:1px;
  644. padding:2px;
  645. }
  646.  
  647. .credit a {
  648. color:{color:links};
  649. text-decoration:none;
  650. }
  651.  
  652. .credit a:hover {
  653. color:{color:links hover};
  654. text-decoration:none;
  655. }
  656.  
  657. </style>
  658. </head>
  659.  
  660. <body>
  661.  
  662. <div class="credit">
  663. <a title="theme" href="http://mattdraddario.tumblr.com/" target="_blank">MD</a></div>
  664.  
  665.  
  666.  
  667.  
  668. <div class="navigation">
  669.  
  670.  
  671. <div class="links">
  672. <a href="/"><i class="fa fa-home"></i> Home</a>
  673. <a href="/ask"><i class="fa fa-envelope"></i> Inbox</a>
  674. <a href="{text:link 1 url}"><i class="fa fa-pencil-square-o"></i> {text:link 1 title}</a>
  675. <a href="{text:link 2 url}"><i class="fa fa-list"></i> {text:link 2 title}</a>
  676. <a href="{text:link 3 url}"><i class="fa fa-heartbeat"></i> {text:link 3 title}</a>
  677. <a href="{text:link 4 url}"><i class="fa fa-diamond"></i> {text:link 4 title}</a>
  678. <a href="{text:link 5 url}"><i class="fa fa-leaf"></i> {text:link 5 title}</a>
  679. <a href="{text:link 6 url}"><i class="fa fa-globe"></i> {text:link 6 title}</a>
  680. </div>
  681.  
  682.  
  683. </div>
  684.  
  685. <center><div class="header"><img src="{image:header}"></div></center>
  686.  
  687. <div class="container">
  688.  
  689. <div class="sidebar">
  690.  
  691.  
  692.  
  693. <!-- WELCOME -->
  694.  
  695. <div class="cti"><div class="icon"><i class="fa fa-home" style="float:right;"></i></div>Welcome <div class="cti2">emeraude toubia</div></div>
  696.  
  697.  
  698.  
  699.  
  700. <div class="welcome">
  701. {description}
  702.  
  703.  
  704.  
  705. </div>
  706.  
  707.  
  708. <!-- OFFICIAL LINKS -->
  709.  
  710. <div class="cti"><div class="icon"><i class="fa fa-globe" style="float:right;"></i></div>Official Links <div class="cti2">social media</div></div>
  711. <div class="offcat">
  712. <div class="off">
  713. <a href="{text:official link 1 url}">{text:official link 1 title} <i class="fa fa-twitter" style="float:right"></i></a>
  714. <a href="{text:official link 2 url}">{text:official link 2 title} <i class="fa fa-instagram" style="float:right"></i></a>
  715. <a href="{text:official link 3 url}">{text:official link 3 title} <i class="fa fa-youtube-play" style="float:right"></i></a>
  716. <a href="{text:official link 4 url}">{text:official link 4 title} <i class="fa fa-globe" style="float:right"></i></a>
  717. </div>
  718. </div>
  719.  
  720.  
  721. <!-- UPCOMING EVENTS -->
  722.  
  723. <div class="cti"><div class="icon"><i class="fa fa-calendar" style="float:right;"></i></div>Upcoming Events <div class="cti2">appearances, movies, tv shows etc</div></div>
  724.  
  725. <div class="upcat">
  726.  
  727.  
  728.  
  729. <div class="date">Date</div><div class="e">Event</div>
  730.  
  731. <div class="date">Date</div><div class="e">Event</div>
  732.  
  733. <div class="date">Date</div><div class="e">Event</div>
  734.  
  735. <div class="date">Date</div><div class="e">Event</div>
  736.  
  737.  
  738. </div>
  739.  
  740.  
  741. <!-- SPOTLIGHT -->
  742.  
  743.  
  744. <div class="cti"><div class="icon"><i class="fa fa-diamond" style="float:right;"></i></div>Spotlight <div class="cti2">picture of the week</div></div>
  745.  
  746.  
  747.  
  748. <div class="spotlight"><img src="http://static.tumblr.com/zy3qjic/WaDo50i6g/fg.png"></div>
  749.  
  750.  
  751.  
  752. <!-- PROJECTS -->
  753.  
  754.  
  755. <div class="cti"><div class="icon"><i class="fa fa-leaf" style="float:right;"></i></div>Projects <div class="cti2">tv shows, movies, etc...</div></div>
  756.  
  757. <div class="cat">
  758.  
  759.  
  760. <div class="projects">
  761.  
  762. <img src="http://static.tumblr.com/zy3qjic/7eHo50idi/lwbr002_copy.png">
  763. <div class="pinfo"><ul> <b>Title</b><br>
  764. <b>Info</b>: Info<br>
  765. <b>Info</b>: Info<br>
  766. <b>Info</b>: Info</ul></div>
  767.  
  768.  
  769. <img src="http://static.tumblr.com/zy3qjic/7eHo50idi/lwbr002_copy.png">
  770. <div class="pinfo"><ul> <b>Title</b><br>
  771. <b>Info</b>: Info<br>
  772. <b>Info</b>: Info<br>
  773. <b>Info</b>: Info</ul></div>
  774.  
  775.  
  776. <img src="http://static.tumblr.com/zy3qjic/7eHo50idi/lwbr002_copy.png">
  777. <div class="pinfo"><ul> <b>Title</b><br>
  778. <b>Info</b>: Info<br>
  779. <b>Info</b>: Info<br>
  780. <b>Info</b>: Info</ul></div>
  781.  
  782.  
  783. </div></div>
  784.  
  785.  
  786. <!-- AFFILIATES -->
  787.  
  788.  
  789. <div class="cti"><div class="icon"><i class="fa fa-heart-o" style="float:right;"></i></div>Affiliates <div class="cti2">blogs you should follow</div></div>
  790.  
  791. <div class="affcat">
  792.  
  793.  
  794. <div class="affiliates">
  795.  
  796. <center><a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  797. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  798. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  799. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  800. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  801. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  802. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  803. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  804. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  805. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  806. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  807. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/1muo50imd/dfgh.png"/></a>
  808. </center>
  809.  
  810.  
  811. </div>
  812. </div>
  813.  
  814.  
  815. <!-- MEMBERS -->
  816.  
  817. <div class="cti"><div class="icon"><i class="fa fa-user" style="float:right;"></i></div>Editors <div class="cti2">our team</div></div>
  818.  
  819. <div class="cat">
  820.  
  821.  
  822. {block:GroupMembers}
  823. <table style="margin-top:0px;">
  824. {block:GroupMember}
  825. <tr>
  826. <td style="width:40px;">
  827. <img src="{GroupMemberPortraitURL-40}" width="40px;" height="auto;" style="margin-right: 10px; padding: 5px; border: 1px solid #f1f1f1">
  828. </td>
  829. <td style="width:290px; height:auto;">
  830. <div id="m" style="margin-bottom:10px;">
  831. <a href="{GroupMemberURL}" style="font-weight:bold; text-transform:uppercase; font-family:arial; letter-spacing:0px; font-size:8px;">{GroupMemberName}</a><br>{GroupMemberTitle}</div>
  832.  
  833. </tr>
  834. {/block:GroupMember}
  835. </table>
  836. {/block:GroupMembers}
  837. </div>
  838.  
  839.  
  840. <!-- INFO -->
  841.  
  842. <div class="cti"><div class="icon"><i class="fa fa-bookmark" style="float:right;"></i></div>About the site <div class="cti2">info about the blog</div></div>
  843.  
  844. <div class="cat">
  845.  
  846. <div class="sinfo">
  847. <b>About:</b> <br>
  848. <b>Admins:</b> <br>
  849. <b>Designed by:</b> <br>
  850. <b>Online:</b> <br>
  851. <b>Visits:</b> <br><br>
  852.  
  853. Our site claims no credit for any images posted on this site unless stated otherwise. Images and information on this blog are copyright to their respectful owners.
  854. </div>
  855.  
  856.  
  857.  
  858. </div>
  859.  
  860. </div>
  861.  
  862. <div class="entries">
  863.  
  864. {block:Posts}
  865.  
  866. <div class="posts">
  867.  
  868. {block:Text}
  869. <h1>{block:Title}{Title}{/block:Title}</h1>
  870. {Body}{/block:Text}
  871.  
  872.  
  873. {block:Photo}
  874. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  875. {block:Caption}{Caption}{/block:Caption}
  876. {/block:Photo}
  877.  
  878.  
  879. {block:Photoset}
  880. {Photoset-500}
  881. {block:Caption}{Caption}{/block:Caption}
  882. {/block:Photoset}
  883.  
  884.  
  885. {block:Quote}
  886. <div class="quote">"{Quote}"</div>
  887. {block:Source}<div class="quotesource"> — {Source}</div>
  888. {/block:Source}{/block:Quote}
  889.  
  890.  
  891. {block:Link}
  892. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  893. {block:Description}{Description}{/block:Description}
  894. {/block:Link}
  895.  
  896.  
  897. {block:Chat}
  898. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  899. {/block:Chat}
  900.  
  901.  
  902. {block:Audio}
  903.  
  904. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  905.  
  906. {block:AlbumArt}
  907. <img src="{AlbumArtURL}" class="cover">
  908. {/block:AlbumArt}
  909.  
  910.  
  911. <div class="trackdetails"><br>
  912. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  913.  
  914. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  915.  
  916. <b>PLAYS:</b> {FormattedPlayCount}</div>
  917.  
  918.  
  919. {block:Caption}
  920. <div class="caption">{Caption}</div>
  921. {/block:Caption}
  922. {/block:Audio}
  923.  
  924.  
  925. {block:Video}
  926. {Video-500}
  927. {block:Caption}{Caption}{/block:Caption}
  928. {/block:Video}
  929.  
  930.  
  931. {block:Answer}
  932. <div class="question">
  933. <div class="asker"><b>{Asker} said:</b></div>
  934. {Question}</div>
  935. <div class="answer">
  936. {Answer}</div>
  937. {/block:Answer}
  938.  
  939.  
  940. <div class="d">
  941. {block:Date}
  942. <b><a href="{Permalink}" title="{TimeAgo}" style="text-decoration:underline;">{Month} {DayOfMonth}{DayOfMonthSuffix}</b></a>
  943. {/block:Date}
  944. &nbsp;&nbsp; / &nbsp;&nbsp;
  945. <a href="{Permalink}">{NoteCount} notes</a>
  946. &nbsp;&nbsp;
  947.  
  948. / &nbsp;&nbsp;<a href="{ReblogURL}" target="_blank" class="details">reblog</a>
  949.  
  950.  
  951. <font style="float:right">
  952. {block:RebloggedFrom}
  953. <a href="{ReblogParentURL}" style="text-decoration:underline;">{ReblogParentName} </a>
  954. {block:ContentSource}
  955. <a href="{ReblogRootURL}" "{ReblogRootName}">/ <font style="text-decoration:underline;">{ReblogRootName}</font></a>
  956. {/block:ContentSource}
  957. {/block:RebloggedFrom}
  958. </font style>
  959. </div>
  960.  
  961.  
  962.  
  963.  
  964. {block:HasTags}
  965. <div class="tags">
  966. {block:Tags}
  967. <a href="{TagURL}">#{Tag}</a>
  968. {/block:Tags}
  969. </div>
  970. {/block:HasTags}
  971. </div>
  972.  
  973.  
  974. {block:PostNotes}
  975. {PostNotes}
  976. {/block:PostNotes}
  977. {/block:Posts}</div>
  978.  
  979. <div id="pagi">
  980. {block:IndexPage}
  981. <div id="pagination">
  982. {block:Pagination}
  983. {block:JumpPagination length="5"}
  984. {block:CurrentPage}
  985. <span class="current_page">{PageNumber}</span>
  986. {/block:CurrentPage}
  987. {block:JumpPage}
  988. <a class="jump_page" href="{URL}">{PageNumber}</a>
  989. {/block:JumpPage}
  990. {/block:JumpPagination}
  991. {/block:Pagination}
  992. </div>
  993. {/block:IndexPage}
  994. </div>
  995.  
  996. {block:ContentSource}
  997. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  998. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  999. {/block:SourceLogo}
  1000. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  1001. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  1002.  
  1003. </body>
Advertisement
Add Comment
Please, Sign In to add comment