|
1 | 1 | <#macro html page_title page_tab>
|
2 |
| - <!doctype html> |
3 |
| - <html lang="zh-CN"> |
4 |
| - <head> |
5 |
| - <meta charset="UTF-8"> |
6 |
| - <#--<meta name="viewport"--> |
7 |
| - <#--content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">--> |
8 |
| - <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
9 |
| - <title>${page_title!} - ${site.name}</title> |
10 |
| - <link rel="icon" href="https://yiiu.co/favicon.ico"> |
11 |
| - <#--css--> |
12 |
| - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> |
13 |
| - <link rel="stylesheet" href="/static/theme/${site.theme}/css/app.css"/> |
14 |
| - <#--javascript--> |
15 |
| - <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
16 |
| - </head> |
17 |
| - <body> |
18 |
| - <#include "../components/loading.ftl"/> |
19 |
| - <div class="container"> |
20 |
| - <#include "header.ftl"/> |
21 |
| - <@header page_tab=page_tab/> |
22 |
| - <section><#nested /></section> |
23 |
| - <#include "footer.ftl"/> |
24 |
| - </div> |
25 |
| - </body> |
26 |
| - </html> |
| 2 | + <!doctype html> |
| 3 | + <html lang="zh-CN"> |
| 4 | + <head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <#--<meta name="viewport"--> |
| 7 | + <#--content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">--> |
| 8 | + <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
| 9 | + <title>${page_title!} - ${site.name}</title> |
| 10 | + <link rel="icon" href="https://atjiu.github.io/favicon.ico"> |
| 11 | + <#--css--> |
| 12 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> |
| 13 | + <link rel="stylesheet" href="/static/theme/${site.theme}/css/app.css"/> |
| 14 | + <#--javascript--> |
| 15 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
| 16 | + </head> |
| 17 | + <body> |
| 18 | + <#include "../components/loading.ftl"/> |
| 19 | + <div class="container"> |
| 20 | + <#include "header.ftl"/> |
| 21 | + <@header page_tab=page_tab/> |
| 22 | + <section><#nested /></section> |
| 23 | + <#include "footer.ftl"/> |
| 24 | + </div> |
| 25 | + </body> |
| 26 | + </html> |
27 | 27 | </#macro>
|
0 commit comments