summaryrefslogtreecommitdiff
path: root/spec/_layouts/default.yml
blob: 7f17ba30b0206e2c668e1cb118c55e236fd9adad (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
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
  <script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    tex2jax: {
      inlineMath: [['$','$'], ['\\(','\\)']],
      skipTags: ['script', 'noscript', 'style', 'textarea'],
      processEscapes: true
    }
  });
  </script>
  <script type="text/javascript" src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>

  <!-- need to use include to see value of page.chapter variable -->
  <style type="text/css">
    {% include numbering.css %}
  </style>
  <script type="text/javascript">
    // clear content of H3 nodes that start with "Example:"
    // the content is only there to determine ID of the H3 element (redcarpet doesn't let us set css id)
    $( document ).ready(function(){ $("h3[id*='example']").text("") })
  </script>

  <link rel="stylesheet" type="text/css" href="public/stylesheets/screen.css">

</head>

<body>

{{ content }}

</body>
</html>