Sha256: 023eb29ffdf5e57ecb5b78aa4aab99c3ee216cc6bf673713d03e7c55efb5ddc6

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <link href="{{ base_url }}/css/custom.css" rel="stylesheet">
  </head>
  <body id="manpage">
    <div id="back">
      <a href="{{ base_url }}">
        <img src="{{ base_url }}/img/hand3.png" class="hand3"/>
        <div class="goback">Go back to the web site</div>
      </a>
    </div>
    <div class="mp">
      <div class="nav">
        <ul>
          {% for nav_item in nav %}
              {% if nav_item.children %}
                  <li>{{ nav_item.title }}
                      <ul>
                      {% for nav_item in nav_item.children %}
                          <li class="{% if nav_item.active%}current{%endif%}">
                              <a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
                          </li>
                      {% endfor %}
                      </ul>
                  </li>
              {% else %}
                  <li class="{% if nav_item.active%}current{%endif%}">
                      <a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
                  </li>
              {% endif %}

          {% endfor %}
        </ul>
      </div>
      <div class="content">
        {{ page.content }}
      </div>
    </div>
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
machinery-tool-1.24.1 manual/custom_theme/main.html