mixin createContent(config)
    head
        include ../../jade/common/includeheader
        link(rel="stylesheet", href="../../css/dev.css")
        title #{config.title}
        script(src="../../js/dev.js")
    body(ng-app="environBuild", ng-controller="environmentCtrl")
        .bg_e7.environ_l#environ_l
            h3.text-center.mt_20.environ_tit 
                a.back_store_home(href="/#dev")
                    i.fa.fa-reply
                a(id="idTitle") #{config.title}
            ul.mt_20#environ_bulidfile.environ_bulidfile
                li(ng-repeat="x in evnfiles")
                    | {{x.name}}
            .bulidfile
        #environ_r.environ_r
            div.environ_r_top
                button.telescopic(onclick="nndevenvironment.telescopic()")
                    i.glyphicon.glyphicon-tasks
            .environ_r_content
                h3 欢迎使用帮助！
    script(type="text/javascript").
        var app = angular.module('environBuild', []);
        app.controller('environmentCtrl', function($scope, $http){
            nndevenvironment.init($scope, $http, "#{config.url}", "#{config.filesUrl}");
        });
        