aboutsummaryrefslogtreecommitdiff
path: root/docs/_layouts/default.html
blob: 19cd7ce59fc03b7e095f2418d232932c192c9b1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
    <head>
        <title>Dotty - {{ page.title }}</title>
        <link rel="shortcut icon" type="image/png" href="/images/favicon.png"/>
        <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.7.0/styles/github.min.css">
        <link rel="stylesheet" href="/css/main.css">
    </head>
    <body>
        <div id="container">
            <div id="scala-logo-mobile">
                {% include scala-logo.html %}
            </div>
            <div id="content">
                {{ content }}
            </div>
            <div id="toc">
                {% include toc.html %}
            </div>
        </div>
    </body>
    <script src="/js/highlight.pack.js"></script>
    <script>hljs.initHighlightingOnLoad();</script>
</html>