<!–

Flanga Website File
    Built by Jekyll
    Commit: INSERTTRAVISCOMMITHEREFLANGA

–> <!DOCTYPE HTML> <html> <head>

<title>{{ page.title }}</title>
<meta http-equiv="content-type" content="{{ page.contenttype }}; charset=utf-8" />
<meta name="description" content="{{ page.description }}" />
<meta name="keywords" content="{{ page.keywoards }}" />
{% for js in site.javascript %}
        {% for value in js %}
                <script src="{{ js[forloop.index0].url }}"></script>
        {% endfor %}
{% endfor %}
{% for css in site.stylesheets %}
        {% for value in css %}
                <link rel="stylesheet" href="{{ css[forloop.index0].url }}" />
        {% endfor %}
{% endfor %}
<link rel="shortcut icon" href="{{ site.favicon }}" />

</head>

<body id=β€œtop”>

<div class="flanga">
    <div class="header">
        <nav>
            <div class="nav-wrapper">
                <a href="https://{{ site.home }}" class="flangalogo"><img src="{{ site.logo }}" alt="{{ site.companyname }}" style="width:35px; height:35px;"</i></a>
                <ul class="right hide-on-med-and-down">
                    {% for name in site.menubars %}
                        {% for value in name %}
                            {% if page.activetab == name[forloop.index0].name %}
                                <li class="active"><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
                            {% else %}
                                <li><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
                            {% endif %}
                        {% endfor %}
                    {% endfor %}
                </ul>
            </div>
        </nav>
    </div>
    <div class="title">
        <div class="container">
            <div class="12u">
                <h1>{{ page.title }}</h1>
                <h6>{{ page.subtitle }}</h6>
            </div>
        </div>
            </div>
            <div class="body">
                    <div class="container">
                            <div class="row">
                                    <div class="12u">
                            {{ content }}
                                    </div>
                            </div>
                    </div>
    </div>
</div>

</body> </html>