|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + |
| 5 | + <title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title> |
| 6 | + {% if page.description %} |
| 7 | + <meta name="description" content="{{ page.description }}" /> |
| 8 | + {% endif %} |
| 9 | + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
| 10 | + |
| 11 | + <link rel="icon" type="image/png" href="{{ site.baseurl }}/resources/favicon.ico"> |
| 12 | + |
| 13 | + <!-- prettify js and CSS --> |
| 14 | + <link rel="stylesheet" href="{{ site.baseurl }}/resources/stylesheets/prettify.css" type="text/css" /> |
| 15 | + <script src="{{ site.baseurl }}/resources/javascript/prettify/prettify.js" type="text/javascript" ></script> |
| 16 | + |
| 17 | + <!-- jquery js --> |
| 18 | + <script src="{{ site.baseurl }}/resources/javascript/jquery.js" type="text/javascript" ></script> |
| 19 | + |
| 20 | + <!-- Bootstrap JS and CSS --> |
| 21 | + <link rel="stylesheet" href="{{ site.baseurl }}/resources/stylesheets/bootstrap.css" type="text/css" /> |
| 22 | + <script src="{{ site.baseurl }}/resources/javascript/bootstrap-dropdown.js" type="text/javascript" ></script> |
| 23 | + <script src="{{ site.baseurl }}/resources/javascript/bootstrap-dropdown-app.js" type="text/javascript" ></script> |
| 24 | + |
| 25 | + <!-- You may want to change the paths below, according to your own CSS and JavaScript setup --> |
| 26 | + <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/resources/stylesheets/frontpage.css" /> |
| 27 | + <script type="text/javascript" src="{{ site.baseurl }}/resources/javascript/jquery.js"></script> |
| 28 | + <script type="text/javascript" src="{{ site.baseurl }}/resources/javascript/jquery.easing.js"></script> |
| 29 | + <script type="text/javascript" src="{{ site.baseurl }}/resources/javascript/jquery.accordionza.js"></script> |
| 30 | + <script src="{{ site.baseurl }}/resources/javascript/frontpage.js" type="text/javascript" ></script> |
| 31 | + |
| 32 | + <!-- prettyprint js to prepend generated pre/code tags --> |
| 33 | + <script type="text/javascript"> |
| 34 | + function styleCode() |
| 35 | + { |
| 36 | + if (typeof disableStyleCode != "undefined") |
| 37 | + { |
| 38 | + return; |
| 39 | + } |
| 40 | + var a = false; |
| 41 | + $("pre code").parent().each(function() |
| 42 | + { |
| 43 | + if (!$(this).hasClass("prettyprint")) |
| 44 | + { |
| 45 | + $(this).addClass("prettyprint lang-scala linenums"); |
| 46 | + a = true |
| 47 | + } |
| 48 | + }); |
| 49 | + if (a) { prettyPrint() } |
| 50 | + } |
| 51 | + </script> |
| 52 | + |
| 53 | + <style type="text/css"> |
| 54 | + html, body { |
| 55 | + padding-top: 36px; |
| 56 | + height: 100%; |
| 57 | + background:url({{ site.baseurl }}/resources/images/bg.jpg) no-repeat top center #310808; |
| 58 | + -webkit-box-shadow: inset 0 10px 50px rgba(0,0,0,.6); |
| 59 | + -moz-box-shadow: inset 0 10px 50px rgba(0,0,0,.6); |
| 60 | + /* box-shadow: inset 0 10px 30px rgba(0,0,0,.3);*/ |
| 61 | + } |
| 62 | + .scrollingmenu { |
| 63 | + width: 940px; |
| 64 | + margin-left: auto; |
| 65 | + margin-right: auto; |
| 66 | + height: 280px; |
| 67 | + zoom: 1; |
| 68 | + } |
| 69 | + .scrollingmenu h2 { |
| 70 | + padding-bottom: 30px; |
| 71 | + color: #ffffff; |
| 72 | + font-size: 42px; |
| 73 | + line-height: 1; |
| 74 | + text-shadow: 0 1px 2px rgba(0,0,0,.5); |
| 75 | + } |
| 76 | + .bottom { |
| 77 | + height: 100%; |
| 78 | + background-color: #bcbcbc; |
| 79 | + padding-top: 30px; |
| 80 | + border-top: 1px solid #8e397d; |
| 81 | + } |
| 82 | + </style> |
| 83 | + |
| 84 | +</head> |
| 85 | + <body> |
0 commit comments