octomoosey

The highway

Oct 4th, 2014
4,518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.23 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!-- octomoosey @ tumblr -->
  4.  
  5. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><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. <meta name="color:link" content="#a50000" />
  12. <meta name="color:hover" content="#1b4456" />
  13. <meta name="color:background" content="000000" />
  14. <meta name="color:post" content="#ffffff" />
  15. <meta name="color:text" content="#000000" />
  16. <meta name="color:line" content="#f0f0f0" />
  17. <meta name="color:bold" content="#a50000" />
  18. <meta name="color:italic" content="#a50000" />
  19. <meta name="color:blockquote" content="#000000" />
  20. <meta name="color:sidebg" content="#ffffff" />
  21. <meta name="color:descriptionbg" content="#ffffff" />
  22. <meta name="color:description" content="#000000" />
  23.  
  24. <meta name="image:sidebg" content="" />
  25. <meta name="image:background" content="" />
  26.  
  27. <meta name="text:Link 1" content="/"/>
  28. <meta name="text:Link 1 Title" content="Link"/>
  29. <meta name="text:Link 2" content="/"/>
  30. <meta name="text:Link 2 Title" content="Link"/>
  31. <meta name="text:Link 3" content="/"/>
  32. <meta name="text:Link 3 Title" content="Link"/>
  33. <meta name="text:Link 4" content="/"/>
  34. <meta name="text:Link 4 Title" content="Link"/>
  35. <meta name="text:Link 5" content="/"/>
  36. <meta name="text:Link 5 Title" content="Link"/>
  37. <meta name="text:Link 6" content="/"/>
  38. <meta name="text:Link 6 Title" content="Link"/>
  39. <meta name="text:Link 7" content="/"/>
  40. <meta name="text:Link 7 Title" content="Link"/>
  41. <meta name="text:Link 8" content="/"/>
  42. <meta name="text:Link 8 Title" content="Link"/>
  43. <meta name="text:Link 9" content="/"/>
  44. <meta name="text:Link 9 Title" content="Link"/>
  45. <meta name="text:Link 10" content="/"/>
  46. <meta name="text:Link 10 Title" content="Link"/>
  47.  
  48. <meta name="font:body font" content="Gibson">
  49. <meta name="text:text size" content="11px" />
  50. <meta name="text:signature" content="Name" >
  51.  
  52. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  53. <style type="text/css">
  54.  
  55. body {
  56. background-color:{color:background};
  57. background-image: url('{image:background}');
  58. background-position: right bottom;
  59. background-repeat: no-repeat;
  60. background-attachment: fixed;
  61. line-height:100%;
  62. color:{color:text};
  63. font-family:{font:body font};
  64. font-size: {text:text size};}
  65.  
  66. a {
  67. text-decoration:none;
  68. outline:none;
  69. -moz-outline-style:none;
  70. color:{color:link};
  71. -webkit-transition: all 0.7s ease;
  72. -moz-transition: all 0.7s ease;
  73. -o-transition: all 0.7s ease;}
  74.  
  75. a:hover {
  76. color:{color:hover};
  77. -webkit-transition: all 0.7s ease;
  78. -moz-transition: all 0.7s ease;
  79. -o-transition: all 0.7s ease;}
  80.  
  81. blockquote {
  82. padding:2px 7px;
  83. margin:3px 0 3px 8px;
  84. border-left:2px solid {color:line};
  85. background-color:{color:blockquote};}
  86.  
  87. blockquote img {
  88. max-width:100%;}
  89.  
  90. b, strong {
  91. color:{color:bold};}
  92.  
  93. i, em {
  94. color:{color:italic};}
  95.  
  96. small,sup,sub {
  97. font-size:{text:Text Size}}
  98.  
  99. big {
  100. font-size:12px;}
  101.  
  102. pre{
  103. font-size:10px;
  104. padding:20px;
  105. white-space: pre-wrap; /* css-3 */
  106. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  107. white-space: -pre-wrap; /* Opera 4-6 */
  108. white-space: -o-pre-wrap; /* Opera 7 */
  109. word-wrap: break-word; /* Internet Explorer 5.5+ */}
  110.  
  111. img {
  112. max-width:100%;}
  113.  
  114. img:hover {
  115. box-shadow: 0 0 10px 5px #fff;
  116. -webkit-transform: scale(1.1);
  117. -moz-transform: scale(1.1);
  118. -o-transform: scale(1.1) ;
  119. -ms-transform: scale(1.1);
  120. transform: scale(1.1) ;
  121. -webkit-transition: .8s ease-in-out;
  122. -moz-transition: .8s ease-in-out;
  123. -o-transition: .8s ease-in-out;
  124. z-index: 9999999999999999999;}
  125.  
  126. #container {
  127. position:absolute;
  128. top:0px;
  129. left:400px;}
  130.  
  131. #posts {
  132. width:500px;
  133. padding:10px;
  134. border:1px solid #f0f0f0;
  135. background-color:{color:post};
  136. margin-top:20px;
  137. margin-bottom:20px;}
  138.  
  139. #sidebar {
  140. position:fixed;
  141. top:0px;
  142. left:0px;
  143. width:370px;
  144. height:100%;
  145. border-right:1px solid {color:line};
  146. background-color:{color:sidebg};
  147. background-image: url('{image:sidebg}');
  148. background-position: left bottom;
  149. background-repeat: no-repeat;
  150. background-attachment: fixed;}
  151.  
  152. #box {
  153. position:fixed;
  154. top:150px;
  155. left:30px;
  156. width:310px;
  157. text-align:right;
  158. color:{color:description};
  159. background-color:{color:descriptionbg};}
  160.  
  161. #icon {
  162. margin-top:-10px;
  163. margin-left:-10px;
  164. width:140px;
  165. height:140px;
  166. padding:9px;
  167. float: left;}
  168.  
  169. #icon img {
  170. padding:9px;
  171. border:1px solid {color:line};
  172. background:#fff;
  173. width:120px;
  174. height:120px;}
  175.  
  176. #description {
  177. width:290px;
  178. float:right;
  179. padding:10px ;
  180. margin-top:0px;
  181. color:{color:description};}
  182.  
  183. #sidebar2 {
  184. position:fixed;
  185. top:0px;
  186. left:950px;
  187. width:150px;
  188. height:100%;
  189. border-left:1px solid {color:line};
  190. border-right:1px solid {color:line};
  191. background-color:{color:sidebg};}
  192.  
  193. #links {
  194. margin-top:160px;
  195. width:120px;
  196. margin-left:15px;
  197. text-align:center;
  198. font-size:10px;}
  199.  
  200. #links a {
  201. display:block;
  202. padding:3px;
  203. margin-bottom:7px;
  204. color:{color:links};
  205. letter-spacing:2px;}
  206.  
  207. #links a:hover {
  208. color: {color:hover};}
  209.  
  210. #ask {
  211. margin-top:-55px;
  212. margin-left:80px;}
  213.  
  214. #askimg img {
  215. height:64px;
  216. width:64px;
  217. border-radius:50%;
  218. -moz-box-shadow: 3px 3px 5px #888;
  219. -webkit-box-shadow: 3px 3px 5px #888;
  220. box-shadow: 3px 3px 5px #888;}
  221.  
  222. #ask2 {
  223. margin-top:50px;}
  224.  
  225. #note {
  226. margin-left:-25px;
  227. margin-top:-8px;}
  228.  
  229. #note a {
  230. font-style:normal;
  231. text-decoration:underline;}
  232.  
  233. #note a:hover {
  234. font-style:none;
  235. text-decoration:underline;
  236. background:#ff0;}
  237.  
  238. #note img {
  239. display:none;}
  240.  
  241. #titles {
  242. font-family:consolas;
  243. font-size:16px;
  244. text-align:right;}
  245.  
  246. #titles a {
  247. font-style:normal;
  248. text-decoration:underline;}
  249.  
  250. #titles a:hover {
  251. font-style:none;
  252. text-decoration:underline;
  253. background:#ff0;}
  254.  
  255. .info {
  256. padding-top:5px;
  257. border-top:3px solid {color:line};
  258. font-size:14px;
  259. text-align:center;
  260. margin-top:30px;
  261. line-height:15px;}
  262.  
  263. .tag {
  264. margin-top:3px;
  265. text-align:center;
  266. font-size:9px;
  267. font-style:normal;
  268. line-height:18px;}
  269.  
  270. .tag a {
  271. padding:5px;}
  272.  
  273. .note {
  274. text-transform:uppercase;
  275. width:470px;
  276. font-style:normal;
  277. letter-spacing:0px;
  278. font-size: 10px;
  279. text-align:left;
  280. line-height:100%;
  281. margin-left:-20px;}
  282.  
  283. .note li {
  284. list-style-type:none;
  285. border-bottom:1px solid {color:line};
  286. padding:10px 25px 10px 25px;
  287. text-align:left;
  288. -moz-transition-duration:0.5s;
  289. -webkit-transition-duration:0.5s;
  290. -o-transition-duration:0.5s;}
  291.  
  292. .note img.avatar {
  293. margin-right: 10px;
  294. width: 16px;
  295. height: 16px;}
  296.  
  297. #signature {
  298. font-size: 14px; /*change the font size*/
  299. text-align: right;}
  300.  
  301. </style>
  302.  
  303. </head>
  304. <body>
  305.  
  306. <div id="sidebar"></div>
  307.  
  308. <div id="box">
  309. <div id="description">
  310. <div id="icon">
  311. <a href="/" title="{title}">
  312. <img src="{PortraitURL-128}">
  313. </a></div>
  314. {Description}
  315. <br />
  316.  
  317. {block:Pagination}<br />
  318. {block:PreviousPage}<a href="{PreviousPage}">&laquo;</a>{/block:PreviousPage}
  319. {CurrentPage} of {TotalPages}
  320. {block:NextPage}<a href="{NextPage}">&raquo;</a>{/block:NextPage}
  321. {/block:Pagination}</div></div></div>
  322.  
  323. <div id="sidebar2">
  324.  
  325. <div id="links">
  326. <a href="/">index</a>
  327. <a href="/ask">message</a>
  328. <a href="/submit">submit</a>
  329. {block:IfLink1}<a href="{text:Link 1}">{text:Link 1 Title}</a>{/block:IfLink1}
  330. {block:IfLink2}<a href="{text:Link 2}">{text:Link 2 Title}</a>{/block:IfLink2}
  331. {block:IfLink3}<a href="{text:Link 3}">{text:Link 3 Title}</a>{/block:IfLink3}
  332. {block:IfLink4}<a href="{text:Link 4}">{text:Link 4 Title}</a>{/block:IfLink4}
  333. {block:IfLink5}<a href="{text:Link 5}">{text:Link 5 Title}</a>{/block:IfLink5}
  334. {block:IfLink6}<a href="{text:Link 6}">{text:Link 6 Title}</a>{/block:IfLink6}
  335. {block:IfLink7}<a href="{text:Link 7}">{text:Link 7 Title}</a>{/block:IfLink7}
  336. {block:IfLink8}<a href="{text:Link 8}">{text:Link 8 Title}</a>{/block:IfLink8}
  337. {block:IfLink9}<a href="{text:Link 9}">{text:Link 9 Title}</a>{/block:IfLink9}
  338. {block:IfLink10}<a href="{text:Link 10}">{text:Link 10 Title}</a>{/block:IfLink10}
  339. <a href="https://octomoosey.tumblr.com/">©</a>
  340. </div>
  341.  
  342. </div></div>
  343.  
  344. <div id="container">
  345. {block:Posts}
  346. <div id="posts">
  347.  
  348. {block:Text}
  349. {block:Title}<div id="titles">{Title}</div>{/block:Title}
  350. {Body}
  351. {/block:Text}
  352.  
  353. {block:Quote}
  354. <div id="titles">{Quote}</div>
  355. <br />— {Source}
  356. {/block:Quote}
  357.  
  358. {block:Link}
  359. <div id="titles"><a href="{URL}">{Name}</a></div>
  360. {block:Description}{Description}{/block:Description}
  361. {/block:Link}
  362.  
  363. {block:Photo}
  364. <center><img src="{PhotoURL-500}"/></center>
  365. {block:Caption}{Caption}{/block:Caption}
  366. {/block:Photo}
  367.  
  368. {block:Photoset}
  369. <center>{Photoset-500}</center>
  370. {block:Caption}{Caption}{/block:Caption}
  371. {/block:Photoset}
  372.  
  373. {block:Chat}
  374. {block:Title}<div id="titles">{Title}</div>{/block:Title}
  375. {block:Lines}
  376. {block:Label}<b>{Label}</b>{/block:Label}
  377. {Line}<br />
  378. {/block:Lines}
  379. {/block:Chat}
  380.  
  381. {block:Video}
  382. {Video-500}
  383. {block:Caption}{Caption}{/block:Caption}
  384. {/block:Video}
  385.  
  386. {block:Answer}
  387. <div id="askimg"><img src="{AskerPortraitURL-64}"></div>
  388. <div id="ask">
  389. <div style="font-size:14px; font-weight:lighter; font-style:italic;">{Asker}</div>{Question}</div>
  390. <div id="ask2">{Answer}<div id="signature">{text:signature}</div></div>{/block:Answer}
  391.  
  392. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerWhite}</left></span>
  393. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  394. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  395. {/block:ExternalAudio}<br><br>
  396. {block:Caption}
  397. {Caption}
  398. {/block:Caption}{/block:Audio}<br>
  399.  
  400. <div class="info">
  401. {block:date}<a href="{Permalink}"> posted;
  402. {block:Date}{TimeAgo}</a>{/block:Date}
  403. {block:NoteCount}
  404. with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} <a href="{ReblogURL}"> - reblog</a><br>
  405.  
  406. {block:RebloggedFrom}
  407. via; <a href="{ReblogParentURL}">{ReblogParentName}</a>
  408. source; <a href="{ReblogRootURL}">{ReblogRootName}</a>
  409. {/block:RebloggedFrom}
  410. </div>
  411.  
  412. <div class="tag">{block:HasTags}{block:Tags}♦ <a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  413. </div>
  414.  
  415. {block:PostNotes}
  416. <div class="note">
  417. {PostNotes}
  418. </div>
  419. {/block:PostNotes}
  420.  
  421. {/block:Posts}
  422.  
  423. </div>
  424.  
  425. {block:ContentSource}
  426. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  427. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  428. {/block:SourceLogo}
  429. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  430. {/block:ContentSource}
  431.  
  432. </body>
  433. </html>
Advertisement
Add Comment
Please, Sign In to add comment