layout.html 1.8 KB
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta name="apple-mobile-web-app-capable" content="yes">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 user-scalable=no">
        <meta content="telephone=no" name="format-detection"> 
        <script type="text/javascript">

            (function (doc, win) {
                var docEl = doc.documentElement,
                    resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
                    recalc = function () {
                        var clientWidth = docEl.clientWidth;
                        if (!clientWidth) {
                            return;
                        }
                        docEl.style.fontSize = 20 * (clientWidth / 320) + 'px';
                    };

                if (!doc.addEventListener) {
                    return;
                }
                win.addEventListener(resizeEvt, recalc, false);
                doc.addEventListener('DOMContentLoaded', recalc, false);
            })(document, window);
        </script>
        <link rel="stylesheet" href="../css/detail.css">
    </head>
    <body>
        <div class="detail-container" style="display:none">
            {{{body}}}
        </div>
        
    </body>
    
    <script src="//localhost:5000/dist/all-debug.js"></script>
    <script type="text/javascript">
        seajs.use(['jquery/1.8.3/jquery-debug','yohobuy-mobile/1.0.0/public/js/article-type-three-debug','yohobuy-mobile/1.0.0/public/js/detail-debug'], function($,article,detail) {
            if (article) {
                article.init();
            }

            if(detail) {
                detail.init();
            }

            $(".detail-container").show();
        });
    </script>
</html>