1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>{{ title }}</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!-- <meta http-equiv="refresh" content="300" /> 每 content 秒網頁自動更新-->
- <!-- 新 Bootstrap4 核心 CSS 文件 -->
- <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.1.0/css/bootstrap.min.css">
- <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
- <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
- <!-- popper.min.js 用于弹窗、提示、下拉菜单 -->
- <script src="https://cdn.bootcss.com/popper.js/1.12.5/umd/popper.min.js"></script>
- <!-- 最新的 Bootstrap4 核心 JavaScript 文件 -->
- <script src="https://cdn.bootcss.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
- <!--可用來建立使用者小圖示-->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
- <!-- 參考資料 -->
- <!-- https://ithelp.ithome.com.tw/articles/10244121 -->
- <style>
- .footer{
- height: 40px;
- box-sizing: border-box;
- /* 設定footer絕對位置在底部 */
- position: absolute;
- bottom: 0px;
- width: 100%;
- background-color: #eee;
- text-align: center;
- }
- html, body {
- height: 100%;
- /* margin: 0; */
- position: relative;
- }
- #wrapper {
- /* 設定高度最小為100%, 如果內容區塊很多, 可以長大 */
- min-height: 100%;
- /* 位置設為relative, 作為footer區塊位置的參考 */
- position: relative;
- }
- </style>
- </head>
- <body>
- <!-- <div style="text-align: center;">
- 狀態更新時間(秒):
- <input type="text" class="input-text" name="webupdate_time" value="5" style="width:100px;">
- <input type="button" class="input-button" value="設定更新時間" onclick="changeUpdate()">
- </div> -->
- <br>
- <br>
- <footer class="footer" id="footer" style="margin: auto;">
- <div style="margin: 10px auto; font-size: 13px; margin-bottom: 10px;">
- <a style="padding: 0px 6px" href="#">關於 Smart Coffee</a> |
- <a style="padding: 0px 6px;" href="#">產品與經銷商</a> |
- <a style="padding: 0px 6px;" href="/sitemap">網站地圖</a> |
- Copyright © 2022 GOLD IN TECHNOLOGY INC. 保留一切權利。
- </div>
- </footer>
- </body>
- </html>
|