123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html data-bs-theme="light" lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
- <title>{dreamer-cms:global name="title" /}</title>
- <link rel="stylesheet" href="{dreamer-cms:template /}assets/bootstrap/css/bootstrap.min.css">
- <link rel="stylesheet" href="{dreamer-cms:template /}assets/css/Roboto.css">
- <link rel="stylesheet" href="{dreamer-cms:template /}assets/css/Roboto%20Slab.css">
- <link rel="stylesheet" href="{dreamer-cms:template /}assets/css/styles.css">
- <link rel="stylesheet" type="text/css" href="{dreamer-cms:template /}assets/css/animate.min.css">
- </head>
- <body>
- {dreamer-cms:include file='loading.html'/}
- {dreamer-cms:include file='header.html'/}
- <main>
- <section>
- <div class="p-2">
- {dreamer-cms:type typeid="9t544bf9"}
- <div>
- <img style="width: 100%;object-fit: cover;" data-src="[field:typeimg /]"
- src="{dreamer-cms:template /}assets/img/none.png" alt="logo" id="contact-img">
- </div>
- <div class="pt-3 pt-md-5 pt-xl-4" id="contact">
- [field:htmlcontent /]
- </div>
- {/dreamer-cms:type}
- </div>
- </section>
- </main>
- {dreamer-cms:include file='footer.html'/}
- <script src="{dreamer-cms:template /}assets/js/jquery.min.js"></script>
- <script type="text/javascript" src="{dreamer-cms:template /}assets/js/wow.min.js"></script>
- <script src="{dreamer-cms:template /}assets/js/main.js"></script>
- <script>
- $(document).ready(function () {
- var imgWidth = $("#contact-img").width()
- $("#contact .ueditor_baidumap").attr("width", imgWidth)
- var params = new URLSearchParams($("#contact .ueditor_baidumap").attr("src"))
- params.set('width', imgWidth);
- $("#contact .ueditor_baidumap").attr("src", decodeURIComponent(params.toString()))
- });
- </script>
- <script src="{dreamer-cms:template /}assets/bootstrap/js/bootstrap.min.js"></script>
- <script src="{dreamer-cms:template /}assets/js/bs-init.js"></script>
- <script src="{dreamer-cms:template /}assets/js/image.js"></script>
- </body>
- </html>
|