templates/inc/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html dir="ltr" lang="ja">
  3. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <meta name="format-detection" content="telephone=no,address=no,email=no">
  7. <title>{{ sub_title is defined ? sub_title : "" }} | {{ site_name }}</title>
  8. <link rel="stylesheet" href="common/css/reset.css">
  9. <link rel="stylesheet" href="common/css/remodal.css">
  10. <link rel="stylesheet" href="common/css/common.css">
  11. {% block stylesheet %}{% endblock %}
  12. <link href="/img/apple-touch-icon.png" rel="apple-touch-icon">
  13. <link href="/img/favicon.ico" rel="icon">
  14. </head>
  15. <body id="anchor-top">
  16. <div class="wrapper">
  17. <!--**** header *-->
  18. {% block header %}{% endblock %}
  19. <!--**** //header *-->
  20. <!--**** contents *-->
  21. {% block main %}{% endblock %}
  22. <!--**** //contents *-->
  23. <!--**** footer *-->
  24. {% if app.request.attributes.get('_route') != "app_top_topmenu" %}
  25. <footer class="fixedFooter" role="contentinfo">
  26.   <div class="fixedFooter-container">
  27.     <div class="fixedFooter-time">
  28.       <button type="button" class="fixedFooter-time-reload">更新する</button>
  29.       <div>
  30.       <time class="fixedFooter-time-main">{{ date('now')|date('Y-m-d H:i') }} 時点</time>
  31.       <div class="interval_memo" style="text-align:center"></div>
  32.       </div>
  33.     </div>
  34.   </div>
  35. </footer>
  36. {% endif %}
  37. <!--**** //footer *-->
  38. </div><!-- wrapper end -->
  39. {% block javascript %}{% endblock %}
  40. </body>
  41. </html>