|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | | - <link rel="icon" href="./img/logo.png" type="image/x-icon"> |
6 | | - <link rel="shortcut icon" href="./img/logo.png" type="image/x-icon"> |
| 5 | + <link rel="icon" href="${favicon}" type="image/x-icon"> |
| 6 | + <link rel="shortcut icon" href="${favicon}" type="image/x-icon"> |
7 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
8 | 8 | <meta http-equiv="x-ua-compatible" content="ie=edge"> |
9 | | - <title>友情连接 - 尤娜博客</title> |
10 | | - <link rel="stylesheet" href="css/font-awesome.css"> |
11 | | - <link rel="stylesheet" href="css/ionicons.css"> |
12 | | - <link rel="stylesheet" href="css/adminlte.css"> |
13 | | - <link rel="stylesheet" href="css/unaboot.css"> |
| 9 | + <title>友情链接 - ${title}</title> |
| 10 | + <link rel="stylesheet" href="${una}/${theme}/css/font-awesome.css"> |
| 11 | + <link rel="stylesheet" href="${una}/${theme}/css/ionicons.css"> |
| 12 | + <link rel="stylesheet" href="${una}/${theme}/css/adminlte.css"> |
| 13 | + <link rel="stylesheet" href="${una}/${theme}/css/unaboot.css"> |
14 | 14 | </head> |
15 | 15 | <body> |
16 | 16 | <div class="sidebar animated fadeInDown"> |
17 | | - <div class="ribbon-wrapper ribbon-lg"> |
18 | | - <div class="ribbon bg-gray-dark" style="text-transform: none;"> |
19 | | - <a href="https://github.com/ramostear"> |
20 | | - <i class="fa fa-github"></i> Fork me |
21 | | - </a> |
22 | | - </div> |
23 | | - </div> |
24 | | - <div class="logo-title"> |
25 | | - <img src="img/logo.png" style="width: 127px;"> |
26 | | - <h3 class="mt-2">UnaBoot V1.2.0</h3> |
27 | | - <div class="description"> |
28 | | - <p>UnaBoot Default Theme</p> |
29 | | - </div> |
30 | | - </div> |
31 | | - <ul class="social-links"> |
32 | | - <li> |
33 | | - <a href="https://github.com/ramostear" target="_blank"> |
34 | | - <i class="fa fa-github fa-2x"></i> |
35 | | - </a> |
36 | | - </li> |
37 | | - <li> |
38 | | - <a href="https://gitee.com/ramostear" target="_blank"> |
39 | | - <i class="fa fa-git fa-2x"></i> |
40 | | - </a> |
41 | | - </li> |
42 | | - <li> |
43 | | - <a href="https://weibo.com/ramostear" target="_blank"> |
44 | | - <i class="fa fa-weibo fa-2x"></i> |
45 | | - </a> |
46 | | - </li> |
47 | | - </ul> |
48 | | - <div class="footer pt-2"> |
49 | | - <a href="#" target="_blank"> |
50 | | - <span>Powered By Ramostear</span> |
51 | | - </a> |
52 | | - <div class="by_farbox"> |
53 | | - <a href="#" target="">©2020-ramostear</a> |
54 | | - <a href="#" target="_blank">ICP备:2011201508号</a> |
55 | | - </div> |
56 | | - </div> |
| 17 | + <#include "./left.html"/> |
57 | 18 | </div> |
58 | 19 | <div class="main"> |
59 | 20 | <div class="page-top animated fadeInDown"> |
60 | | - <div class="nav"> |
61 | | - <li> |
62 | | - <a href="index.html" target="_blank" class="">Home</a> |
63 | | - </li> |
64 | | - <li> |
65 | | - <a href="archive.html" target="_blank" class="">Archive</a> |
66 | | - </li> |
67 | | - <li> |
68 | | - <a href="category.html" target="_blank" class="">Category</a> |
69 | | - </li> |
70 | | - <li> |
71 | | - <a href="tags.html" target="_blank" class="">Tags</a> |
72 | | - </li> |
73 | | - <li> |
74 | | - <a href="links.html" target="_blank" class="current">Links</a> |
75 | | - </li> |
76 | | - <li> |
77 | | - <a href="about.html" target="_blank" class="">About</a> |
78 | | - </li> |
79 | | - </div> |
| 21 | + <#include "./nav.html"/> |
80 | 22 | </div> |
81 | 23 | <div class="autopagerize_page_element"> |
82 | 24 | <div class="content"> |
83 | 25 | <div class="links animated fadeInDown"> |
84 | 26 | <h3>友情连接</h3> |
85 | | - <a href="#" class="btn btn-outline-primary m-2">许进沉思录</a> |
86 | | - <a href="#" class="btn btn-outline-primary m-2">树下魅狐</a> |
| 27 | + <@unaboot.links> |
| 28 | + <#if results?? && results?size gt 0> |
| 29 | + <#list results as link> |
| 30 | + <a href="${link.url}" class="btn btn-outline-primary m-2">${link.name}</a> |
| 31 | + </#list> |
| 32 | + </#if> |
| 33 | + </@unaboot.links> |
87 | 34 | </div> |
88 | 35 | </div> |
89 | 36 | </div> |
90 | 37 | </div> |
91 | | - <script src="js/jquery/jquery.min.js"></script> |
92 | | - <script src="js/bootstrap/js/bootstrap.bundle.min.js"></script> |
93 | | - <script src="js/adminlte.min.js"></script> |
| 38 | + <script src="${una}/${theme}/js/jquery/jquery.min.js"></script> |
| 39 | + <script src="${una}/${theme}/js/bootstrap/js/bootstrap.bundle.min.js"></script> |
| 40 | + <script src="${una}/${theme}/js/adminlte.min.js"></script> |
94 | 41 | <script type="text/javascript"> |
95 | 42 |
|
96 | 43 | </script> |
|
0 commit comments