Advertisement
lovely-themesDOTcom

lovely-themesDOTcom/new1

Sep 4th, 2013
725
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.34 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. <html>
  3. <head>
  4.  
  5. <title>{Title}</title>
  6. <link rel="shortcut icon" href="{Favicon}">
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  8.  
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
  10. {block:IndexPage}
  11.  
  12. <script src="http://masonry.desandro.com/js/jquery-1.7.1.min.js"></script>
  13. <script src="http://masonry.desandro.com/jquery.masonry.min.js"></script>
  14. <script src="http://masonry.desandro.com/js/jquery.infinitescroll.min.js"></script>
  15.  
  16. <script>
  17. $(function(){
  18. var $container = $('#content');
  19. $container.imagesLoaded(function(){
  20. $container.masonry({
  21. itemSelector: '.posts',
  22. columnWidth: 200
  23. });
  24. });
  25. $container.infinitescroll({
  26. navSelector : "div#navigation",
  27. nextSelector : "div#navigation a#nextPage",
  28. itemSelector : '.posts',
  29. loading: {
  30. finishedMsg: ' ',
  31. img: ' '
  32. }
  33. },
  34. function( newElements ) {
  35. var $newElems = $( newElements ).css({ opacity: 0 });
  36. $newElems.imagesLoaded(function(){
  37. $newElems.animate({ opacity: 1 });
  38. $container.masonry( 'appended', $newElems, true );
  39. });
  40. }
  41. );
  42.  
  43. });
  44. </script>
  45.  
  46. {/block:IndexPage}
  47.  
  48. </head>
  49.  
  50.  
  51. <style type="text/css">
  52. body{
  53. background-color:#eee;
  54. background-image: url('http://static.tumblr.com/necydca/Frvmk94b5/01.png');
  55. background-attachment:fixed;
  56. color:#b5a69d;
  57. font-family: "04b03";
  58. font-size:8px;
  59. line-height:10px;
  60. font-weight:normal;
  61. text-align: justify;
  62. text-transform: uppercase;
  63. }
  64. @font-face {
  65. font-family: "04b03";
  66. src: url("http://static.tumblr.com/necydca/Eurmjztdk/04b_03__.ttf")
  67. }
  68.  
  69. #main{
  70. margin: 0 auto;
  71. margin-top:-10px;
  72. width:950px;
  73. background-color:#;
  74. border: 1px solid #;
  75. }
  76.  
  77. #header{
  78. width:320px; height: 152px;
  79. position:fixed;
  80. z-index:1;
  81. background: url('http://i.imgur.com/Wh05f6q.png');
  82. margin-top:0px;
  83. }
  84.  
  85. #sidebar{
  86. float: left;
  87. width: 300px;
  88. height:100%;
  89. padding:0px;
  90. margin-top:140px;
  91. position: fixed;
  92. z-index:1;
  93. }
  94.  
  95. #content{
  96. width: 630px;
  97. display: block;
  98. margin: 0 auto;
  99. text-align: justify;
  100. overflow: hidden;
  101. float:right;
  102. background-color:#;
  103. }
  104. .posts {
  105. float: right;
  106. width: 190px;
  107. overflow: auto;
  108. margin-left: 5px;
  109. }
  110. .postbox {
  111. background: #fff;
  112. border: 1px solid #e8e8e8;
  113. display: block;
  114. text-align: justify;
  115. overflow: hidden;
  116. padding: 5px;
  117. margin-bottom: 10px;
  118. }
  119. #footer{
  120. clear:both;
  121. }
  122. .box{
  123. background: #fff;
  124. border: 1px solid #e8e8e8;
  125. width:300px;padding:3px;
  126. padding:5px;
  127. }
  128.  
  129. #permalink{
  130. display:block;
  131. padding:1px;
  132. margin-top:0px;
  133. margin-bottom:0px;
  134. text-align:center;
  135. }
  136.  
  137. ::-webkit-scrollbar-thumb {
  138. background-color: #ccc;
  139. }
  140. ::-webkit-scrollbar {
  141. width: 10px; height: 4px;
  142. background: #ddd;
  143. }
  144.  
  145. a:link, a:active, a:visited{
  146. color:#ff3f3b2;
  147. text-decoration: none;
  148. }
  149. a:hover{
  150. color:#000;
  151. text-decoration: none;
  152. }
  153.  
  154. h1{
  155. color:#ff3f3b;
  156. font-family: "04b03";
  157. font-size:8px;
  158. text-align:center;
  159. line-height:10px; margin:0px;
  160. margin-top:1px; margin-bottom:2px;
  161. font-weight:normal;
  162. border-bottom: 1px dashed #fbc4c4;
  163. border-left: 5px solid #fbc4c4;
  164. border-right: 5px solid #fbc4c4;
  165. letter-spacing: 3px;
  166. }
  167.  
  168. h2{
  169. color:#a55aff;
  170. font-family: "04b03";
  171. font-size:8px;
  172. text-align:center;
  173. line-height:10px; margin:0px;
  174. margin-top:2px; margin-bottom:2px;
  175. font-weight:normal;
  176. border-bottom: 1px dashed #c294d7;
  177. border-left: 5px solid #c294d7;
  178. border-right: 5px solid #c294d7;
  179. letter-spacing: 3px;
  180. }
  181.  
  182. h3{
  183. color:#79d5bd;
  184. font-family: "04b03";
  185. font-size:8px;
  186. text-align:center;
  187. line-height:10px; margin:0px;
  188. margin-top:5px; margin-bottom:2px;
  189. font-weight:normal;
  190. border-bottom: 1px dashed #94a1e6;
  191. border-left: 5px solid #94a1e6;
  192. border-right: 5px solid #94a1e6;
  193. letter-spacing: 3px;
  194. width:122px; float:right;
  195. }
  196.  
  197.  
  198. a.nav1, a.nav1:visited {
  199. float:left; display:block;
  200. width:52px; margin:1px; padding:3px;
  201. text-align: center;
  202. font-family: "04b03";
  203. font-size:8px;
  204. color:#fff;
  205. text-transform:uppercase;
  206. font-weight:normal;
  207. background-color:#4ae1dd;
  208. }
  209. a.nav1:hover {
  210. letter-spacing:2px;
  211. }
  212.  
  213. a.nav2, a.nav2:visited {
  214. float:left; display:block;
  215. width:52px; margin:1px; padding:3px;
  216. text-align: center;
  217. font-family: "04b03";
  218. font-size:8px;
  219. color:#fff;
  220. text-transform:uppercase;
  221. font-weight:normal;
  222. background-color:#a55aff;
  223. }
  224. a.nav2:hover {
  225. letter-spacing:2px;
  226. }
  227.  
  228. a.nav3, a.nav3:visited {
  229. float:left; display:block;
  230. width:52px; margin:1px; padding:3px;
  231. text-align: center;
  232. font-family: "04b03";
  233. font-size:8px;
  234. color:#fff;
  235. text-transform:uppercase;
  236. font-weight:normal;
  237. background-color:#fbc4c4;
  238. }
  239. a.nav3:hover {
  240. letter-spacing:2px;
  241. }
  242.  
  243. a.nav4, a.nav4:visited {
  244. float:left; display:block;
  245. width:52px; margin:1px; padding:3px;
  246. text-align: center;
  247. font-family: "04b03";
  248. font-size:8px;
  249. color:#fff;
  250. text-transform:uppercase;
  251. font-weight:normal;
  252. background-color:#ff3f3b;
  253. }
  254. a.nav4:hover {
  255. letter-spacing:2px;
  256. }
  257.  
  258. .quote{
  259. color:#94a1e6;
  260. font-family: "04b03";
  261. font-size:8px;
  262. line-height:10px;
  263. font-weight:normal;
  264. }
  265.  
  266. .stuff{
  267. display: block;
  268. text-align:center;
  269. background-color:#fff;
  270. width:180px;
  271. margin-left:-10px;
  272. padding:3px;
  273. opacity: 0.8;
  274. transition: opacity 1s ease-in-out;
  275. -moz-transition: opacity 1s ease-in-out;
  276. -webkit-transition: opacity 1s ease-in-out;
  277. }
  278. .stuff a{
  279. text-align:center;
  280. color:#fbc4c4;
  281. font-family: "04b03";
  282. font-size:8px; line-height:10px;
  283. text-transform:uppercase;
  284. letter-spacing:0px; font-weight:normal;
  285. opacity: 1.0;
  286. }
  287.  
  288. .stuff a:hover{
  289. color: #ff3f3b;
  290. }
  291.  
  292. figure {
  293. display: block;
  294. position: relative;
  295. float: left;
  296. overflow: hidden;
  297. margin: 0px;}
  298. figcaption {
  299. position: absolute;
  300. padding: 5px; opacity: 0;
  301. -webkit-transition: all 0.6s ease;
  302. -moz-transition: all 0.6s ease;
  303. -o-transition: all 0.6s ease;}
  304. figure:hover figcaption {opacity:1;}
  305. .cap-bot figcaption {left: 0; bottom: -0%;}
  306. .cap-bot:hover figcaption {bottom: 0;}
  307.  
  308. b {color: #c294d7; font-weight: normal;}
  309. i {color:#94a1e6;}
  310. u {color:#4ae1dd;}
  311. s {color:#ff3f3b;}
  312.  
  313. .notesbox {
  314. background: #fff;
  315. display: block;
  316. text-align: justify;
  317. overflow: hidden;
  318. padding: 5px;
  319. margin-bottom: 10px;
  320. margin-left: 10px;
  321. margin-right:186px;
  322. float: right;
  323. width: 400px;
  324. }
  325. ol.notes {
  326. font-size: 8px;
  327. display:block;
  328. text-decoration: none;
  329. background: #fff;
  330. list-style-type: none;
  331. border-bottom: 1px solid #eee;
  332. }
  333. ol {
  334. list-style-position: inside;
  335. -webkit-padding-start: 0px;
  336. }
  337. ol.notes li.note {
  338. border-bottom: solid 1px #eee;
  339. padding: 4px;
  340. }
  341. ol.notes li.note img.avatar {
  342. width: 14px;
  343. padding: 2px;
  344. background: #fff;
  345. margin-bottom: -4px;
  346. }
  347.  
  348. img.border{
  349. padding:4px; margin:0px;
  350. margin-right:2px;
  351. border:1px solid #e8e8e8;
  352. background: #ff3f3b; /* Old browsers */
  353. background: -moz-linear-gradient(top, #ff3f3b 0%, #fbc4c4 44%, #c294d7 72%, #4ae1dd 100%); /* FF3.6+ */
  354. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3f3b), color-stop(44%,#fbc4c4), color-stop(72%,#c294d7), color-stop(100%,#4ae1dd)); /* Chrome,Safari4+ */
  355. background: -webkit-linear-gradient(top, #ff3f3b 0%,#fbc4c4 44%,#c294d7 72%,#4ae1dd 100%); /* Chrome10+,Safari5.1+ */
  356. background: -o-linear-gradient(top, #ff3f3b 0%,#fbc4c4 44%,#c294d7 72%,#4ae1dd 100%); /* Opera 11.10+ */
  357. background: -ms-linear-gradient(top, #ff3f3b 0%,#fbc4c4 44%,#c294d7 72%,#4ae1dd 100%); /* IE10+ */
  358. background: linear-gradient(to bottom, #ff3f3b 0%,#fbc4c4 44%,#9c294d7 72%,#4ae1dd 100%); /* W3C */
  359. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3f3b', endColorstr='#4ae1dd',GradientType=0 ); /* IE6-9 */
  360. }
  361.  
  362. .box3{
  363. float:left;
  364. width:160px;
  365. padding:4px;
  366. height: 110px;
  367. overflow: auto;
  368. }
  369. </style>
  370.  
  371.  
  372. <div id="main">
  373. <div id="header">
  374. </div>
  375.  
  376. <div id="sidebar">
  377. <div class="box"><figure class='cap-bot'>
  378. <img src="http://i.imgur.com/u9ZU5vT.png" width=120 class="border" align=left>
  379. <figcaption class='cap-bot'>
  380. <div class="stuff2">
  381. <a href="/" class="nav1">home</a>
  382. <a href="/ask" class="nav2">ask</a>
  383. <a href="/archive" class="nav3">archive</a>
  384. <a href="http://lovely-themes.com/" class="nav4">theme</a>
  385. </div></figcaption></figure>
  386.  
  387. <h2>{title}</h2>
  388. {description}<Br>
  389. <b>hover over the image for navivation</b>
  390. </div><p>
  391.  
  392. <div class="box">
  393. <div class="box3">
  394. <h1>likes & dislikes</h1>
  395. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam nisi lorem, pulvinar id, commodo feugiat, vehicula et, mauris. Aliquam mattis porta urna. Maecenas dui neque, rhoncus sed, vehicula vitae, auctor at, nisi. Aenean id massa ut lacus molestie porta.
  396. </div>
  397. <h3>favorites</h3>
  398. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  399. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  400. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  401. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a><Br>
  402. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  403. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  404. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.pngg"></a>
  405. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a><Br>
  406. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  407. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  408. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a>
  409. <a href="FRIEND-URL-HERE"><img src="http://i.imgur.com/5nsIVB3.png"></a><Br>
  410. </div><p>
  411.  
  412. </div>
  413. <br><br><br>
  414. <Script Language='Javascript'>
  415. <!--
  416. document.write(unescape('%3C%64%69%76%20%73%74%79%6C%65%3D%22%70%6F%73%69%74%69%6F%6E%3A%20%66%69%78%65%64%3B%20%6C%65%66%74%3A%20%35%70%78%3B%20%62%6F%74%74%6F%6D%3A%20%35%70%78%3B%20%62%61%63%6B%67%72%6F%75%6E%64%3A%20%23%30%30%30%3B%20%70%61%64%64%69%6E%67%3A%20%33%70%78%3B%20%74%65%78%74%2D%74%72%61%6E%73%66%6F%72%6D%3A%20%75%70%70%65%72%63%61%73%65%3B%22%3E%3C%61%20%68%72%65%66%3D%22%68%74%74%70%3A%2F%2F%6C%6F%76%65%6C%79%2D%74%68%65%6D%65%73%2E%63%6F%6D%22%3E%74%68%65%6D%65%3C%2F%61%3E%3C%2F%64%69%76%3E'));
  417. //-->
  418. </Script>
  419. <div id="content">
  420.  
  421. {block:Posts}
  422.  
  423. <div class="posts">
  424. <div class="postbox">
  425. <figure class='cap-bot'>
  426. {block:Text}
  427. {block:Title}
  428. <h1>{Title}</h1>
  429. {/block:Title}
  430. {Body}
  431. {/block:Text}
  432.  
  433. <div class="quote">
  434. {block:Quote}
  435. "{Quote}"<p>
  436. {/block:Quote}
  437. </div>
  438.  
  439. {block:Answer}
  440. <b>{Asker}</b>: {Question}<br>
  441. {Answer}
  442. {/block:Answer}
  443.  
  444. {block:Photo}
  445. <center>
  446. <img src="{PhotoURL-250}" width="180px" style="max-width: 180px;">
  447. </center>
  448. {/block:Photo}
  449.  
  450. {block:Audio}
  451. {block:ExternalAudio}(<a href="{ExternalAudioURL}">download!</a>)
  452. {/block:ExternalAudio}
  453. <center>{AudioPlayerWhite}</center> <p>
  454. {/block:Audio}
  455.  
  456. {block:Video}
  457. <center>{Video-250}</center><p>
  458. {/block:Video}
  459.  
  460. {block:Photoset}
  461. <center>{Photoset-250}</center>
  462. {/block:Photoset}
  463.  
  464. {block:Chat}
  465. <center>{block:Title}<h1>{Title}</h1>{/block:Title}
  466. {block:Lines}{block:Label}
  467. <br>{Label}{/block:Label} {Line} {/block:Lines}</center>
  468. {/block:Chat}
  469.  
  470. {block:Link}
  471. <a href="{URL}"><h1>{Name}</h1></a>
  472. {block:Description}{Description}{/block:Description}
  473. {/block:Link}
  474.  
  475. {block:IndexPage}<figcaption class='cap-bot'>
  476. <div class="stuff">
  477. <center><a href="{reblogurl}" target="_blank">Reblog</a> <b>&hearts;</b> <a href="{Permalink}" title="permalink">{NoteCountWithLabel}</a></center>
  478. </div></figcaption></figure>
  479. {/block:IndexPage}
  480.  
  481. </div>
  482. </div>
  483. {block:PostNotes}
  484.  
  485. <div class="notesbox">
  486. {block:RebloggedFrom}rebloged from <a href="{ReblogParentURL}">&hearts;</a> posted by <a href="{ReblogRootURL}">&copy;</a> {/block:RebloggedFrom} {PostNotes}</div>
  487. {/block:PostNotes}
  488. {/block:Posts}
  489.  
  490. {block:IndexPage}
  491. <div class="column navigation" id="navigation">
  492. {block:Pagination}
  493. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  494. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  495. </div>
  496. {/block:IndexPage}
  497.  
  498. </div>
  499. </div>
  500. </div>
  501. </div>
  502.  
  503. </body>
  504. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement