Skip to content

Commit d71a2b4

Browse files
committed
remove v-cloak from content div, because if there's no js in the users browser,
the content will never appear.
1 parent 2c3a6ee commit d71a2b4

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

layouts/_partials/meta.ejs

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
display: none !important;
88
}
99
</style>
10-
<!--<link rel="stylesheet" href="https://unpkg.com/[email protected]/styles/obsidian.css">-->
11-
<!--<link rel="stylesheet" href="https://unpkg.com/[email protected]/github-markdown.css">-->
10+
1211
<link rel="stylesheet" href="/styles.css">

layouts/default.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88

9-
<div id="app" v-cloak>
9+
<div id="app">
1010
<div class="font-sans leading-normal" :class="{'max-h-screen': modalVisible, 'overflow-hidden': modalVisible}">
1111
<!--<QuickStart />-->
1212
<%- include('_partials/header') %>

layouts/docs.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88

9-
<div id="app" v-cloak>
9+
<div id="app">
1010
<div class="font-sans leading-normal" :class="{'max-h-screen': modalVisible, 'overflow-hidden': modalVisible}">
1111
<!--<QuickStart />-->
1212
<%- include('_partials/header') %>

layouts/landing.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88

9-
<div id="app" v-cloak>
9+
<div id="app">
1010
<div class="font-sans leading-normal" :class="{'max-h-screen': modalVisible, 'overflow-hidden': modalVisible}">
1111
<!--<QuickStart />-->
1212
<%- include('_partials/header') %>

layouts/no_sidebar.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88

9-
<div id="app" v-cloak>
9+
<div id="app">
1010
<div class="font-sans leading-normal" :class="{'max-h-screen': modalVisible, 'overflow-hidden': modalVisible}">
1111
<!--<QuickStart />-->
1212
<%- include('_partials/header') %>

layouts/post.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</head>
77
<body>
88

9-
<div id="app" v-cloak>
9+
<div id="app">
1010
<div class="font-sans leading-normal" :class="{'max-h-screen': modalVisible, 'overflow-hidden': modalVisible}">
1111
<!--<QuickStart />-->
1212
<%- include('_partials/header') %>

0 commit comments

Comments
 (0)