summaryrefslogblamecommitdiff
path: root/spec/_layouts/default.yml
blob: fbbab3a1a06ba678c92232cedd9c815893cc660a (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                                       

                                                            


           
                                                                                                                                  
                                                                                     
                                                                                                              
                                                             
                                                            
                                                      
 


                                                                    



                                                                  



                                                                                                        
                                                                      










                                                                                             




                                  
           
 
                                                                              
                                 


       




















                                                                      
             

      
       
       
<!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="http://cdn.mathjax.org/mathjax/2.3-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/styles/default.min.css">
  <link rel="stylesheet" href="public/octicons/octicons.css">
  <script src="public/highlight/highlight.pack.js"></script>
  <script src="public/scripts/navigation.js"></script>

  <!-- need to use include to see value of page.chapter variable -->
  <style type="text/css">
    {% include numbering.css %}

    /* proper rendering of MathJax into highlighted code blocks */
    .fixws { white-space: pre; }
    .fixws .math { white-space: nowrap; }
  </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("") })

    // no language auto-detect so that EBDF isn't detected as scala
    hljs.configure({
      languages: []
    });

    // syntax highlighting after mathjax is loaded so that mathjax can be used in code blocks
    MathJax.Hub.Queue(function () {
      hljs.initHighlighting();
      $("pre nobr").addClass("fixws");
    })

    // and finally TOC generation
    $(document).ready(function() {
      $('.toc').navigation();
    })
  </script>

  <link rel="stylesheet" type="text/css" href="public/stylesheets/screen.css">
  <title>{{ page.title }}</title>
</head>

<body>
<div id="container">
<div id="navigation">
<ol>
  {% assign sorted_pages = site.pages | sort:"name" %}
  {% for post in sorted_pages %}
    {% if post.chapter >= 0 %}
      {% if page.url == post.url %}
      <li class="active-page">
        <a href="{{site.baseurl}}{{ post.url }}"> {{ post.title }}</a>
        <div class="toc"></div>
      </li>
      {% else %}
      <li>
        <a href="{{site.baseurl}}{{ post.url }}"> {{ post.title }}</a>
      </li>
      {% endif %}
    {% endif %}
  {% endfor %}
</ol>
</div>
<div id="content-container">
{{ content }}
</div>
</div>
</body>
</html>