-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.html
More file actions
31 lines (31 loc) · 1.59 KB
/
Copy pathfooter.html
File metadata and controls
31 lines (31 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="container">
<hr>
<div class="footer" id="footer">
<div class="slogan">{% if siteDes.length %}{{ siteDes }}{% else %}Let's tessellate.{% /if %}</div>
<div class="meta">
{% if ext_footer %}<p>{{ext_footer}}</p>{% /if %}
<p>「{{siteName}}」使用 <a href="https://zh.mweb.im/" target="_blank">MWeb</a> 和 <a href="https://github.com/Astrian/reflect-white-mweb-theme" target="_blank">Reflect White</a> 搭建。</p>
<p class='colorScheme'>色彩模式:<span id='colorSchemeLight' onclick="changeColorScheme('light');">明亮</span> · <span id='colorSchemeDark' onclick="changeColorScheme('dark')">黑暗</span> · <span id='colorSchemeSystem' onclick="changeColorScheme('system')">跟随系统</span></p>
</div>
</div>
<script>
let footer = new Vue({
el: '#footer',
data: {
message: 'hello'
},
delimiters: ['$[', ']']
})
</script>
</div>
</div>
</body>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
{% if ext_customstyle %}<style>{{ ext_customstyle }}</style>{% /if %}
<script>
changeColorScheme()
</script>
</html>