We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90c948 commit 0663cb3Copy full SHA for 0663cb3
src/core/render/tpl.js
@@ -1,4 +1,3 @@
1
-import { isMobile } from '../util/env';
2
/**
3
* Render github corner
4
* @param {Object} data URL for the View Source on Github link
@@ -51,9 +50,8 @@ export function main(config) {
51
50
: '') +
52
'<div class="sidebar-nav"><!--sidebar--></div>' +
53
'</aside>';
54
-
55
return (
56
- (isMobile ? `${aside}<main>` : `<main>${aside}`) +
+ `<main>${aside}` +
57
'<section class="content">' +
58
'<article class="markdown-section" id="main"><!--main--></article>' +
59
'</section>' +
0 commit comments