File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ const DocumentPage = {
3
3
<div class="document">
4
4
<markdown-reader :file="readUrl" :hash="hash"></markdown-reader>
5
5
6
- <div class="contribute small">
6
+ <footer class="contribute small">
7
7
{{$t("contribute")}} <a :href="editUrl">{{$t("edit")}}</a>
8
- </div >
8
+ </footer >
9
9
</div>
10
10
` ,
11
11
data : function ( ) {
Original file line number Diff line number Diff line change 1
1
const MainPage = {
2
2
template : `<div>
3
+ <header>
3
4
<nav class="navbar navbar-expand navbar-light">
4
5
<!--<img src="image/logo-large.png" width="10%" height="10%">-->
5
6
<a class="navbar-brand" href="/"><span class="brand-type">Type</span><span class="brand-orm">ORM</span></a>
@@ -70,8 +71,9 @@ const MainPage = {
70
71
</form>-->
71
72
</div>
72
73
</nav>
74
+ </header>
73
75
<div class="panels">
74
- <div class="left-panel">
76
+ <aside class="left-panel">
75
77
<ul>
76
78
<li v-for="link in links">
77
79
<div v-if="link.links">
@@ -92,10 +94,10 @@ const MainPage = {
92
94
</li>
93
95
</ul>
94
96
<div class="carbon-container" ref="carbon"></div>
95
- </div >
96
- <div class="right-panel">
97
+ </aside >
98
+ <main class="right-panel">
97
99
<router-view></router-view>
98
- </div >
100
+ </main >
99
101
</div>
100
102
</div>
101
103
` ,
Original file line number Diff line number Diff line change 1
1
const MarkdownReader = {
2
- template : `<div v-html="html"></div >` ,
2
+ template : `<section v-html="html"></section >` ,
3
3
props : [ "file" , "hash" ] ,
4
4
data : function ( ) {
5
5
return {
You can’t perform that action at this time.
0 commit comments