Advertisement
jojiwoji

arabella

Sep 24th, 2014
4,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.96 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 xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head>
  5.  
  6. <!---
  7.  
  8. theme by jo @ sentimental themes
  9.  
  10. do not claim | do not remove credit | have a nice day
  11.  
  12. ----->
  13.  
  14. <title>{Title}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  18.  
  19. <meta name="color:background" content="#fff"/>
  20. <meta name="color:text" content="#000"/>
  21. <meta name="color:links" content="#333"/>
  22. <meta name="color:link shadow" content="#9a9a9a"/>
  23. <meta name="color:post shadow" content="#9a9a9a"/>
  24. <meta name="color:sidebar" content="#fff"/>
  25. <meta name="color:posts" content="#fff"/>
  26. <meta name="color:borders" content="#000"/>
  27.  
  28. <meta name="image:background" content="">
  29.  
  30. <meta name="if:pattern bg" content="0"/>
  31. <meta name="if:cover bg" content="1"/>
  32. <meta name="if:2 columns" content="0"/>
  33. <meta name="if:transparent posts" content="0"/>
  34. <meta name="if:post shadow" content="1"/>
  35. <meta name="if:hide captions" content="0"/>
  36.  
  37. <meta name="text:navi title" content=""/>
  38. <meta name="text:link 1" content=""/>
  39. <meta name="text:link 1 url" content=""/>
  40. <meta name="text:link 2" content=""/>
  41. <meta name="text:link 2 url" content=""/>
  42. <meta name="text:link 3" content=""/>
  43. <meta name="text:link 3 url" content=""/>
  44. <meta name="text:link 4" content=""/>
  45. <meta name="text:link 4 url" content=""/>
  46.  
  47. <!-- TOOLTIPS-->
  48.  
  49. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  50.  
  51. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  52. <script>
  53. (function($){
  54. $(document).ready(function(){
  55. $("a[title]").style_my_tooltips({
  56. tip_follows_cursor:true,
  57. tip_delay_time:30,
  58. tip_fade_speed:300,
  59. attribute:"title"
  60. });
  61. });
  62. })(jQuery);
  63. </script>
  64.  
  65. <!---LINKS--->
  66.  
  67. <script type="text/javascript">
  68. jQuery(document).ready(function() {
  69. jQuery(".nav").hide();
  70. jQuery(".click").click(function()
  71. {
  72. jQuery(this).next(".nav").slideToggle(500);
  73. });});
  74. </script>
  75.  
  76. <!---MASONRY--->
  77.  
  78. {block:if2columns}
  79. <script src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script>
  80. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  81. <script type="text/javascript">
  82. $(window).load(function () {
  83. $('#entries').masonry({
  84. itemSelector : "#posts",
  85. },
  86. function() { $('#entries').masonry({ appendedContent: $(this) }); }
  87. );
  88. });
  89. </script>
  90. {/block:if2columns}
  91.  
  92. <style type="text/css">
  93.  
  94. /*GENERAL*/
  95.  
  96. body {
  97. background:{color:background};
  98. {block:IfPatternBg}
  99. background:url('{image:background}') center center fixed repeat;
  100. {/block:IfPatternBg}
  101. {block:IfCoverBg}
  102. background:url('{image:background}') center center fixed no-repeat;
  103. -webkit-background-size: cover;
  104. -moz-background-size: cover;
  105. -o-background-size: cover;
  106. background-size: cover;
  107. {/block:IfCoverBg}
  108. font-size:11px;
  109. font-family:helvetica;
  110. text-align:left;
  111. color:{color:text};
  112. }
  113.  
  114. a {
  115. color:{color:links};
  116. text-decoration:none;
  117. transition-duration: 0.4s;
  118. -moz-transition:all 0.4s;
  119. -ms-transition:all 0.4s;
  120. -o-transition:all 0.4s;
  121. transition:all 0.4s;
  122. }
  123.  
  124. a:hover {
  125. text-shadow: 2px 2px 4px {color:link shadow};
  126. transition-duration: 0.4s;
  127. -moz-transition:all 0.4s;
  128. -ms-transition:all 0.4s;
  129. -o-transition:all 0.4s;
  130. transition:all 0.4s;
  131. }
  132.  
  133. h1 {
  134. text-align:center;
  135. font-size:16px;
  136. font-weight:bold;
  137. }
  138.  
  139. blockquote {
  140. padding-left:5px;
  141. margin-left:15px;
  142. border-left:1px solid {color:borders};
  143. }
  144.  
  145. blockquote blockquote {
  146. padding-left:10px;
  147. border-left:1px solid {color:borders};
  148. }
  149.  
  150. pre {
  151. white-space: pre-wrap;
  152. white-space: -moz-pre-wrap;
  153. white-space: -pre-wrap;
  154. white-space: -o-pre-wrap;
  155. word-wrap: break-word;
  156. }
  157.  
  158. /*SIDEBAR*/
  159.  
  160. #sidebar {
  161. margin-left:295px;
  162. position:fixed;
  163. padding:20px 0 10px;
  164. width:130px;
  165. text-align:center;
  166. font-weight:bold;
  167. text-transform:uppercase;
  168. border:solid 1px {color:borders};
  169. {block:ifNotTransparentPosts}
  170. background:{color:sidebar};{/block:ifNotTransparentPosts}
  171. {block:ifPostShadow}
  172. box-shadow: 5px 5px {color:post shadow};
  173. {/block:ifPostShadow}
  174. {block:if2columns}
  175. margin-top:15px;
  176. {/block:if2columns}
  177. }
  178.  
  179. /*TITLE*/
  180.  
  181. #blogt {font-size:14px;}
  182.  
  183. /*DESCRIPTION*/
  184.  
  185. #desc {
  186. border-bottom:solid 1px {color:borders};
  187. padding:5px 16px 15px;
  188. text-transform:none;
  189. font-weight:normal;
  190. }
  191.  
  192. /*LINKS*/
  193.  
  194. #links a {
  195. margin-top:5px;
  196. display:block;
  197. }
  198.  
  199. .click {
  200. cursor:help;
  201. padding-top:10px;
  202. cursor:help;
  203. font-weight:bold;
  204. text-transform:uppercase;
  205. }
  206.  
  207. .click:hover {
  208. text-shadow:2px 2px 2px {color:link shadow};
  209. transition-duration: 0.4s;
  210. -moz-transition:all 0.4s;
  211. -ms-transition:all 0.4s;
  212. -o-transition:all 0.4s;
  213. transition:all 0.4s;
  214. }
  215.  
  216. .slide {height:90px;}
  217.  
  218. /*PAGI*/
  219.  
  220. #pagi {
  221. font-size:12px;
  222. text-align:center;
  223. border:solid 1px {color:borders};
  224. padding:10px 20px;
  225. word-spacing:10px;
  226. {block:ifNotTransparentPosts}
  227. background:{color:posts};{/block:ifNotTransparentPosts}
  228. {block:ifPostShadow}
  229. box-shadow: 5px 5px {color:post shadow};
  230. {/block:ifPostShadow}
  231. {block:if2columns}
  232. margin:-15px 0 75px 775px;
  233. width:250px;
  234. {/block:if2columns}
  235. {block:ifNot2columns}
  236. margin:50px 0 75px 475px;
  237. width:400px;
  238. {/block:ifNot2columns}
  239. }
  240.  
  241. /*POSTS*/
  242.  
  243. #entries {
  244. {block:IfNot2columns}
  245. margin:65px 0 80px 460px;
  246. width:400px;
  247. {/block:IfNot2columns}
  248. {block:If2columns}
  249. margin:50px 15px 0 440px;
  250. width:650px;
  251. {/block:If2columns}
  252. }
  253.  
  254. #posts {
  255. padding:20px;
  256. border:solid 1px {color:borders};
  257. margin:15px;
  258. {block:ifNotTransparentPosts}
  259. background:{color:posts};{/block:ifNotTransparentPosts}
  260. {block:ifPostShadow}
  261. box-shadow: 5px 5px {color:post shadow};
  262. {/block:ifPostShadow}
  263. {block:IndexPage}position:relative;{block:IndexPage}
  264. {block:ifNot2columns}
  265. margin-bottom:60px;width:400px;
  266. {block:ifNot2columns}
  267. {block:if2columns}
  268. {block:IndexPage}width:250px;{/block:IndexPage}
  269. {/block:if2columns}
  270. }
  271.  
  272. .caption {
  273. {block:ifHideCaptions}
  274. {block:IndexPage}
  275. display:none;
  276. {/block:IndexPage}
  277. {/block:ifHideCaptions}
  278. width:100%;
  279. }
  280.  
  281. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  282.  
  283. /*QUOTES*/
  284.  
  285. #quote {text-align:center;font-size:14px;}
  286.  
  287. #source {text-align:center;margin-top:3px;}
  288.  
  289. /*AUDIO*/
  290.  
  291. .audioplayer {
  292. width:30px;
  293. height:30px;
  294. overflow:hidden;
  295. position:absolute;
  296. margin:25px;
  297. opacity:0.8;
  298. }
  299.  
  300. .cover {width:80px;float:left;}
  301.  
  302. .audioinfo {margin:20px 0 40px 100px;}
  303.  
  304. /*CHAT*/
  305.  
  306. .chat ol {
  307. padding:0;
  308. list-style:none;
  309. font-size:10px;
  310. }
  311.  
  312. .line {padding:5px 0;}
  313.  
  314. .label {font-weight:bold;}
  315.  
  316. /*ASKS*/
  317.  
  318. .asker {
  319. font-size:12px;
  320. width:100%;
  321. font-weight:bold;
  322. }
  323.  
  324. .question {
  325. font-size:12px;
  326. padding-bottom:8px;
  327. border-bottom:solid 1px #000;
  328. margin-top:5px;
  329. width:100%;
  330. }
  331.  
  332. .reply {font-size:12px;}
  333.  
  334. /*POST INFO*/
  335.  
  336. #permalink {
  337. top:0px;
  338. left:0px;
  339. height:100%;
  340. background:{color:posts};
  341. {block:PermalinkPage}position:relative;{/block:PermalinkPage}
  342. {block:IndexPage}
  343. width:440px;
  344. position:absolute;
  345. font-size:12px;
  346. font-weight:bold;
  347. text-align:center;
  348. opacity:0;
  349. {block:if2columns}
  350. width:290px;
  351. {/block:if2columns}
  352. {/block:IndexPage}
  353. transition-duration: 0.6s;
  354. -moz-transition:all 0.6s;
  355. -ms-transition:all 0.6s;
  356. -o-transition:all 0.6s;
  357. transition:all 0.6s;
  358. }
  359.  
  360. #stuff {top:45%;position:relative;}
  361.  
  362. #tags {
  363. font-size:10px;
  364. font-weight:normal;
  365. margin-top:5px;
  366. text-transform:none;
  367. }
  368.  
  369. #posts:hover #permalink {
  370. opacity:0.8;
  371. transition-duration: 0.6s;
  372. -moz-transition:all 0.6s;
  373. -ms-transition:all 0.6s;
  374. -o-transition:all 0.6s;
  375. transition:all 0.6s;
  376. }
  377.  
  378. .pagenotes {{block:IndexPage}display: none;{/block:IndexPage}}
  379.  
  380. .pagenotes img {display:none;}
  381.  
  382. .pagenotes li {
  383. font-size:10px;
  384. list-style-type:none;
  385. max-width:400px;
  386. padding:10px;
  387. }
  388.  
  389. /*CREDIT*/
  390.  
  391. #cred {
  392. bottom:10px;
  393. position:fixed;
  394. right:15px;
  395. font-weight:bold;
  396. font-size:12px;
  397. }
  398.  
  399. /*TOOLTIP*/
  400.  
  401. #s-m-t-tooltip{
  402. max-width:300px;
  403. margin:6px;
  404. padding:3px 2px;
  405. border:solid 1px {color:borders};
  406. background:#fff;
  407. color:{color:links};
  408. z-index:999999;
  409. font-size:9px;
  410. }
  411.  
  412. </style>
  413.  
  414. </head>
  415. <body>
  416.  
  417. <div id="sidebar">
  418. <div id="blogt"><a href="/">{Title}</a></div>
  419. <div id="desc">{Description}</div>
  420. <div class="click">{text:navi title}</div>
  421. <div class="nav">
  422. <div id="links">
  423. <a href="{text:link 1 url}">{text:link 1}</a>
  424. <a href="{text:link 2 url}">{text:link 2}</a>
  425. <a href="{text:link 3 url}">{text:link 3}</a>
  426. <a href="{text:link 4 url}">{text:link 4}</a>
  427. </div></div>
  428. </div>
  429.  
  430. <div id="entries">
  431.  
  432. {block:Posts}
  433.  
  434. <div id="posts">
  435.  
  436. {block:IndexPage}
  437. <div id="permalink">
  438. <div id="stuff">
  439. <a href="{Permalink}">{TimeAgo}</a>
  440. {block:HasTags}<div id="tags">filed under: {block:Tags}<a href="{TagUrl}">{Tag}</a>, {/block:Tags}</div>{/block:HasTags}
  441. </div></div>
  442. {/block:IndexPage}
  443.  
  444. <!---QUOTES--->
  445.  
  446. {block:Quote}
  447. <div id="quote">“{Quote}”</div>
  448. {block:Source}<div id="source">{source}</div>{/block:Source}
  449. {/block:Quote}
  450.  
  451. <!---TEXT POSTS--->
  452.  
  453. {block:Text}
  454. {block:Title}<h1>{Title}</h1>{/block:Title}{Body}
  455. {/block:Text}
  456.  
  457. <!---PHOTOS--->
  458.  
  459. {block:Photo}
  460. {block:IfNot2columns}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:IfNot2columns}
  461. {block:if2columns}{block:IndexPage}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{/block:IndexPage}
  462. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{/block:PermalinkPage}{/block:if2columns}
  463. {/block:Photo}
  464.  
  465. <!---PHOTOSETS--->
  466.  
  467. {block:Photoset}
  468. {block:IfNot2columns}{Photoset-400}{block:IfNot2columns}
  469. {block:if2columns}{block:IndexPage}{Photoset-250}{/block:IndexPage}
  470. {block:PermalinkPage}{Photoset-400}{/block:PermalinkPage}{/block:if2columns}
  471. {/block:Photoset}
  472.  
  473. <!---VIDEO--->
  474.  
  475. {block:Video}
  476. {block:IfNot2columns}{Video-400}{block:IfNot2columns}
  477. {block:if2columns}{block:IndexPage}{Video-250}{/block:IndexPage}
  478. {block:PermalinkPage}{Video-400}{/block:PermalinkPage}{/block:if2columns}
  479. {/block:Video}
  480.  
  481. <!---LINKS--->
  482.  
  483. {block:Link}<h1><a href="{URL}" title="{Target}">{Name}</h1></a>{block:Description}{Description}{/block:Description}{/block:Link}
  484.  
  485. <!---AUDIO--->
  486.  
  487. {block:Audio}
  488. {block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}
  489. <div class="audioplayer">{AudioPlayerWhite}</div>
  490. <div class="audioinfo">
  491. {block:TrackName}Title: {TrackName}{/block:TrackName}{block:Artist}<br>Artist: {Artist}{/block:Artist}<br>{block:PlayCount}Plays: {FormattedPlayCount}{/block:PlayCount}
  492. </div>
  493. {/block:Audio}
  494.  
  495. <!---CHAT--->
  496.  
  497. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}
  498. <div class="chat"><ol>{block:Lines}<li class="line {Alt}">{block:Label}
  499. <span class="label">{Label}</span>
  500. {/block:Label}{Line}</li>{/block:Lines}
  501. </ol></div>{/block:Chat}
  502.  
  503. <!---QUESTIONS--->
  504.  
  505. {block:Answer}
  506. <div class="question"><div class="asker"><b>{Asker} said:</b></div> {Question}</div>
  507. <div class="reply">{Answer}</div>
  508. {/block:Answer}
  509.  
  510. <!---CAPTIONS--->
  511.  
  512. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  513.  
  514. <!---PERMALINK--->
  515.  
  516. {block:PermalinkPage}
  517. {block:Date}
  518. <div id="permalink">
  519. <div id="stuff">
  520. <a href="{Permalink}">{TimeAgo}</a>
  521. {block:NoteCount}<a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}
  522. {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  523. {block:ContentSource}<a href="{SourceURL}">src</a>{/block:ContentSource}{/block:Date}
  524. {block:HasTags}<div id="tags">{block:Tags} <a href="{TagUrl}">#{Tag}</a> {/block:Tags}</div>{/block:HasTags}
  525. </div></div>
  526. {block:PostNotes}
  527.  
  528. <div class="pagenotes">
  529. {PostNotes}
  530. </div>
  531. {/block:PostNotes}
  532. {/block:PermalinkPage}
  533.  
  534. </div>
  535. {/block:Posts}
  536. </div>
  537.  
  538. {block:Pagination}
  539. <div id="pagi">
  540. {block:PreviousPage}
  541. <a href="{PreviousPage}">BACK</a> |
  542. {/block:PreviousPage}
  543. {block:NextPage}
  544. <a href="{NextPage}">NEXT</a>
  545. {/block:NextPage}
  546. </div>
  547. {/block:Pagination}
  548.  
  549. <div id="cred"><a href="http://sentimentalthemes.tumblr.com">✖</a></div>
  550.  
  551. </body>
  552.  
  553. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement