forked from cxykevin/sacn_accout_system
49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
|
<html class="mdui-theme-auto">
|
||
|
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="https://learn.study-area.org.cn/theme/css/mdui.css">
|
||
|
<script src="https://learn.study-area.org.cn/theme/js/mdui.global.js" type="text/javascript"></script>
|
||
|
<link href="https://learn.study-area.org.cn/theme/css/icons.css" rel="stylesheet">
|
||
|
<title>StuyAreaCN Accout System</title>
|
||
|
<style>
|
||
|
* {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
|
||
|
|
||
|
<body style="margin:0;padding:0;">
|
||
|
<mdui-dialog id="dialog" open>
|
||
|
{{msg}}
|
||
|
</mdui-dialog>
|
||
|
<mdui-layout style="height: 100%">
|
||
|
<mdui-top-app-bar>
|
||
|
<mdui-top-app-bar-title>StudyAreaCN</mdui-top-app-bar-title>
|
||
|
</mdui-top-app-bar>
|
||
|
|
||
|
<mdui-navigation-drawer class="navi-drawer" id="toc-drawer">
|
||
|
<mdui-list>
|
||
|
<mdui-list-item end-icon="arrow_right" href="https://learn.study-area.org.cn"
|
||
|
rounded>开始学习</mdui-list-item>
|
||
|
<mdui-list-item end-icon="arrow_right" href="https://forum.study-area.org.cn"
|
||
|
rounded>讨论区</mdui-list-item>
|
||
|
<mdui-list-item end-icon="arrow_right"
|
||
|
href="https://git.hmtsai.cn/study-area-cn/study-area-cn-homepage/" rounded>查看本站源码</mdui-list-item>
|
||
|
</mdui-list>
|
||
|
</mdui-navigation-drawer>
|
||
|
|
||
|
<mdui-layout-main style="height: 100%">
|
||
|
</mdui-layout-main>
|
||
|
</mdui-layout>
|
||
|
<script>
|
||
|
if (window.innerWidth > 800) {
|
||
|
document.getElementById("cards").style.transform = "translateY(-50%)"
|
||
|
document.getElementById("toc-drawer").setAttribute('open', true);
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|