Trevania

A simple idea

Jul 16th, 2013
1,297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.92 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4.  
  5. <link href='http://fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
  6.  
  7. <link rel="shortcut icon" href="{Favicon}" />
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  9. <title>{Title}</title>
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12. <!-- DEFAULTS -->
  13. <meta name="color:background" content="#ffffff">
  14. <meta name="color:posts" content="#fcfcfc">
  15. <meta name="color:info" content="#fdfdfd">
  16. <meta name="color:tag" content="#fdfdfd">
  17. <meta name="color:text" content="#c0bdb8" />
  18. <meta name="color:link hover" content="#fdfdfd" />
  19. <meta name="color:title" content="#d5d2d2" />
  20. <meta name="color:link" content="#c0bdb8" />
  21. <meta name="color:scrollbar" content="#c0bdb8" />
  22. <meta name="color:scrollbg" content="#ffffff" />
  23.  
  24.  
  25. <meta name="image:sidebar1" content=""/>
  26. <meta name="image:sidebar2" content=""/>
  27. <meta name="image:sidebar3" content=""/>
  28. <meta name="image:sidebar4" content=""/>
  29. <meta name="image:sidebar5" content=""/>
  30.  
  31.  
  32. <meta name="text:Link1" content="/" />
  33. <meta name="text:Link1 Title" content="LINK1" />
  34. <meta name="text:Link2" content="/" />
  35. <meta name="text:Link2 Title" content="LINK2" />
  36. <meta name="text:Link3" content="/" />
  37. <meta name="text:Link3 Title" content="LINK3" />
  38. <meta name="text:Link4" content="/" />
  39. <meta name="text:Link4 Title" content="LINK4" />
  40. <meta name="text:Link5" content="/" />
  41. <meta name="text:Link5 Title" content="LINK5" />
  42.  
  43.  
  44. <meta name="if:Visible" content "0"/>
  45. <meta name="if:HoverTags" content "1"/>
  46.  
  47.  
  48.  
  49. <script type="text/javascript"
  50. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  51.  
  52.  
  53.  
  54.  
  55.  
  56. </head>
  57.  
  58.  
  59. <style type="text/css">
  60.  
  61.  
  62. ::-webkit-scrollbar-thumb:vertical {
  63. background-color:{color:scrollbar};
  64. height:100px;
  65. }
  66.  
  67. ::-webkit-scrollbar-thumb:horizontal {
  68. background-color:{color:scrollbar};
  69. height:10px !important;
  70. }
  71.  
  72. ::-webkit-scrollbar {
  73. height:7px;
  74. width:7px;
  75. background-color:{color:scrollbg};
  76. }
  77.  
  78. .ask {
  79. align:right;
  80. background: {color:scrollbar};
  81. margin:7px 0px 5px 66px;
  82. padding:10px;
  83. position: relative;
  84. -moz-border-radius:5px;
  85. -webkit-border-radius:5px;
  86. border-radius:5px;
  87. color:white;
  88. }
  89.  
  90. .ask a:link {
  91. color:#000;
  92. }
  93.  
  94.  
  95. .ask p {
  96. margin:1px 0px;
  97. }
  98.  
  99. .ask span {
  100. display:block;
  101. position:absolute;
  102. width:1px;
  103. height:1px;
  104. font-size: 0;
  105. line-height: 1px;
  106. left:-10px;
  107. top:10px;
  108. border-top:7px solid transparent;
  109. border-bottom:7px solid transparent;
  110. border-right:10px solid {color:scrollbar};
  111. }
  112.  
  113. .askborder {
  114. float: left;
  115. margin: 1px 4px 0 0;
  116. padding: 2px;
  117. background:{color:link};
  118. }
  119.  
  120. #askbg a {
  121. color:white;
  122. font-weight:bold;
  123. }
  124.  
  125. ::-moz-selection {
  126. background-color:{color:scrollbg};
  127. color: {color:scrollbar};
  128. }
  129.  
  130. ::selection {
  131. background-color:{color:scrollbg};
  132. color: {color:scrollbar};
  133. }
  134.  
  135. body {color:{color:text};
  136. background-color:{color:background};
  137. background-image: url('{image:Background}');
  138. background-attachment:fixed;
  139. font-family:calibri;
  140. font-size:11px;
  141. line-height:110%;
  142. text-align:justify;
  143. }
  144.  
  145. a:link, a:active, a:visited{
  146. color: {color:link};
  147. text-decoration:none;
  148. }
  149.  
  150. a:hover {
  151. color:{color:link hover};
  152. -webkit-transition: all 0.4s linear;
  153. -moz-transition: all 0.4s linear;
  154. transition: all 0.4s linear;
  155. }
  156.  
  157. color:{color:title};font-style:auto;
  158. -webkit-transition: all 0.4s ease-in;
  159. -moz-transition: all 0.4s ease-in;
  160. -o-transition: all 0.4s ease-in;
  161. transition: all 0.4s ease-in;
  162. }
  163.  
  164. small{font-size:auto}
  165. big{font-size:auto}
  166. b, strong{color:{color:scrollbar};}
  167. i, em {color:{color:text};}
  168. u{color:#483d43;}
  169. p{margin-top:6px; margin-bottom:6px}
  170. blockquote {padding:0px;
  171. padding-left:10px;
  172. margin:8px;
  173. border-left:2px solid {color:text};
  174. }
  175.  
  176. img a{
  177. border:none;
  178. width:100%;
  179. }
  180.  
  181.  
  182.  
  183. #container {
  184. background-color:transparent;
  185. width: 800px;
  186. text-align: center;
  187. margin: 0 auto -10px auto;
  188. }
  189.  
  190. #entries {
  191. margin: 20px 0 -10px 260px;
  192. margin-right:62px;
  193. float:right;
  194. text-align: justify;
  195. padding:20px;
  196. }
  197.  
  198. #posts {
  199. margin: 22px -4px 0px 0px;
  200. width: 500px;
  201. text-align: justify;
  202. padding: 10px;
  203. }
  204.  
  205.  
  206. #posts:hover .tags{
  207. {block:IfHoverTags}
  208. margin-left: 527px;
  209. opacity: 2;
  210. -webkit-transition: all 0.7s ease;
  211. -moz-transition: all 0.7s ease;
  212. -o-transition: all 0.7s ease;
  213. {block:IfHoverTags}
  214. }
  215.  
  216. #posts .tags{
  217. {block:IfVisible}
  218. margin-left: 527px;
  219. opacity: 2;
  220. -webkit-transition: all 0.7s ease;
  221. -moz-transition: all 0.7s ease;
  222. -o-transition: all 0.7s ease;
  223. {/block:IfVisible}
  224. }
  225.  
  226. #sidebar {
  227. width:220px;
  228. padding:0px;
  229. margin-top:0px;
  230. margin-left:-170px;
  231. height:100%;
  232. position:fixed;
  233. }
  234.  
  235. #sidebarimg img {
  236. margin-top:250px;
  237. margin-left:35px;
  238. width:200px;
  239. height:auto;
  240. }
  241.  
  242. #description img {
  243. max-width:250px;
  244. text-align:center;
  245. }
  246.  
  247. #links {
  248.  
  249. font:6px 'Noto Serif', serif;
  250. color:{color:border2}
  251. letter-spacing: 1px;
  252. width:220px;
  253. text-align:left;
  254. padding-bottom:0px;
  255. text-transform:uppercase;
  256. margin-left:250px;
  257. margin-top:-115px;
  258. position:fixed;
  259.  
  260. }
  261.  
  262. #links a{
  263. -webkit-transition: all 0.4s ease;
  264. -moz-transition: all 0.4s ease;
  265. -o-transition: all 0.4s ease;
  266. }
  267.  
  268. #description {
  269. text-align:justify;
  270. display:block;
  271. width:260px;
  272. height:auto;
  273. font-family: 'Noto Serif', serif;
  274. font-size: 8px;
  275. padding:0px;
  276. text-transform:none;
  277. border-top: solid 1px #f5f5f5;
  278. padding-top:10px;
  279. position:absolute;
  280. margin-left:32px;
  281. margin-top:10px;
  282. }
  283.  
  284. #pagination {
  285. font-family: 'Noto Serif', serif;
  286. font-weight:bold;
  287. text-align:left;
  288. margin-left:80px;
  289. margin-top:345px;
  290. font-size:16px;
  291. position:fixed;
  292. text-transform:uppercase;
  293.  
  294. }
  295.  
  296. #pagination a {
  297. color:{color:scrollbar};
  298. }
  299.  
  300.  
  301. #credit{
  302. position:fixed;
  303. bottom:10px;
  304. right:10px;
  305. font-size:6px;
  306. font-family: 'Noto Serif', serif;
  307. color:{color:text};
  308. text-transform:uppercase;
  309. letter-spacing: 0px;
  310. font-style:normal;
  311. }
  312.  
  313.  
  314. h1{
  315. color:{color:title};
  316. font-family:{font:text};
  317. font-size:12px;
  318. line-height:12px;
  319. letter-spacing:0px;
  320. font-weight:italic;
  321. text-transform:uppercase;
  322. margin:0px;
  323. padding:0px;
  324. text-align:center;
  325. }
  326.  
  327. h2{
  328. color:{color:text};
  329. font-family:{font:link};
  330. font-size:12px;
  331. line-height:12px;
  332. letter-spacing:0px;
  333. font-weight:normal;
  334. text-transform:none;
  335. margin:0px;
  336. padding:0px;
  337. margin-bottom:-5px;
  338. text-align:center;
  339. }
  340.  
  341. #info{
  342. padding-top:5px;
  343. display:block;
  344. padding-bottom:5px;
  345. width:500px;
  346. color:{color:tag};
  347. font-size:8px;
  348. font-family: 'Noto Serif', serif;
  349. text-align:right;
  350. text-transform:uppercase;
  351. border-top: solid 1px #e7e7e7;
  352. }
  353.  
  354. .tags {
  355. opacity: 0;
  356. border-left: solid 1px {color:scrollbar};
  357. padding:10px;
  358. position: absolute;
  359. margin-left: 500px;
  360. width: 180px;
  361. text-align:left;
  362. font-size: 8px;
  363. text-transform: uppercase;
  364. -webkit-transition: all 0.7s ease;
  365. -moz-transition: all 0.7s ease;
  366. -o-transition: all 0.7s ease;
  367. }
  368.  
  369.  
  370. .tags a:hover {
  371. font-style:italic;
  372.  
  373. }
  374.  
  375.  
  376. #questions {
  377. background-color:{color:info};
  378. color: {color:text};
  379. padding:2px;
  380. margin-top: 6px;
  381. margin-bottom:2px;
  382. font-family:calibri;
  383. font-size:11px;
  384. text-transform:lowercase;
  385. border-bottom:1px {color:text};
  386. text-align:center;
  387. }
  388.  
  389. #questions a {
  390. color:{color:link};
  391. }
  392.  
  393. #permalink {
  394. padding-bottom:5px;
  395. text-align:right;
  396. }
  397.  
  398. .audio{
  399. background-color:black;
  400. display:block;
  401. }
  402.  
  403. .user_1 .label {color:{color:link}; font-weight:bold}
  404. .user_2 .label {color:{color:text}; font-weight:bold}
  405. .user_3 .label {color:{color:link}; font-weight:bold}
  406. .user_4 .label {color:{color:text}; font-weight:bold}
  407.  
  408. ul.chat, .chat ol, .chat li {
  409. list-style:none;
  410. margin:0px;
  411. padding:0px;
  412. }
  413.  
  414. .notes img{
  415. width:10px;
  416. position:relative;
  417. top:1px;
  418. }
  419.  
  420. ol.notes, .notes li{
  421. width:490px;
  422. list-style:none;
  423. margin:0px 0 -1px 5px;
  424. padding:0px;
  425. }
  426.  
  427. </style>
  428. <style type="text/css">{CustomCSS}</style>
  429.  
  430.  
  431.  
  432. </head>
  433. <body>
  434.  
  435. <div id="container">
  436. <div id="sidebar">
  437. <div id="sidebarimg">
  438. <script language="JavaScript">
  439.  
  440. <!--
  441.  
  442. function random_imglink(){
  443.  
  444. var myimages=new Array()
  445.  
  446.  
  447. myimages[1]="{image:Sidebar1}"
  448.  
  449. myimages[2]="{image:Sidebar2}"
  450.  
  451. myimages[3]="{image:Sidebar3}"
  452.  
  453. myimages[4]="{image:Sidebar4}"
  454.  
  455. myimages[5]="{image:Sidebar5}"
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462. var imagelinks=new Array(0)
  463.  
  464.  
  465. imagelinks[1]="{image:Sidebar1}"
  466.  
  467. imagelinks[2]="{image:Sidebar2}"
  468.  
  469. imagelinks[3]="{image:Sidebar3}"
  470.  
  471. imagelinks[4]="{image:Sidebar4}"
  472.  
  473. imagelinks[5]="{image:Sidebar5}"
  474.  
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481. var ry=Math.floor(Math.random()*myimages.length)
  482.  
  483.  
  484. if (ry==0)
  485.  
  486. ry=1
  487.  
  488. document.write('<img src="'+myimages[ry]+'" width="285"></a>')
  489.  
  490. }
  491.  
  492.  
  493. random_imglink()
  494.  
  495. </script></div>
  496.  
  497. <div id="links">
  498. <a href="/">home</a>&nbsp; <br>
  499. <a href="/ask">Inbox</a>&nbsp; <br>
  500.  
  501. {block:ifLink1}
  502. <a href="{text:Link1}">
  503. {text:Link1 Title}</a>
  504. {/block:ifLink1}&nbsp;
  505.  
  506. <br>
  507.  
  508. {block:ifLink2}
  509. <a href="{text:Link2}">
  510. {text:Link2 Title}</a>
  511. {/block:ifLink2}&nbsp;
  512.  
  513. <br>
  514.  
  515. {block:ifLink3}
  516. <a href="{text:Link3}">
  517. {text:Link3 Title}</a>
  518. {/block:ifLink3}&nbsp;
  519.  
  520. <br>
  521.  
  522. {block:ifLink4}
  523. <a href="{text:Link4}">
  524. {text:Link4 Title}</a>
  525. {/block:ifLink4}&nbsp;
  526.  
  527. <br>
  528.  
  529. {block:ifLink5}
  530. <a href="{text:Link5}">
  531. {text:Link5 Title}</a>
  532. {/block:ifLink5}&nbsp;
  533.  
  534.  
  535. </div>
  536. <center><div id="description">{Description}</div></center>
  537. </div>
  538.  
  539.  
  540.  
  541. <div id="credit">
  542. <a href="http://tomhardies.tumblr.com/">©</a>
  543. </div>
  544.  
  545. <div id="pagination">
  546. {block:Pagination}
  547. {block:PreviousPage}
  548. <a href="{PreviousPage}">«</a>&nbsp;
  549. {/block:PreviousPage}
  550. {block:NextPage}
  551. <a href="{NextPage}">»</a>
  552. {/block:NextPage}
  553. {/block:Pagination}
  554. </div>
  555.  
  556.  
  557. <div id="entries">
  558.  
  559. {block:posts}
  560.  
  561. <div id="posts">
  562.  
  563.  
  564. <div class="tags">{block:HasTags}
  565. {block:Tags}<b>#</b> <a href="{TagURL}">{Tag}</a> &nbsp;{/block:Tags}{/block:HasTags}<br></div>
  566.  
  567.  
  568. {block:Text}
  569. {block:Title}<h1>{Title}</h1>{/block:Title}
  570. {Body}{/block:Text}
  571.  
  572.  
  573. {block:Quote}<h2>“{Quote}” — {Source}</h2><br>{/block:Quote}
  574. {block:Link}
  575. <a href="{URL}"><h1>{Name}</h1>
  576. </a>
  577.  
  578. {block:Description}
  579. <p>{Description}</p>
  580. {/block:Description}
  581. {/block:Link}
  582.  
  583. {block:Photo}<center>
  584. <img src="{PhotoURL-500}"/></center>
  585. {block:Caption}{Caption}{/block:Caption}
  586. {/block:Photo}
  587.  
  588. {block:Photoset}<center>
  589. {Photoset-500}</center>
  590. {block:Caption}{Caption}
  591. {/block:Caption}{/block:Photoset}
  592.  
  593. {block:Chat}<ul class="chat">
  594. {block:Lines}<li class="user_{UserNumber}">
  595. {block:Label}<span class="label">{Label}</span>
  596. {/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}<br>
  597.  
  598. {block:Video}{Video-500}
  599. {block:Caption}{Caption}
  600. {/block:Caption}{/block:Video}
  601.  
  602. {block:Answer}<img src="{AskerPortraitURL-40}" align="center" class="askborder"><div class="ask">
  603. <div id="askbg">
  604. <span></span>{Asker}: {Question}&nbsp;</div></div>
  605. <br>
  606. <blockquote>{Answer}{/block:Answer}</blockquote>
  607.  
  608.  
  609. {block:Audio}<div id="_">{AudioPlayerWhite}<br>
  610. {block:Caption}{Caption}{/block:Caption}<br clear="all" /></div> {/block:Audio}
  611.  
  612.  
  613.  
  614.  
  615. <div id="info">
  616. <div id="permalink">
  617. {block:PermalinkPage}
  618. {block:RebloggedFrom}
  619. <br><a href="{ReblogParentURL}">via</a> - {/block:RebloggedFrom}
  620. {block:ContentSource}<a href="{SourceURL}">source</a><br>
  621. {/block:ContentSource}
  622. {/block:PermalinkPage}
  623. {block:Date}
  624. <a href="{Permalink}">
  625. <a href="{Permalink}"> {TimeAgo}</a>{/block:Date}
  626. {block:NoteCount}with <a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  627. </div>
  628. </div> <p>
  629.  
  630. </div>
  631.  
  632.  
  633.  
  634. {/block:Posts}
  635.  
  636. {block:PostNotes}{PostNotes}{/block:PostNotes}<br />
  637. </div>
  638. </div>
  639.  
  640. </body>
  641.  
  642.  
  643. </div></div></div></div></div></div></div></div></div></div>
  644. </html>
Add Comment
Please, Sign In to add comment