File: default.html

package info (click to toggle)
ruby-arbre 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 440 kB
  • sloc: ruby: 1,716; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
  {% include head.html %}
  <body class="with-sidebar">
    <div id="wrapper">
      {% include top-menu.html %}
      <div id="main-content">
        <div class='toc'>
          {% include toc.html %}
        </div>
        <div class='toc-content'>
          <div class='docs-content'>
            {{ content }}
          </div>
        </div>
      </div>
      {% include footer.html %}
    </div>
    {% include google-analytics.html %}
  </body>
</html>