<!DOCTYPE html>

include mixins/bemto

block vars
    - var innerPage = false

html(lang="ru")

    head
        meta(charset="utf-8")
        meta(http-equiv="X-UA-Compatible" content="IE=edge")
        meta(name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no")

        block head
        meta(name="Description" content=pageDescription || "")
        meta(name="Keywords" content=pageKeywords || "")
        title=pageTitle || ""

        // css

        // AdminLTE files
        link(href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css", rel='stylesheet')
        link(href='AdminLTE/bootstrap/css/bootstrap.css', rel='stylesheet')
        link(href='AdminLTE/plugins/daterangepicker/daterangepicker.css', rel='stylesheet')
        link(href='AdminLTE/plugins/select2/select2.css', rel='stylesheet')
        link(href='AdminLTE/plugins/iCheck/all.css', rel='stylesheet')
        link(href='AdminLTE/dist/css/AdminLTE.css', rel='stylesheet')
        // AdminLTE files

        link(href='css/prefix.vendor.min.css' rel='stylesheet')
        link(href='css/prefix.main.min.css' rel='stylesheet')

        // js
        script(src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js')

        // sweet alert for local testing only
        //script(src='https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.10.1/sweetalert2.all.min.js')

        // AdminLTE files
        script(src='AdminLTE/bootstrap/js/bootstrap.js')
        script(src='AdminLTE/plugins/daterangepicker/moment.js')
        script(src='AdminLTE/plugins/daterangepicker/daterangepicker.js')
        script(src='AdminLTE/plugins/select2/select2.js')
        script(src='AdminLTE/plugins/iCheck/icheck.js')
        // AdminLTE files

        script(src='js/prefix.vendor.min.js')
        script(src='js/prefix.main.min.js')

        <!--[if lt IE 9]>
        script(src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js")
        script(src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js")
        <![endif]-->
    body
        +b('main').main(style="padding: 50px;")
            block content
